From 4e9ab7d3d87c24ff0671fc7c3be8c0a0873009ab Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 2 Feb 2011 12:02:22 +0100 Subject: tests: correct part of fiemap-perf * tests/cp/fiemap-perf: Correct erroneous added test. Since nonexistent names were used, the final test ended up being "test =", which would always "succeed". --- tests/cp/fiemap-perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/cp/fiemap-perf b/tests/cp/fiemap-perf index 62272439b..7369a7d1b 100755 --- a/tests/cp/fiemap-perf +++ b/tests/cp/fiemap-perf @@ -31,6 +31,6 @@ timeout 10 cp f f2 || fail=1 # Ensure that the sparse file copied through fiemap has the same size # in bytes as the original. -test $(stat --printf %s sparse) = $(stat --printf %s fiemap) || fail=1 +test "$(stat --printf %s f)" = "$(stat --printf %s f2)" || fail=1 Exit $fail -- cgit v1.2.3-54-g00ecf