summaryrefslogtreecommitdiff
path: root/librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-03-30 14:02:48 -0400
committerB. Stack <bgstack15@gmail.com>2022-03-30 14:02:48 -0400
commitdcbd889c1b8ce2511d87765728d768aa220b5ab0 (patch)
tree34d65d8677f7ff70065d8c83ec6583eddc51cf5d /librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch
parentimprove my prefs.js but (diff)
downloadstackrpms-dcbd889c1b8ce2511d87765728d768aa220b5ab0.tar.gz
stackrpms-dcbd889c1b8ce2511d87765728d768aa220b5ab0.tar.bz2
stackrpms-dcbd889c1b8ce2511d87765728d768aa220b5ab0.zip
lw 98.0 stackrpms rc1
Diffstat (limited to 'librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch')
-rw-r--r--librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch b/librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch
index fba36e8..631fca9 100644
--- a/librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch
+++ b/librewolf/debian/patches/debian-hacks/Add-a-2-minutes-timeout-on-xpcshell-tests.patch
@@ -7,7 +7,7 @@ Subject: Add a 2 minutes timeout on xpcshell tests
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/testing/xpcshell/runxpcshelltests.py b/testing/xpcshell/runxpcshelltests.py
-index 0b355fe..d074c82 100755
+index c6aea1a..a43f380 100755
--- a/testing/xpcshell/runxpcshelltests.py
+++ b/testing/xpcshell/runxpcshelltests.py
@@ -13,6 +13,7 @@ import os
@@ -18,7 +18,7 @@ index 0b355fe..d074c82 100755
import shutil
import signal
import subprocess
-@@ -832,9 +833,23 @@ class XPCShellTestThread(Thread):
+@@ -835,9 +836,23 @@ class XPCShellTestThread(Thread):
if self.interactive:
self.log.info("%s | Process ID: %d" % (name, self.proc_ident))
bgstack15