diff --git a/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_linux.sh b/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_linux.sh index 5635097a37a0104889b31d47754768126047dc26..dbc15de265ad38007c583046f029e7e1f020a209 100644 --- a/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_linux.sh +++ b/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_linux.sh @@ -55,7 +55,7 @@ echo -n hello3 > /tmp/asapo/test_in/test2/file2 $2 ${proxy_address} ${receiver_folder} ${beamtime_id} 2 $token 1000 0 > out.txt cat out.txt grep "Processed 3 file(s)" out.txt -grep "Received: hello1" out.txt -grep "Received: hello2" out.txt -grep "Received: hello3" out.txt +grep "hello1" out.txt +grep "hello2" out.txt +grep "hello3" out.txt diff --git a/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_windows.bat b/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_windows.bat index 96baf4c0dd41bbddd19878a3e816d08204c0669a..b7ba5985e8101f4e3b8c02a99bae7f1d316090a7 100644 --- a/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_windows.bat +++ b/tests/automatic/full_chain/simple_chain_filegen_readdata_file/check_windows.bat @@ -43,9 +43,9 @@ REM worker "%2" %proxy_address% %receiver_folder% %beamtime_id% 2 %token% 1000 0 > out.txt type out.txt findstr /i /l /c:"Processed 3 file(s)" out.txt || goto :error -findstr /i /l /c:"Received: hello1" out.txt || goto :error -findstr /i /l /c:"Received: hello2" out.txt || goto :error -findstr /i /l /c:"Received: hello3" out.txt || goto :error +findstr /i /l /c:"hello1" out.txt || goto :error +findstr /i /l /c:"hello2" out.txt || goto :error +findstr /i /l /c:"hello3" out.txt || goto :error goto :clean