mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 690060 - Make runreftests.py append "crashtest.list" to the test path when only a crashtest directory is specified; r=ted
This commit is contained in:
parent
024d135d42
commit
db90e13744
@ -68,6 +68,10 @@ class RefTest(object):
|
||||
defaultManifestPath = os.path.join(path, 'reftest.list')
|
||||
if os.path.exists(defaultManifestPath):
|
||||
path = defaultManifestPath
|
||||
else:
|
||||
defaultManifestPath = os.path.join(path, 'crashtests.list')
|
||||
if os.path.exists(defaultManifestPath):
|
||||
path = defaultManifestPath
|
||||
return path
|
||||
|
||||
def createReftestProfile(self, options, profileDir, server='localhost'):
|
||||
|
Loading…
Reference in New Issue
Block a user