Reviewers: ulan,

Message:
PTAL

Description:
Fixed noi18n build.

Please review this at https://codereview.chromium.org/1159553011/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+4, -2 lines):
  M test/mjsunit/regress/regress-crbug-493284.js


Index: test/mjsunit/regress/regress-crbug-493284.js
diff --git a/test/mjsunit/regress/regress-crbug-493284.js b/test/mjsunit/regress/regress-crbug-493284.js index 85f7d2af9132d867358943b2899fad7819a78f0b..64f946347121a26222a759b25fbac763fee2e7ba 100644
--- a/test/mjsunit/regress/regress-crbug-493284.js
+++ b/test/mjsunit/regress/regress-crbug-493284.js
@@ -4,5 +4,7 @@

 // Flags: --invoke-weak-callbacks --omit-quit --no-test

-var coll = new Intl.Collator();
-assertEquals(-1, coll.compare('a', 'c'));
+if (this.Intl) {
+  var coll = new Intl.Collator();
+  assertEquals(-1, coll.compare('a', 'c'));
+}


--
--
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/d/optout.

Reply via email to