]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
TEST-21-DFUZZER: Give higher priority
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 5 May 2024 11:29:54 +0000 (13:29 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 6 May 2024 08:56:55 +0000 (10:56 +0200)
This test takes a long time to run. Let's make sure it is started
first to avoid it being the only test running for a long time at the
end.

test/TEST-21-DFUZZER/meson.build
test/meson.build

index b6fc39eb5a2b0df6f451264903cba63b4d785468..03cae4f7daef5dd07f53c4d94ee781a3683a58af 100644 (file)
@@ -2,4 +2,5 @@
 
 test_params = test_params + {
         'timeout' : 3600,
+        'priority': -50,
 }
index 3bc321d0ec74d279529cc7bd24f2d69555b7162d..4854c3806f08baddf3302569aef457f8863d7bdf 100644 (file)
@@ -413,6 +413,7 @@ foreach test_number, dirname : integration_tests
                 'mkosi_args' : [],
                 'timeout' : 1800,
                 'storage' : 'volatile',
+                'priority' : 0,
         }
 
         # TODO: This fs.exists call isn't included in rebuild logic
@@ -445,5 +446,6 @@ foreach test_number, dirname : integration_tests
              env : integration_test_env,
              args : args,
              timeout : test_params['timeout'],
+             priority : test_params['priority'],
              suite : 'integration-tests')
 endforeach