Revision: 24805
Author:   [email protected]
Date:     Wed Oct 22 12:54:35 2014 UTC
Log:      Add an --msan flag to run-tests.py.

Currently a no-op and added only for consistency with ASan/TSan.

BUG=chromium:425187
[email protected]
LOG=N

Review URL: https://codereview.chromium.org/667903004

Patch from Sergey Matveev <[email protected]>.
https://code.google.com/p/v8/source/detail?r=24805

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

=======================================
--- /branches/bleeding_edge/tools/run-deopt-fuzzer.py Wed Jul 23 13:14:26 2014 UTC +++ /branches/bleeding_edge/tools/run-deopt-fuzzer.py Wed Oct 22 12:54:35 2014 UTC
@@ -389,6 +389,7 @@
     "simulator": utils.UseSimulator(arch),
     "system": utils.GuessOS(),
     "tsan": False,
+    "msan": False,
   }
   all_tests = []
   num_tests = 0
=======================================
--- /branches/bleeding_edge/tools/run-tests.py  Mon Oct 20 12:14:26 2014 UTC
+++ /branches/bleeding_edge/tools/run-tests.py  Wed Oct 22 12:54:35 2014 UTC
@@ -257,6 +257,9 @@
                     default="v8tests")
   result.add_option("--random-seed", default=0, dest="random_seed",
                     help="Default seed for initializing random generator")
+  result.add_option("--msan",
+                    help="Regard test expectations for MSAN",
+                    default=False, action="store_true")
   return result


@@ -509,6 +512,7 @@
     "simulator": utils.UseSimulator(arch),
     "system": utils.GuessOS(),
     "tsan": options.tsan,
+    "msan": options.msan,
   }
   all_tests = []
   num_tests = 0

--
--
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/d/optout.

Reply via email to