Skip to content

Commit 1e351e0

Browse files
committed
Oops
1 parent 528abe5 commit 1e351e0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/parallel_tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)