conform: Move timeline-base under conditional check

The timeline base test unit is pretty slow, and under heavy load it will
tend to fail because of skipped frames. We should put it under
conditional testing and only run it if `-m slow` is passed to the test
harness.
This commit is contained in:
Emmanuele Bassi 2013-07-02 22:04:37 +01:00
parent f1971844b9
commit 4787ae2f63

View File

@ -231,7 +231,7 @@ main (int argc, char **argv)
TEST_CONFORM_SIMPLE ("/script", state_base); TEST_CONFORM_SIMPLE ("/script", state_base);
TEST_CONFORM_SIMPLE ("/script", script_margin); TEST_CONFORM_SIMPLE ("/script", script_margin);
TEST_CONFORM_SIMPLE ("/timeline", timeline_base); TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_base);
TEST_CONFORM_SIMPLE ("/timeline", timeline_markers_from_script); TEST_CONFORM_SIMPLE ("/timeline", timeline_markers_from_script);
TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_interpolation); TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_interpolation);
TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_rewind); TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_rewind);