Skip to content

Commit

Permalink
fix ci: linux ci doesn't have dos2unix (#1352)
Browse files Browse the repository at this point in the history
* fix ci: linux ci doesn't have dos2unix

* remove dupe
  • Loading branch information
darioush authored Sep 27, 2024
1 parent 365bc3a commit 50638f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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 - <(dos2unix < ./scripts/known_flakes.txt)
sort -u | comm -23 - <(sed 's/\r$//' ./scripts/known_flakes.txt)
)
if [ -n "${unexpected_failures}" ]; then
echo "Unexpected test failures: ${unexpected_failures}"
Expand Down
1 change: 0 additions & 1 deletion scripts/known_flakes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ TestResyncNewRootAfterDeletes
TestTransactionSkipIndexing
TestVMShutdownWhileSyncing
TestWalletNotifications
TestWalletNotifications
TestWebsocketLargeRead

0 comments on commit 50638f2

Please sign in to comment.