Reviewers: Vyacheslav Egorov,

Description:
Fix test case to correctly check expected result.

[email protected]
TEST=mjsunit/regress/regress-1229


Please review this at https://chromiumcodereview.appspot.com/9303032/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M test/mjsunit/regress/regress-1229.js


Index: test/mjsunit/regress/regress-1229.js
diff --git a/test/mjsunit/regress/regress-1229.js b/test/mjsunit/regress/regress-1229.js index f3979de1488c923fe654593f5a152f5fa871b5fb..3d166d5b4f3dcc978367a9d8f5b97fb09c8801da 100644
--- a/test/mjsunit/regress/regress-1229.js
+++ b/test/mjsunit/regress/regress-1229.js
@@ -132,13 +132,13 @@ function baz(x) {

 function bar(x, y, z) {
   var non_construct = baz(0); /* baz should be inlined */
-  assertEquals(non_construct, NON_CONSTRUCT_MARKER);
+  assertSame(non_construct, NON_CONSTRUCT_MARKER);
   var non_construct = baz(); /* baz should be inlined */
-  assertEquals(non_construct, NON_CONSTRUCT_MARKER);
+  assertSame(non_construct, NON_CONSTRUCT_MARKER);
   var non_construct = baz(0, 0); /* baz should be inlined */
-  assertEquals(non_construct, NON_CONSTRUCT_MARKER);
+  assertSame(non_construct, NON_CONSTRUCT_MARKER);
   var construct = new baz(0);
-  assertEquals(construct, CONSTRUCT_MARKER);
+  assertSame(construct, CONSTRUCT_MARKER);
 }

 invoke(bar, [1, 2, 3]);


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to