diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-05-08 09:41:38 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-05-08 09:32:45 +0200 |
commit | fa27d6d3ac065684a1219e9a948514d27929cf7c (patch) | |
tree | 0c1960f8bd27875e5033a1b46f0bad543c25fd07 /src/Makefile.test.include | |
parent | 9313c4e6aa4b707c06a86b33d5d2753cd8383340 (diff) |
fuzz: Remove unused --enable-danger-fuzz-link-all option
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 9360aa05f1..d55f5e1850 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -350,11 +350,6 @@ if EMBEDDED_UNIVALUE $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check endif -if ENABLE_FUZZ_LINK_ALL -all-local: $(FUZZ_BINARY) - bash ./test/fuzz/danger_link_all.sh -endif - %.cpp.test: %.cpp @echo Running tests: `cat $< | grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1` from $< $(AM_V_at)$(TEST_BINARY) --catch_system_errors=no -l test_suite -t "`cat $< | grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1`" -- DEBUG_LOG_OUT > $<.log 2>&1 || (cat $<.log && false) |