Revision: 17381
Author: [email protected]
Date: Thu Oct 24 17:27:58 2013 UTC
Log: Make the message test suite run without slow asserts.
[email protected]
Review URL: https://codereview.chromium.org/39303004
http://code.google.com/p/v8/source/detail?r=17381
Modified:
/branches/bleeding_edge/test/message/testcfg.py
=======================================
--- /branches/bleeding_edge/test/message/testcfg.py Wed Jun 26 14:23:30
2013 UTC
+++ /branches/bleeding_edge/test/message/testcfg.py Thu Oct 24 17:27:58
2013 UTC
@@ -35,6 +35,7 @@
FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
+INVALID_FLAGS = ["--enable-slow-asserts"]
class MessageTestSuite(testsuite.TestSuite):
@@ -62,6 +63,7 @@
for match in flags_match:
result += match.strip().split()
result += context.mode_flags
+ result = [x for x in result if x not in INVALID_FLAGS]
result.append(os.path.join(self.root, testcase.path + ".js"))
return testcase.flags + result
--
--
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.