Skip to content

Commit

Permalink
windows ci: remove cr before comparing to known_flakes.txt (#1319)
Browse files Browse the repository at this point in the history
* windows ci: remove cr before comparing to known_flakes.txt

* try

* try

* try
  • Loading branch information
darioush committed Sep 23, 2024
1 parent 7aef2f9 commit 365bc3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ do
unexpected_failures=$(
# First grep pattern corresponds to test failures, second pattern corresponds to test panics due to timeouts
(grep "^--- FAIL" test.out | awk '{print $3}' || grep -E '^\s+Test.+ \(' test.out | awk '{print $1}') |
sort -u | comm -23 - ./scripts/known_flakes.txt
sort -u | comm -23 - <(dos2unix < ./scripts/known_flakes.txt)
)
if [ -n "${unexpected_failures}" ]; then
echo "Unexpected test failures: ${unexpected_failures}"
Expand Down

0 comments on commit 365bc3a

Please sign in to comment.