r4243 introduced a change to client/common_lib/test.py which will only
enable crash handler while running as 'root'. But subsequent calls to crash
handler was forgotten.
Index: client/common_lib/test.py
===================================================================
--- client/common_lib/test.py (revision 4265)
+++ client/common_lib/test.py (working copy)
@@ -41,6 +41,8 @@
os.mkdir(self.debugdir)
if getpass.getuser() == 'root':
self.configure_crash_handler()
+ else:
+ self.crash_handling_enabled = False
self.bindir = bindir
self.srcdir = os.path.join(self.bindir, 'src')
self.tmpdir = tempfile.mkdtemp("_" + self.tagged_testname,
--
Eric Li
李咏竹
Google Kirkland
Index: client/common_lib/test.py
===================================================================
--- client/common_lib/test.py (revision 4265)
+++ client/common_lib/test.py (working copy)
@@ -41,6 +41,8 @@
os.mkdir(self.debugdir)
if getpass.getuser() == 'root':
self.configure_crash_handler()
+ else:
+ self.crash_handling_enabled = False
self.bindir = bindir
self.srcdir = os.path.join(self.bindir, 'src')
self.tmpdir = tempfile.mkdtemp("_" + self.tagged_testname,
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest