nashorn/test/script/basic/JDK-8007522.js
author sundar
Thu, 13 Mar 2014 15:58:24 +0530
changeset 23374 f470afc89c6c
parent 16215 92f00bfd6059
child 24778 2ff5d7041566
permissions -rw-r--r--
8015958: DataView constructor is not defined Reviewed-by: attila, hannesw, lagergren
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16215
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     1
/*
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     4
 * 
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     7
 * published by the Free Software Foundation.
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     8
 * 
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    13
 * accompanied this code).
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    14
 * 
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    18
 * 
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    21
 * questions.
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    22
 */
92f00bfd6059 8007523: VerifyError on script that uses regular expression literals with ternary operator
sundar
parents: 16214
diff changeset
    23
16214
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    24
/**
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    25
 * JDK-8007522: IllegalStateException thrown from String.prototype.search function
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    26
 *
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    27
 * @test
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    28
 * @run
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    29
 */
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    30
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    31
var str = "hello";
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    32
// search used to result in IllegalStateException
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    33
if (str.search(/foo/g) != -1) {
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    34
    fail("String.prototype.search failed");
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    35
}
299e3d0ec77e 8007522: IllegalStateException thrown from String.prototype.search function
sundar
parents:
diff changeset
    36