@@ -103,18 +103,18 @@ jobs:
103103 - name : Run Taint Tests
104104 if : matrix.test_type == 'taint'
105105 run : >-
106- docker run --name panda_test_${{ matrix.target }}_${GITHUB_RUN_ID} \
107- --mount type=bind,source=$HOME/.panda,target=$HOME/.panda \
108- --rm -t "ghcr.io/${{ github.repository_owner }}/panda_local:${{ github.sha }}" bash -c \
109- "cd /tmp; git clone https://github.com/panda-re/panda_test; \
110- cd ./panda_test/tests/taint2; \
111- echo 'Running Record:'; \
112- python3 taint2_multi_arch_record_or_replay.py --arch ${{ matrix.target }} --mode record; \
113- echo 'Running Replay:'; \
114- python3 taint2_multi_arch_record_or_replay.py --arch ${{ matrix.target }} --mode replay; \
115- sed -i '/^\s*$/d' taint2_log; \
116- if cat taint2_log; then echo 'Taint unit test log found!'; else echo 'Taint unit test log NOT found!' && exit 1; fi; \
117- echo -e '\nFailures:'; \
106+ docker run --name panda_test_${{ matrix.target }}_${GITHUB_RUN_ID}
107+ --mount type=bind,source=$HOME/.panda,target=$HOME/.panda
108+ --rm -t "ghcr.io/${{ github.repository_owner }}/panda_local:${{ github.sha }}" bash -c
109+ "cd /tmp; git clone https://github.com/panda-re/panda_test;
110+ cd ./panda_test/tests/taint2;
111+ echo 'Running Record:';
112+ python3 taint2_multi_arch_record_or_replay.py --arch ${{ matrix.target }} --mode record;
113+ echo 'Running Replay:';
114+ python3 taint2_multi_arch_record_or_replay.py --arch ${{ matrix.target }} --mode replay;
115+ sed -i '/^\s*$/d' taint2_log;
116+ if cat taint2_log; then echo 'Taint unit test log found!'; else echo 'Taint unit test log NOT found!' && exit 1; fi;
117+ echo -e '\nFailures:';
118118 if grep 'fail' taint2_log; then echo 'TEST FAILED!' && exit 1; else echo -e 'None.\nTEST PASSED!' && exit 0; fi"
119119
120120 - name : Run PyPanda Tests
0 commit comments