mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Looking for errors in dig output files must not fail
If no errors in dig output files of failed tests are found, TSAN file parsing won't occur.
This commit is contained in:
parent
3f91819bd2
commit
28a0df3081
1 changed files with 2 additions and 2 deletions
|
|
@ -321,7 +321,7 @@ stages:
|
|||
- REALSOURCEDIR="$PWD"
|
||||
- test -n "${OUT_OF_TREE_WORKSPACE}" && cd "${OUT_OF_TREE_WORKSPACE}"
|
||||
- cat bin/tests/system/test-suite.log
|
||||
- find bin/tests/system -name "*dig.*" | xargs grep "error"
|
||||
- find bin/tests/system -name "*dig.*" | xargs grep "error" || true
|
||||
- *find_python
|
||||
- >
|
||||
"$PYTHON" "$REALSOURCEDIR"/bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
|
||||
|
|
@ -344,7 +344,7 @@ stages:
|
|||
<<: *system_test_common
|
||||
after_script:
|
||||
- cat bin/tests/system/test-suite.log
|
||||
- find bin/tests/system -name "*dig.*" | xargs grep "error"
|
||||
- find bin/tests/system -name "*dig.*" | xargs grep "error" || true
|
||||
- *find_python
|
||||
- *parse_tsan
|
||||
- >
|
||||
|
|
|
|||
Loading…
Reference in a new issue