diff options
author | Jim Meyering <meyering@redhat.com> | 2011-05-22 17:09:04 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-05-22 17:10:31 +0200 |
commit | d61f5a1c1604543af68c934190a2c0d45fec6713 (patch) | |
tree | e4f563b5fc83b4dbed370ed67b52278127310661 /tests | |
parent | 12c5386a30abac2eb713cdaf7cf423e3ac33c68f (diff) | |
download | coreutils-d61f5a1c1604543af68c934190a2c0d45fec6713.tar.xz |
tests: fix typo in tac-continue
* tests/misc/tac-continue: Fix typo in usually-skipped test:
s/mkfifo_or_skip/mkfifo_or_skip_/ (i.e., append "_").
This test is usually skipped, because I'm probably the only
one to set the FULL_PARTITION_TMPDIR envvar, and recently the
one I'd been using ceased to exist, so this test was skipped
even for me. Good argument for making this a root-only test
and creating a full partition just for this test case.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/tac-continue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/tac-continue b/tests/misc/tac-continue index 5902805a4..2f6e81347 100755 --- a/tests/misc/tac-continue +++ b/tests/misc/tac-continue @@ -53,7 +53,7 @@ seq 5 > in # Give tac a fifo command line argument. # This makes it try to create a temporary file in $TMPDIR. -mkfifo_or_skip fifo +mkfifo_or_skip_ fifo seq 1000 > fifo & TMPDIR=$FULL_PARTITION_TMPDIR tac fifo in >out 2>err && fail=1 |