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

Unified Diff: runtime/vm/regexp_test.cc

Issue 1071713003: - Remove JSCRE from the runtime. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 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
« runtime/vm/raw_object_snapshot.cc ('K') | « runtime/vm/regexp.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/regexp_test.cc
===================================================================
--- runtime/vm/regexp_test.cc (revision 44981)
+++ runtime/vm/regexp_test.cc (working copy)
@@ -25,9 +25,6 @@
}
TEST_CASE(RegExp_OneByteString) {
- if (FLAG_use_jscre)
- return;
-
uint8_t chars[] = { 'a', 'b', 'c', 'b', 'a' };
intptr_t len = ARRAY_SIZE(chars);
const String& str = String::Handle(
@@ -49,9 +46,6 @@
}
TEST_CASE(RegExp_TwoByteString) {
- if (FLAG_use_jscre)
- return;
-
uint16_t chars[] = { 'a', 'b', 'c', 'b', 'a' };
intptr_t len = ARRAY_SIZE(chars);
const String& str = String::Handle(
@@ -73,9 +67,6 @@
}
TEST_CASE(RegExp_ExternalOneByteString) {
- if (FLAG_use_jscre)
- return;
-
uint8_t chars[] = { 'a', 'b', 'c', 'b', 'a' };
intptr_t len = ARRAY_SIZE(chars);
const String& str = String::Handle(
@@ -97,9 +88,6 @@
}
TEST_CASE(RegExp_ExternalTwoByteString) {
- if (FLAG_use_jscre)
- return;
-
uint16_t chars[] = { 'a', 'b', 'c', 'b', 'a' };
intptr_t len = ARRAY_SIZE(chars);
const String& str = String::Handle(
« runtime/vm/raw_object_snapshot.cc ('K') | « runtime/vm/regexp.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698