From 605d72cb145ca792b1a78b5c554bc3922c5df0d5 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 31 May 2024 17:15:47 +0200 Subject: [PATCH] TEST-21-DFUZZER: Stop marking as slow This was a workaround to not run TEST-21-DFUZZER without sanitizers. Now that we're going to get sanitizer support, let's run it by default again. --- test/TEST-21-DFUZZER/meson.build | 1 - test/meson.build | 9 --------- 2 files changed, 10 deletions(-) diff --git a/test/TEST-21-DFUZZER/meson.build b/test/TEST-21-DFUZZER/meson.build index 29c8e434cac..932f0c5f0e4 100644 --- a/test/TEST-21-DFUZZER/meson.build +++ b/test/TEST-21-DFUZZER/meson.build @@ -5,7 +5,6 @@ integration_tests += [ 'name' : fs.name(meson.current_source_dir()), 'timeout' : 3600, 'priority' : 50, - 'slow' : true, 'vm' : true, }, ] diff --git a/test/meson.build b/test/meson.build index 92edd079b44..9da211fec1d 100644 --- a/test/meson.build +++ b/test/meson.build @@ -281,7 +281,6 @@ integration_test_template = { 'storage' : 'volatile', 'priority' : 0, 'firmware' : 'linux', - 'slow' : false, 'enabled' : true, 'configuration' : { 'memory-accounting' : 'no', @@ -404,10 +403,6 @@ foreach integration_test : integration_tests install_data(integration_test_unit, install_dir : testdata_dir / 'units') endif - if integration_test['slow'] - integration_test_args += ['--slow'] - endif - if integration_test['vm'] integration_test_args += ['--vm'] endif @@ -440,10 +435,6 @@ foreach integration_test : integration_tests integration_test_env += {'SYSTEMD_INTEGRATION_TESTS': '1'} endif - if want_slow_tests - integration_test_env += {'SYSTEMD_SLOW_TESTS': '1'} - endif - if not integration_test['enabled'] continue endif -- 2.47.3