[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] tests: other-fs-tmpdir: avoid bogus "skipped **********..."
From: |
Jim Meyering |
Subject: |
Re: [PATCH] tests: other-fs-tmpdir: avoid bogus "skipped **********..." diagnostic |
Date: |
Sun, 29 Mar 2009 19:47:54 +0200 |
Jim Meyering wrote:
> Building on a system with /tmp, /var/tmp, $HOME, etc all on the same
> partition, I saw a bunch of bogus diagnostics from "make check":
...
> - || CANDIDATE_TMP_DIRS="$TMPDIR /tmp /var/tmp /usr/tmp $HOME"
> + || CANDIDATE_TMP_DIRS="$TMPDIR /tmp /dev/shm /var/tmp /usr/tmp /usr/tmp
> $HOME"
The above change added a duplicate /usr/tmp.
Ugly, but otherwise harmless.
This fixes it:
>From 6fa5f1210799050d7502b08aa5029c7835e09ed1 Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Sun, 29 Mar 2009 19:42:34 +0200
Subject: [PATCH] tests: other-fs-tmpdir: remove just-added duplicate /usr/tmp
* tests/other-fs-tmpdir (CANDIDATE_TMP_DIRS): Remove 2nd /usr/tmp.
---
tests/other-fs-tmpdir | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tests/other-fs-tmpdir b/tests/other-fs-tmpdir
index 8850857..4340ac5 100644
--- a/tests/other-fs-tmpdir
+++ b/tests/other-fs-tmpdir
@@ -21,7 +21,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
test "${CANDIDATE_TMP_DIRS+set}" = set \
- || CANDIDATE_TMP_DIRS="$TMPDIR /tmp /dev/shm /var/tmp /usr/tmp /usr/tmp
$HOME"
+ || CANDIDATE_TMP_DIRS="$TMPDIR /tmp /dev/shm /var/tmp /usr/tmp $HOME"
other_partition_tmpdir=
--
1.6.2.rc1.285.gc5f54