From 4a69fdee9facf18442c0c14a7264e6a10dd0e349 Mon Sep 17 00:00:00 2001 From: Vincent Rabaud Date: Sun, 7 Jan 2024 15:02:03 +0100 Subject: [PATCH] Use full path for fuzztest tests (#1910) Though it is not needed for local debugs, it seems needed for some dockers. --- tests/oss-fuzz/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/oss-fuzz/build.sh b/tests/oss-fuzz/build.sh index d18a9761d4..3369996f3c 100755 --- a/tests/oss-fuzz/build.sh +++ b/tests/oss-fuzz/build.sh @@ -88,7 +88,7 @@ then this_dir=\$(dirname \"\$0\") export TEST_DATA_DIRS=\$this_dir/corpus chmod +x \$this_dir/$fuzz_basename -$fuzz_basename --fuzz=$fuzz_entrypoint -- \$@" > $OUT/$TARGET_FUZZER +\$this_dir/$fuzz_basename --fuzz=$fuzz_entrypoint -- \$@" > $OUT/$TARGET_FUZZER chmod +x $OUT/$TARGET_FUZZER done done