Bug 1496297 - Use |jit-test| skip-if as appropriate in jit-test/tests/regexp_parse/ (r=jorendorff)

--HG--
extra : rebase_source : 8ab3b2e745c2d9431bcd15582b6d8f54e8fb5c16
This commit is contained in:
Eric Faust 2018-10-09 15:41:50 -07:00
Родитель 287a92b60b
Коммит ed69df1491
27 изменённых файлов: 1 добавлений и 78 удалений

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("^", no_multiline_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("a", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("\\d", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("\\f", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("\\ca", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// LegacyOctalEscapeSequence

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("\\x00", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// SyntaxCharacter

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("\\0", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// LeadSurrogate TrailSurrogate

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("()", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("[]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\\d]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\b]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\\f]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\\ca]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\\x00]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("[\\0]", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// LeadSurrogate TrailSurrogate

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("a|\u3042", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix(".", no_unicode_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test("(?:)", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("(?=abc)", all_flags,

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
// Leading and trailing .* are ignored if match_only==true.

Просмотреть файл

@ -1,6 +1,3 @@
if (typeof parseRegExp === 'undefined')
quit();
load(libdir + "regexp_parse.js");
test_mix("a*", all_flags,

Просмотреть файл

@ -0,0 +1 @@
|jit-test| skip-if: typeof parseRegExp === 'undefined'