]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
TEST-21-DFUZZER: Stop marking as slow
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Fri, 31 May 2024 15:15:47 +0000 (17:15 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Fri, 31 May 2024 15:26:13 +0000 (17:26 +0200)
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
test/meson.build

index 29c8e434cac1fca8587e743e339104f7eeadd81c..932f0c5f0e407b80fc071346400661d29f3fd2d0 100644 (file)
@@ -5,7 +5,6 @@ integration_tests += [
                 'name' : fs.name(meson.current_source_dir()),
                 'timeout' : 3600,
                 'priority' : 50,
-                'slow' : true,
                 'vm' : true,
         },
 ]
index 92edd079b44cbb0b438ccb773a1390d872690820..9da211fec1d83e75c76e5a264a2eaef23fb3c19f 100644 (file)
@@ -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