From 4efb23de917e4de1cb7999beef9c77c11cc1e325 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 2 Jan 2019 17:48:35 +0000 Subject: [PATCH] Rename the 'testdata' subdirectory to 'test'. I'm about to start putting programs in it too, so it would be a misnomer left like that. --- mksrcarc.sh | 4 ++-- {testdata => test}/colours.txt | 0 {testdata => test}/display.txt | 0 {testdata => test}/lattrs.txt | 0 {testdata => test}/scocols.txt | 0 {testdata => test}/utf8.txt | 0 {testdata => test}/vt100.txt | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {testdata => test}/colours.txt (100%) rename {testdata => test}/display.txt (100%) rename {testdata => test}/lattrs.txt (100%) rename {testdata => test}/scocols.txt (100%) rename {testdata => test}/utf8.txt (100%) rename {testdata => test}/vt100.txt (100%) diff --git a/mksrcarc.sh b/mksrcarc.sh index a8b01b5b..75d0b8db 100755 --- a/mksrcarc.sh +++ b/mksrcarc.sh @@ -13,12 +13,12 @@ text=`{ find . -name CVS -prune -o \ -name '*.dsp' -prune -o \ -name '*.dsw' -prune -o \ -type f -print | sed 's/^\.\///'; } | \ - grep -ivE 'testdata/.*\.txt|MODULE|putty.iss|website.url' | grep -vF .ico | grep -vF .icns` + grep -ivE 'test/.*\.txt|MODULE|putty.iss|website.url' | grep -vF .ico | grep -vF .icns` # These are files which I'm _sure_ should be treated as text, but # which zip might complain about, so we direct its moans to # /dev/null! Apparently its heuristics are doubtful of UTF-8 text # files. -bintext=testdata/*.txt +bintext=test/*.txt # These are actual binary files which we don't want transforming. bin=`{ ls -1 windows/*.ico windows/putty.iss windows/website.url; \ find . -name '*.dsp' -print -o -name '*.dsw' -print; }` diff --git a/testdata/colours.txt b/test/colours.txt similarity index 100% rename from testdata/colours.txt rename to test/colours.txt diff --git a/testdata/display.txt b/test/display.txt similarity index 100% rename from testdata/display.txt rename to test/display.txt diff --git a/testdata/lattrs.txt b/test/lattrs.txt similarity index 100% rename from testdata/lattrs.txt rename to test/lattrs.txt diff --git a/testdata/scocols.txt b/test/scocols.txt similarity index 100% rename from testdata/scocols.txt rename to test/scocols.txt diff --git a/testdata/utf8.txt b/test/utf8.txt similarity index 100% rename from testdata/utf8.txt rename to test/utf8.txt diff --git a/testdata/vt100.txt b/test/vt100.txt similarity index 100% rename from testdata/vt100.txt rename to test/vt100.txt