From c547c0662f561c7eb3f66725862428727a2f17be Mon Sep 17 00:00:00 2001 From: Daniel Manrique Date: Mon, 20 Oct 2014 17:11:54 -0400 Subject: providers:checkbox: don't start threads in parallel when doing memory_test (breaks powerpc systems) --- bin/memory_test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/memory_test b/bin/memory_test index c42b05f4..4cd60088 100755 --- a/bin/memory_test +++ b/bin/memory_test @@ -131,7 +131,7 @@ class MemoryTest(): print("Running threaded memory test:") run_time = 60 # sec. - if not self.run_processes(processes, "%s -qpv -m%um -t%u" % ( + if not self.run_processes(processes, "%s -qv -m%um -t%u" % ( self.threaded_memtest_script, self.process_memory, run_time)): print("Multi-process, threaded memory Test FAILED", file=sys.stderr) @@ -166,7 +166,7 @@ class MemoryTest(): print("Running for more than free memory at %u MB for %u sec." % ( memory, run_time)) - command = "%s -qpv -m%um -t%u" % ( + command = "%s -qv -m%um -t%u" % ( self.threaded_memtest_script, memory, run_time) print("Command is: %s" % command) process = self._command(command) @@ -180,7 +180,7 @@ class MemoryTest(): # run again for 15 minutes print("Running for free memory") - process = self._command("%s -qpv" % self.threaded_memtest_script) + process = self._command("%s -qv" % self.threaded_memtest_script) process.communicate() if process.returncode != 0: print("Free Memory Test failed", file=sys.stderr) -- cgit v1.2.3