sundar@589: /* sundar@589: * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. sundar@589: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. attila@962: * sundar@589: * This code is free software; you can redistribute it and/or modify it sundar@589: * under the terms of the GNU General Public License version 2 only, as sundar@589: * published by the Free Software Foundation. attila@962: * sundar@589: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@589: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@589: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@589: * version 2 for more details (a copy is included in the LICENSE file that sundar@589: * accompanied this code). attila@962: * sundar@589: * You should have received a copy of the GNU General Public License version sundar@589: * 2 along with this work; if not, write to the Free Software Foundation, sundar@589: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. attila@962: * sundar@589: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@589: * or visit www.oracle.com if you need additional information or have any sundar@589: * questions. sundar@589: */ sundar@589: sundar@589: /** sundar@589: * JDK-8025488: Error.captureStackTrace should not format error stack sundar@589: * sundar@589: * @test sundar@589: * @run sundar@589: */ sundar@589: sundar@589: sundar@589: function MyError () { sundar@589: Error.call(this); sundar@589: Error.captureStackTrace(this); sundar@589: this.arr = {}; sundar@589: }; sundar@589: sundar@589: MyError.prototype.toString = function() { sundar@589: return this.arr.toString(); sundar@589: } sundar@589: attila@962: var e = new MyError(); sundar@612: print(e.stack.replace(/\\/g, '/'));