Skip to content

Commit

Permalink
tests: fix e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Dec 25, 2024
1 parent f858f82 commit b833e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_flock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ wait
grep "exited with wait status" "$tmp1"

# Ensure the 2nd proc didn't download the runtime
if ! grep "\(latest\), please wait..." "$tmp2"; then
if ! grep -E "\(latest\), please wait..." "$tmp2"; then
exit 1
fi

# Ensure the 2nd proc didn't download Proton
grep "Downloading" "$tmp2"
if ! grep "exited with wait status" "$tmp2"; then
if ! grep -E "exited with wait status" "$tmp2"; then
exit 1
fi

0 comments on commit b833e68

Please sign in to comment.