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

Unified Diff: tools/run-tests.py

Issue 139233005: Skip webkit/function-apply-aliased.js when running on simulators. (Closed) Base URL: https://github.com/v8/v8.git@gbl
Patch Set: Created 6 years, 11 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
« test/webkit/webkit.status ('K') | « test/webkit/webkit.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index f905c03d3f63789d39254ec978966e830f769653..1f134d1dfcb4755eb6ab588f6e0048baaf228345 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -33,6 +33,7 @@ import multiprocessing
import optparse
import os
from os.path import join
+import platform
import shlex
import subprocess
import sys
@@ -396,10 +397,16 @@ def Execute(arch, mode, args, options, suites, workspace):
"mode": mode,
"no_i18n": options.no_i18n,
"system": utils.GuessOS(),
+ "sim": False,
}
all_tests = []
num_tests = 0
test_id = 0
+ machine = platform.machine()
+ if (machine and
+ (arch == "mipsel" or arch == "arm") and
+ not arch.startswith(machine)):
+ variables["sim"] = True
Jakob Kummerow 2014/01/30 09:51:09 Overwriting this after the fact is confusing. Plea
kilvadyb 2014/01/30 10:34:50 Done.
for s in suites:
s.ReadStatusFile(variables)
s.ReadTestCases(ctx)
« test/webkit/webkit.status ('K') | « test/webkit/webkit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698