summaryrefslogtreecommitdiffstatshomepage
path: root/src/regtests/jedutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/regtests/jedutil')
-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