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

Unified Diff: test/mjsunit/harmony/regexp-property-blocks.js

Issue 2502933002: [regexp] implement latest spec draft for property class. (Closed)
Patch Set: fix test Created 4 years, 1 month 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
Index: test/mjsunit/harmony/regexp-property-blocks.js
diff --git a/test/mjsunit/harmony/regexp-property-blocks.js b/test/mjsunit/harmony/regexp-property-blocks.js
index de3fd1e276ffe6f5ba2689aa12d108521105f8b8..56de84084c31f5a3dbb9a5906aaf88e7f7a5ecf3 100644
--- a/test/mjsunit/harmony/regexp-property-blocks.js
+++ b/test/mjsunit/harmony/regexp-property-blocks.js
@@ -4,31 +4,15 @@
// Flags: --harmony-regexp-property
-function t(re, s) { assertTrue(re.test(s)); }
-function f(re, s) { assertFalse(re.test(s)); }
-
-t(/\p{Block=ASCII}+/u, ".");
-t(/\p{Block=ASCII}+/u, "supercalifragilisticexpialidocious");
-t(/\p{Block=Basic_Latin}+/u, ".");
-t(/\p{Block=Basic_Latin}+/u, "supercalifragilisticexpialidocious");
-
-t(/\p{blk=CJK}+/u, "话说天下大势,分久必合,合久必分");
-t(/\p{blk=CJK_Unified_Ideographs}+/u, "吾庄后有一桃园,花开正盛");
-f(/\p{blk=CJK}+/u, "おはようございます");
-f(/\p{blk=CJK_Unified_Ideographs}+/u,
- "Something is rotten in the state of Denmark");
-
-t(/\p{blk=Latin_1}+/u, "Wie froh bin ich, daß ich weg bin!");
-f(/\p{blk=Latin_1_Supplement}+/u, "奔腾千里荡尘埃,渡水登山紫雾开");
-f(/\p{blk=Latin_1_Sup}+/u, "いただきます");
-
-t(/\p{blk=Hiragana}/u, "いただきます");
-t(/\p{sc=Hiragana}/u, "\u{1b001}"); // This refers to the script "Hiragana".
-f(/\p{blk=Hiragana}/u, "\u{1b001}"); // This refers to the block "Hiragana".
-
-t(/\p{blk=Greek_And_Coptic}/u,
- "ἄνδρα μοι ἔννεπε, μοῦσα, πολύτροπον, ὃς μάλα πολλὰ");
-t(/\p{blk=Greek}/u, "μῆνιν ἄειδε θεὰ Πηληϊάδεω Ἀχιλῆος");
+assertThrows("/\p{Block=ASCII}+/u");
+assertThrows("/\p{Block=ASCII}+/u");
+assertThrows("/\p{Block=Basic_Latin}+/u");
+assertThrows("/\p{Block=Basic_Latin}+/u");
+
+assertThrows("/\p{blk=CJK}+/u");
+assertThrows("/\p{blk=CJK_Unified_Ideographs}+/u");
+assertThrows("/\p{blk=CJK}+/u");
+assertThrows("/\p{blk=CJK_Unified_Ideographs}+/u");
assertThrows("/\\p{In}/u");
assertThrows("/\\pI/u");

Powered by Google App Engine
This is Rietveld 408576698