aboutsummaryrefslogtreecommitdiffstats
path: root/tests/charset/run-test.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xtests/charset/run-test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/charset/run-test.sh b/tests/charset/run-test.sh
index d7ad5295..95846c06 100755
--- a/tests/charset/run-test.sh
+++ b/tests/charset/run-test.sh
@@ -5,7 +5,7 @@ TEMP_DIR="/tmp"
PROGRAM="./main"
-testFiles=`cd $TEST_DIR ; find . -regex '\./[^\.]*\.in\..*' -maxdepth 1 -type f`
+testFiles=`cd $TEST_DIR ; find . -maxdepth 1 -regex '\./[^\.]*\.in\..*' -type f`
echo
echo Testing charset conversions
@@ -16,7 +16,7 @@ for testFile in $testFiles ; do
testName=`echo $testFile | sed 's/^\.\/\([^\.]*\).*/\1/'`
sourceCharset=`echo $testFile | sed 's/^\.\/[^\.]*\.[^\.]*\.\(.*\)/\1/'`
- testOutFiles=`cd $TEST_DIR ; find . -regex "\./$testName\.out\..*" -maxdepth 1 -type f`
+ testOutFiles=`cd $TEST_DIR ; find . -maxdepth 1 -regex "\./$testName\.out\..*" -type f`
for testOutFile in $testOutFiles ; do