From 4787ae2f638bc35c48caec2515427cf85aed25e2 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 2 Jul 2013 22:04:37 +0100 Subject: [PATCH] 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. --- tests/conform/test-conform-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conform/test-conform-main.c b/tests/conform/test-conform-main.c index 387c28a79..8cd5a34fe 100644 --- a/tests/conform/test-conform-main.c +++ b/tests/conform/test-conform-main.c @@ -231,7 +231,7 @@ main (int argc, char **argv) TEST_CONFORM_SIMPLE ("/script", state_base); 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_SKIP (g_test_slow (), "/timeline", timeline_interpolation); TEST_CONFORM_SKIP (g_test_slow (), "/timeline", timeline_rewind);