diff options
author | Jim Meyering <jim@meyering.net> | 2007-03-02 13:18:43 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-03-02 13:18:43 +0100 |
commit | 13a4b23e792777a9aa0c19bf120c9aa85a6b0f13 (patch) | |
tree | 76e88e76b09f57446b8edaf183316e8a3b7b719c /tests | |
parent | b655a2154e96e3d62210e4f5e1b51a668da63091 (diff) | |
download | coreutils-13a4b23e792777a9aa0c19bf120c9aa85a6b0f13.tar.xz |
* tests/misc/pwd-long: Also allow "+" in $PWD.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/pwd-long | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/pwd-long b/tests/misc/pwd-long index 1306b327a..6fc83e258 100755 --- a/tests/misc/pwd-long +++ b/tests/misc/pwd-long @@ -97,7 +97,7 @@ until (++$i == $n); my $build_src_dir = $ENV{BUILD_SRC_DIR}; $build_src_dir or die "$ME: envvar BUILD_SRC_DIR not defined\n"; -if ($build_src_dir !~ m!^([-.:/\w]+)$!) +if ($build_src_dir !~ m!^([-+.:/\w]+)$!) { warn "$0: skipping this test; odd build source directory name:\n" . "$build_src_dir\n"; |