summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 7557a124e26..04107e5a9a3 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3796,6 +3796,7 @@ if get_option('ninja') == 'true':
}
env.NinjaRegisterFunctionHandler("unit_test_list_builder_action", skip)
+ env.NinjaRegisterFunctionHandler("libfuzzer_test_list_builder_action", skip)
env.NinjaRegisterFunctionHandler("integration_test_list_builder_action", skip)
env.NinjaRegisterFunctionHandler("benchmark_list_builder_action", skip)
@@ -4334,7 +4335,7 @@ env.SConscript(
)
-allTargets = ['core', 'tools', 'unittests', 'integration_tests', 'benchmarks']
+allTargets = ['core', 'tools', 'unittests', 'integration_tests', 'libfuzzer_tests', 'benchmarks']
if not has_option('noshell') and usemozjs:
allTargets.extend(['dbtest'])