File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 run : |
4444 tests=("command-line-options" "data-rep" "i18n_sjis" "jp-compat" "run" "syntax" "cobj-idx" "file-lock" "file-lock2" "misc")
4545 for test in "${tests[@]}"; do
46- ./"$test" -j || true
46+ if [ "$test" = "file-lock" ] || [ "$test" = "file-lock2" ] || [ "$test" = "cobj-idx" ]; then
47+ ./"$test" || true
48+ else
49+ ./"$test" -j || true
50+ fi
4751 done
4852
4953 - name : Generate a coverage report
Original file line number Diff line number Diff line change 7575
7676 - name : Run tests ${{ inputs.test-name }}
7777 working-directory : tests/
78- run :
79- ./${{ inputs.test-name }} -j
78+ run : |
79+ if [ "${{ inputs.test-name }}" = "file-lock" ] || [ "${{ inputs.test-name }}" = "file-lock2" ] || [ "${{ inputs.test-name }}" = "cobj-idx" ]; then
80+ ./${{ inputs.test-name }}
81+ else
82+ ./${{ inputs.test-name }} -j
83+ fi
8084
8185 - name : Upload log files if tests fail
8286 if : failure()
You can’t perform that action at this time.
0 commit comments