aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Dekker <martijn@inlv.org>2020-01-10 11:13:26 +0100
committerArnold Robbins <arnold@skeeve.com>2020-01-10 12:13:26 +0200
commit2976507cc10587a8d6d540c099b1d481547d7807 (patch)
treebb21f3e34a2910b3aefeb23cd939e8f500c2d619
parent944989bf683d30f306d8f29a3eb8c68c7c603fb4 (diff)
downloadone-true-awk-2976507cc10587a8d6d540c099b1d481547d7807.tar.gz
rename T.concat to T.csconcat to avoid case-insensitive conflict (#64)
On case-insensitive file systems (i.e.: macOS), T.concat and t.concat are the same file, so these conflicted. This commit renames T.concat to avoid the conflict.
-rwxr-xr-xtestdir/T.csconcat (renamed from testdir/T.concat)4
1 files changed, 2 insertions, 2 deletions
diff --git a/testdir/T.concat b/testdir/T.csconcat
index c6bd016..5199600 100755
--- a/testdir/T.concat
+++ b/testdir/T.csconcat
@@ -1,4 +1,4 @@
-echo T.concat: test constant string concatentation
+echo T.csconcat: test constant string concatentation
awk=${awk-../a.out}
@@ -26,4 +26,4 @@ hello world
hello world
EOF
-diff foo1 foo2 || echo 'BAD: T.concat (1)'
+diff foo1 foo2 || echo 'BAD: T.csconcat (1)'