trunk/src/regtests/jedutil/jedtest.py
| r18904 | r18905 | |
| 41 | 41 | subpathName = path[len(jedPath):].strip(os.sep) |
| 42 | 42 | |
| 43 | 43 | test = JedTest() |
| 44 | | test.name = palName |
| 44 | test.name = subpathName |
| 45 | 45 | test.jedFile = jedPathFull |
| 46 | | test.baselineFile = os.path.join(baselinePath, subpathName, test.name+".txt") |
| 47 | | test.outputFile = os.path.join(outputPath, subpathName, test.name+".txt") |
| 46 | test.baselineFile = os.path.join(baselinePath, subpathName, palName+".txt") |
| 47 | test.outputFile = os.path.join(outputPath, subpathName, palName+".txt") |
| 48 | 48 | jedTestList.append(test) |
| 49 | 49 | |
| 50 | 50 | return jedTestList |