< prev index next >

test/com/sun/jdi/CommandCommentDelimiter.sh

Print this page
rev 12339 : 8075658: Mark intermittently failuring core-svc tests


  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 #  @test
  28 #  @bug 4507088
  29 #  @summary TTY: Add a comment delimiter to the jdb command set
  30 #  @author Tim Bell

  31 #  @run shell CommandCommentDelimiter.sh
  32 #
  33 
  34 createJavaFile()
  35 {
  36     cat <<EOF > $classname.java.1
  37 public class $classname {
  38     public static void main(String args[]) {
  39         System.out.print  ("Hello");
  40         System.out.print  (", ");
  41         System.out.print  ("world");
  42         System.out.println("!");
  43     }
  44 }
  45 
  46 EOF
  47 }
  48 
  49 # This is called to feed cmds to jdb.
  50 dojdbCmds()




  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 #  @test
  28 #  @bug 4507088
  29 #  @summary TTY: Add a comment delimiter to the jdb command set
  30 #  @author Tim Bell
  31 #  @key intermittent
  32 #  @run shell CommandCommentDelimiter.sh
  33 #
  34 
  35 createJavaFile()
  36 {
  37     cat <<EOF > $classname.java.1
  38 public class $classname {
  39     public static void main(String args[]) {
  40         System.out.print  ("Hello");
  41         System.out.print  (", ");
  42         System.out.print  ("world");
  43         System.out.println("!");
  44     }
  45 }
  46 
  47 EOF
  48 }
  49 
  50 # This is called to feed cmds to jdb.
  51 dojdbCmds()


< prev index next >