diff options
author | Jim Meyering <meyering@redhat.com> | 2011-06-14 16:22:41 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-06-17 09:17:37 +0200 |
commit | 2e580ca741b83202e6b22e0bb58b18101a443bd8 (patch) | |
tree | 790f68faa9a1d05898f71be8bdeee1b574ec2bb2 /tests/cp/fiemap-perf | |
parent | 13672ec3211a5a77caf16dc24b83100d57e2a2ec (diff) | |
download | coreutils-2e580ca741b83202e6b22e0bb58b18101a443bd8.tar.xz |
tests: remove skip_test_ function; use new skip_ instead
* tests/init.cfg (skip_test_): Remove function.
Use skip_ in place of skip_test_ everywhere else.
* cfg.mk (sc_prohibit_skip_): Remove rule.
* tests/**: Use skip_, not skip_test_, everywhere.
Diffstat (limited to 'tests/cp/fiemap-perf')
-rwxr-xr-x | tests/cp/fiemap-perf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cp/fiemap-perf b/tests/cp/fiemap-perf index 2c56fc81e..b17360e68 100755 --- a/tests/cp/fiemap-perf +++ b/tests/cp/fiemap-perf @@ -22,21 +22,21 @@ print_ver_ cp # Require a fiemap-enabled FS. touch fiemap_chk fiemap_capable_ fiemap_chk || - skip_test_ "this file system lacks FIEMAP support" + skip_ "this file system lacks FIEMAP support" # Exclude ext3 (or unknown fs types) # as the emulated extent scanning is slow df -t ext3 . >/dev/null && - skip_test_ "ext3 has known slow FIEMAP scanning" + skip_ "ext3 has known slow FIEMAP scanning" # Create a large-but-sparse file. timeout 10 truncate -s1T f || framework_failure_ # Disable this test on old BTRFS (e.g. Fedora 14) # which reports (unwritten) extents for holes. -filefrag f || skip_test_ 'the `filefrag` utility is missing' +filefrag f || skip_ 'the `filefrag` utility is missing' filefrag f | grep -F ': 0 extents found' > /dev/null || - skip_test_ 'this file system reports extents for holes' + skip_ 'this file system reports extents for holes' # Nothing can read (much less write) that many bytes in so little time. timeout 10 cp f f2 || fail=1 |