Revision: 18922
Author:   [email protected]
Date:     Wed Jan 29 15:30:41 2014 UTC
Log:      Make 'ASAN' configurable in test status file.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/149173006
http://code.google.com/p/v8/source/detail?r=18922

Modified:
 /branches/bleeding_edge/tools/run-deopt-fuzzer.py
 /branches/bleeding_edge/tools/run-tests.py

=======================================
--- /branches/bleeding_edge/tools/run-deopt-fuzzer.py Tue Jan 21 12:41:25 2014 UTC +++ /branches/bleeding_edge/tools/run-deopt-fuzzer.py Wed Jan 29 15:30:41 2014 UTC
@@ -154,6 +154,9 @@
   result.add_option("--arch-and-mode",
                     help="Architecture and mode in the format 'arch.mode'",
                     default=None)
+  result.add_option("--asan",
+                    help="Regard test expectations for ASAN",
+                    default=False, action="store_true")
   result.add_option("--buildbot",
                     help="Adapt to path structure used on buildbots",
                     default=False, action="store_true")
@@ -364,6 +367,7 @@
   # Find available test suites and read test cases from them.
   variables = {
     "arch": arch,
+    "asan": options.asan,
     "deopt_fuzzer": True,
     "gc_stress": False,
     "isolates": options.isolates,
=======================================
--- /branches/bleeding_edge/tools/run-tests.py  Tue Jan 21 12:41:25 2014 UTC
+++ /branches/bleeding_edge/tools/run-tests.py  Wed Jan 29 15:30:41 2014 UTC
@@ -99,6 +99,9 @@
   result.add_option("--arch-and-mode",
                     help="Architecture and mode in the format 'arch.mode'",
                     default=None)
+  result.add_option("--asan",
+                    help="Regard test expectations for ASAN",
+                    default=False, action="store_true")
   result.add_option("--buildbot",
                     help="Adapt to path structure used on buildbots",
                     default=False, action="store_true")
@@ -386,6 +389,7 @@
   # Find available test suites and read test cases from them.
   variables = {
     "arch": arch,
+    "asan": options.asan,
     "deopt_fuzzer": False,
     "gc_stress": options.gc_stress,
     "isolates": options.isolates,

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to