summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-03-24 18:45:56 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-03-24 18:45:56 +0000
commitd8efaa9589b37a93eec9ecbcf7e1f2a3babe59c4 (patch)
treefd4e463f2b00c25b82311104a7d003f79dbeb54f /lib/sbin
parentd722e84b846e448a98a07707ecb8d4691d45cecf (diff)
Fix parsing of testsuite output filename extenstions in multiple test.ccl files.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4273 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin')
-rw-r--r--lib/sbin/RunTestUtils.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/RunTestUtils.pl b/lib/sbin/RunTestUtils.pl
index f6b48e54..c236c721 100644
--- a/lib/sbin/RunTestUtils.pl
+++ b/lib/sbin/RunTestUtils.pl
@@ -189,7 +189,7 @@ sub ParseTestConfigs
}
elsif ($line =~ m/^\s*EXTENSIONS\s*(.*)/i)
{
- $testdata->{"EXTENSIONS"} .= $1;
+ $testdata->{"EXTENSIONS"} .= "$1 ";
}
elsif ($line =~ m/^\s*TEST\s*(.*)/i)
{