js/src/jit-test/tests/basic/bug649939.js

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 // This was the actual bug
     2 assertRaises(StopIteration, function() {
     3     Iterator.prototype.next();
     4     Iterator.prototype.next();
     5 });
     7 // The error should have triggered here, but was masked by a latent bug
     8 assertRaises(StopIteration, function() {
     9     Iterator.prototype.next();
    10 });
    12 // Found by fuzzing
    13 assertRaises(StopIteration, function() {
    14     (new Iterator({})).__proto__.next();
    15 });
    18 function assertRaises(exc, callback) {
    19     var caught = false;
    20     try {
    21         callback();
    22     } catch (e) {
    23         assertEq(e instanceof StopIteration, true);
    24         caught = true;
    25     }
    26     assertEq(caught, true);
    27 }

mercurial