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

Unified Diff: test/webkit/fast/regex/non-capturing-backtracking.js

Issue 131363008: A64: Synchronize with r15922. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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
Index: test/webkit/fast/regex/non-capturing-backtracking.js
diff --git a/test/webkit/codegen-jless.js b/test/webkit/fast/regex/non-capturing-backtracking.js
similarity index 90%
copy from test/webkit/codegen-jless.js
copy to test/webkit/fast/regex/non-capturing-backtracking.js
index ba8ba6fad07dc6fef9235aaa74b58c66c4c51cc2..e086dc7d6d19b57faaf9d47b49a119523a727503 100644
--- a/test/webkit/codegen-jless.js
+++ b/test/webkit/fast/regex/non-capturing-backtracking.js
@@ -22,7 +22,8 @@
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
description(
-"Tests particular unusual cases of jump-if-less codegen."
+"This page tests for proper backtracking with greedy quantifiers and non-capturing parentheses."
);
-shouldBe("!(true && undefined > 0) ? 'true' : 'false'", "'true'");
+var re = /(?:a*)a/;
+shouldBe("re.exec('a')", "['a']");
« no previous file with comments | « test/webkit/fast/regex/malformed-escapes-expected.txt ('k') | test/webkit/fast/regex/non-capturing-backtracking-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698