mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 133471646752 (bug 1055014) for causing intermittent B2G xpcshell failures.
CLOSED TREE
This commit is contained in:
parent
cf550158ff
commit
6d686b6518
@ -53,6 +53,18 @@ class B2GXPCShellRemote(XPCShellRemote):
|
||||
print >>sys.stderr, "\nCleaning files from previous run.."
|
||||
self.device.removeDir(self.options.remoteTestRoot)
|
||||
|
||||
# Overriden
|
||||
def setupTestDir(self):
|
||||
if self.device._useZip:
|
||||
return XPCShellRemote.setupTestDir(self)
|
||||
|
||||
for root, dirs, files in os.walk(self.xpcDir):
|
||||
for filename in files:
|
||||
rel_path = os.path.relpath(os.path.join(root, filename), self.xpcDir)
|
||||
test_file = os.path.join(self.remoteScriptsDir, rel_path)
|
||||
print 'pushing %s' % test_file
|
||||
self.device.pushFile(os.path.join(root, filename), test_file, retryLimit=10)
|
||||
|
||||
# Overridden
|
||||
def pushLibs(self):
|
||||
if not self.options.use_device_libs:
|
||||
|
Loading…
Reference in New Issue
Block a user