summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-11-08 08:37:12 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-11-08 08:37:12 +0000
commit0b83cd99a169d012c7b3941db7795a0f8a386105 (patch)
tree65f87e38a00933042daeb8a19926e794d30b2c45
parent5833836d5068cc31366abe8ef50d7b2796c2b01d (diff)
Fix regtest, now all is executed fine (no whatsnew)
-rw-r--r--src/regtests/jedutil/jedtest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regtests/jedutil/jedtest.py b/src/regtests/jedutil/jedtest.py
index de9e0b53de2..1db9e4117c8 100644
--- a/src/regtests/jedutil/jedtest.py
+++ b/src/regtests/jedutil/jedtest.py
@@ -41,10 +41,10 @@ def findJedTests(jedPath, baselinePath, outputPath):
subpathName = path[len(jedPath):].strip(os.sep)
test = JedTest()
- test.name = palName
+ test.name = subpathName
test.jedFile = jedPathFull
- test.baselineFile = os.path.join(baselinePath, subpathName, test.name+".txt")
- test.outputFile = os.path.join(outputPath, subpathName, test.name+".txt")
+ test.baselineFile = os.path.join(baselinePath, subpathName, palName+".txt")
+ test.outputFile = os.path.join(outputPath, subpathName, palName+".txt")
jedTestList.append(test)
return jedTestList