mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
fix bug in testing multiple browsers
This commit is contained in:
parent
35b6569f5e
commit
0d4be031b9
1 changed files with 3 additions and 3 deletions
6
test.py
6
test.py
|
@ -117,8 +117,8 @@ def setUp(manifestFile, masterMode):
|
|||
assert not os.path.isdir(TMPDIR)
|
||||
|
||||
testBrowsers = [ b for b in
|
||||
( 'firefox5', )
|
||||
#'chrome12', 'chrome13', 'firefox4', 'firefox6','opera11' ):
|
||||
( 'firefox5', 'firefox6', )
|
||||
#'chrome12', 'chrome13', 'firefox4', 'opera11' ):
|
||||
if os.access(b, os.R_OK | os.X_OK) ]
|
||||
|
||||
mf = open(manifestFile)
|
||||
|
@ -152,7 +152,7 @@ def setUp(manifestFile, masterMode):
|
|||
taskResults.append([ ])
|
||||
State.taskResults[b][id] = taskResults
|
||||
|
||||
State.remaining = len(manifestList)
|
||||
State.remaining = len(testBrowsers) * len(manifestList)
|
||||
|
||||
for b in testBrowsers:
|
||||
print 'Launching', b
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue