Skip to content

Commit

Permalink
test: fix tests on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed Jun 8, 2024
1 parent eed776d commit b84beb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tools/ls/escape.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ printf "dir\x1b d 777 0 0\n" > "$PWD/escape.pseudo";
$MKSQUASHFS "$PWD/empty" "$PWD/escape.squashfs" -pf "$PWD/escape.pseudo" \
$MKSQUASHFS_OPTS
result=$($SQSH_LS -r --escape "$PWD/escape.squashfs")
[ "$result" = "/dir\e" ]
[ "$result" = "$(printf "%s" "/dir\e")" ]

result=$($SQSH_LS -r --raw "$PWD/escape.squashfs")
[ "$result" = "$(printf "/dir\e")" ]

0 comments on commit b84beb5

Please sign in to comment.