Skip to content

Commit

Permalink
tests: assert log statement of exit status (#303)
Browse files Browse the repository at this point in the history
- Ensures there were no errors between the resumption and launching the executable within the Steam Linux Runtime.
  • Loading branch information
R1kaB3rN authored Dec 8, 2024
1 parent 2d70f38 commit b0c0d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_proton_resume.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ curl -LJO --range 0-104857599 "$url"
mkdir -p "$HOME"/.cache/umu
mv "$name" "$HOME"/.cache/umu/"$name".parts
UMU_LOG=debug GAMEID=umu-0 "$HOME/.local/bin/umu-run" wineboot -u 2> "$tmp"
grep "resuming" "$tmp"
grep "resuming" "$tmp" && grep "exited with wait status" "$tmp"
2 changes: 1 addition & 1 deletion tests/test_resume.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ mkdir -p "$HOME"/.cache/umu
# Note: Must include the *.parts extension
mv SteamLinuxRuntime_sniper.tar.xz "$HOME"/.cache/umu/SteamLinuxRuntime_sniper.tar.xz."$id".parts
UMU_LOG=debug GAMEID=umu-0 "$HOME/.local/bin/umu-run" wineboot -u 2> "$tmp"
grep "resuming" "$tmp"
grep "resuming" "$tmp" && grep "exited with wait status" "$tmp"

0 comments on commit b0c0d44

Please sign in to comment.