commit: 591375aea12d93ec70b33a09bbc2f3c00fc71cd5
parent 57f8ff618f6c3d40d18daed16da4e739c3214661
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Fri, 22 Apr 2022 09:22:52 +0200
test-bin/link: Portability fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test-bin/link b/test-bin/link
@@ -9,10 +9,10 @@ basic_body() {
touch foo
atf_check ../bin/link foo bar
- atf_check -o "inline:0 foo\n0 bar\n0 total\n" wc -c foo bar
+ atf_check cmp foo bar
echo hello >> foo
- atf_check -o "inline: 6 foo\n 6 bar\n12 total\n" wc -c foo bar
+ atf_check cmp foo bar
}
basic_cleanup() {
atf_check rm -f foo bar