Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: tests/benchmark/nacl.scons

Issue 1037183002: Add Subzero to scons tests on the bots. x86-32 only. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Increase the timeout under Subzero, rather than disabling the test Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « buildbot/buildbot_pnacl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/benchmark/nacl.scons
diff --git a/tests/benchmark/nacl.scons b/tests/benchmark/nacl.scons
index cc1caf5978fe9996cae7477435761fa8dbe4968a..eae051f7142f175ec7cc20c41e1b9a1a6a8b58e9 100644
--- a/tests/benchmark/nacl.scons
+++ b/tests/benchmark/nacl.scons
@@ -11,6 +11,10 @@ Import('env')
# are benchmarks and need to run on real hardware.
is_broken = env.Bit('running_on_valgrind') or env.UsingEmulator()
+# Increase the test timeout for Subzero.
+# https://code.google.com/p/nativeclient/issues/detail?id=4136
+timeout_override = 200 if env.Bit('use_sz') else 0
+
libs = []
if env.Bit('nacl_glibc'):
# Needed for clock_gettime().
@@ -37,6 +41,7 @@ if 'TRUSTED_ENV' not in env:
node = env.CommandSelLdrTestNacl(
'benchmark_test.out', nexe, [env.GetPerfEnvDescription()],
+ time_error=timeout_override,
# Don't hide output: We want the timings to be reported in the
# Buildbot logs so that Buildbot records the "RESULT" lines.
capture_output=False)
« no previous file with comments | « buildbot/buildbot_pnacl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698