From dbbe61307a878ac096d06ba16fd29ba6a4c59600 Mon Sep 17 00:00:00 2001 From: Valina Li Date: Wed, 16 Aug 2023 09:34:22 -0700 Subject: [PATCH] fix: report FuzzLean result to fuzz_results folder the FuzzLean test result is inside the FuzzLean folder and that needs to be copied into fuzz_results Closes: #4636 Signed-off-by: Valina Li --- fuzz_test/fuzzing_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz_test/fuzzing_docker.sh b/fuzz_test/fuzzing_docker.sh index 38a9624b45..fcd4c0bedd 100755 --- a/fuzz_test/fuzzing_docker.sh +++ b/fuzz_test/fuzzing_docker.sh @@ -44,7 +44,7 @@ runFuzzLeanPerSwagger() { echo "--copy result logs into $1" mkdir -p /fuzz_results/"$1" - cp -r ./Test/ /fuzz_results/"$1"/ + cp -r ./FuzzLean/ /fuzz_results/"$1"/ } if [ "$EDGEX_PROJECT_NAME" == "" ]