js/src/jit-test/tests/auto-regress/bug643670.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 // |jit-test| error:ReferenceError
     3 // Binary: cache/js-dbg-32-55f463c562d4-linux
     4 // Flags: -m -n -a
     5 //
     6 o3 = evalcx("split")
     7 function f3(o) {
     8     try {
     9         new o
    10     } catch(e) {}
    11 }
    12 function f16(o) {
    13     Object.getOwnPropertyNames(o);
    14     o.__defineGetter__("prototype", function() {})
    15 }
    16 for (;;) {
    17     new f3(o3);
    18     f16(o3)
    19 }

mercurial