summaryrefslogtreecommitdiff
path: root/tests/misc/chroot-fail
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2009-10-26 06:05:44 -0600
committerEric Blake <ebb9@byu.net>2009-10-26 06:05:44 -0600
commitdae24f5ffc4846ce5178b3f765aec9074ce73b08 (patch)
tree34915049bc54fc0f077e8388224d3bee5e250861 /tests/misc/chroot-fail
parentc695781753fdb3eceb78afdd947b86501209b2f2 (diff)
downloadcoreutils-dae24f5ffc4846ce5178b3f765aec9074ce73b08.tar.xz
tests: avoid file name not portable to cygwin
* tests/misc/chroot-fail: Use 'no_such', not '...', since cygwin 1.5 silently strips trailing dots. * tests/misc/nice-fail: Likewise. * tests/misc/stdbuf: Likewise. * tests/misc/timeout-parameters: Likewise.
Diffstat (limited to 'tests/misc/chroot-fail')
-rwxr-xr-xtests/misc/chroot-fail2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/chroot-fail b/tests/misc/chroot-fail
index 5b5829321..877ad0aec 100755
--- a/tests/misc/chroot-fail
+++ b/tests/misc/chroot-fail
@@ -41,7 +41,7 @@ if chroot / true ; then
test $? = 2 || fail=1
chroot / . # invalid command
test $? = 126 || fail=1
- chroot / ... # no such command
+ chroot / no_such # no such command
test $? = 127 || fail=1
else
test $? = 125 || fail=1