test/script/nosecurity/JDK-8148926.js

Sun, 24 Jun 2018 23:15:05 +0100

author
alitvinov
date
Sun, 24 Jun 2018 23:15:05 +0100
changeset 2351
41ac91662b75
parent 1727
18477de7c28f
permissions
-rw-r--r--

Merge

sundar@1727 1 /*
sundar@1727 2 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
sundar@1727 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@1727 4 *
sundar@1727 5 * This code is free software; you can redistribute it and/or modify it
sundar@1727 6 * under the terms of the GNU General Public License version 2 only, as
sundar@1727 7 * published by the Free Software Foundation.
sundar@1727 8 *
sundar@1727 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@1727 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@1727 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@1727 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@1727 13 * accompanied this code).
sundar@1727 14 *
sundar@1727 15 * You should have received a copy of the GNU General Public License version
sundar@1727 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@1727 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@1727 18 *
sundar@1727 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@1727 20 * or visit www.oracle.com if you need additional information or have any
sundar@1727 21 * questions.
sundar@1727 22 */
sundar@1727 23
sundar@1727 24 /**
sundar@1727 25 * JDK-8148926: Call site profiling fails on braces-wrapped anonymous function
sundar@1727 26 *
sundar@1727 27 * @test
sundar@1727 28 * @option -pcs
sundar@1727 29 * @run
sundar@1727 30 */
sundar@1727 31
sundar@1727 32 (function() {})()
sundar@1727 33
sundar@1727 34 var i = (function() { return 2 })()

mercurial