diff options
author | Daniel Manrique <roadmr@ubuntu.com> | 2014-10-20 17:11:54 -0400 |
---|---|---|
committer | Daniel Manrique <roadmr@ubuntu.com> | 2014-10-20 17:11:54 -0400 |
commit | c547c0662f561c7eb3f66725862428727a2f17be (patch) | |
tree | 7289ca0744f303a7564e6058de96e9a44cf61167 /bin | |
parent | 35e1df6349c9aafe262907dcf16acc0db00f21ce (diff) |
providers:checkbox: don't start threads in parallel when doing memory_test (breaks powerpc systems)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/memory_test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/memory_test b/bin/memory_test index c42b05f..4cd6008 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) |