summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer Jackson <spencer.jackson@mongodb.com>2020-01-03 18:37:58 +0000
committerevergreen <evergreen@mongodb.com>2020-01-03 18:37:58 +0000
commite29effed433c6cec9b18a6bb8276b751eb47b72d (patch)
treeda5f076190d31e061a1d9b5e717905351f8dbfc6
parent6b3ae18c152c09d4ec836326946b738cd631aa4a (diff)
downloadmongo-e29effed433c6cec9b18a6bb8276b751eb47b72d.tar.gz
SERVER-45306 Ensure ninja integration can produce libfuzzer artifacts
-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'])