From 2d152ce12fbc3221735b353edcd55287393b9027 Mon Sep 17 00:00:00 2001 From: ialbert Date: Mon, 2 Dec 2024 14:59:46 +0300 Subject: [PATCH] testing --- clr_test/clearing-all/launch_and_test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clr_test/clearing-all/launch_and_test.sh b/clr_test/clearing-all/launch_and_test.sh index 55e344eb0..3fbac463a 100644 --- a/clr_test/clearing-all/launch_and_test.sh +++ b/clr_test/clearing-all/launch_and_test.sh @@ -19,7 +19,11 @@ sh ./clearing_testing_utils/clearing-tester/clearing-tester.sh if [ -n "$CLR_TEST_NAME" ] && [ -d "./bin/log" ]; then echo "Copying logs to ./bin/log/${CLR_TEST_NAME}" mkdir -p "./bin/log/${CLR_TEST_NAME}" - rsync -av --exclude="${CLR_TEST_NAME}" "./bin/log/" "./bin/log/${CLR_TEST_NAME}/" + # Copy all contents from ./bin/log to tmp dir + mkdir -p "./bin/log_artifact" + cp -a ./bin/log/. "./bin/log_artifact/" + # Move the copied logs into the desired location + mv "./bin/log_artifact" "./bin/log/${CLR_TEST_NAME}" else echo "CLR_TEST_NAME is not set or ./bin/log does not exist. Skipping log copy." fi