< prev index next >

test/com/sun/jdi/ImmutableResourceTest.sh

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 

  24 #   @test
  25 #   @bug        6287579
  26 #   @summary    SubClasses of ListResourceBundle should fix getContents()
  27 #   @author     Tim Bell
  28 #
  29 #   @run shell ImmutableResourceTest.sh
  30 #
  31 #
  32 
  33 # Beginning of subroutines:
  34 status=1
  35 
  36 #Call this from anywhere to fail the test with an error message
  37 # usage: fail "reason why the test failed"
  38 fail()
  39  { echo "The test failed :-("
  40    echo "$*" 1>&2
  41    echo "exit status was $status"
  42    exit $status
  43  } #end of fail()
  44 
  45 #Call this from anywhere to pass the test with a message
  46 # usage: pass "reason why the test passed if applicable"
  47 pass()
  48  { echo "The test passed!!!"
  49    echo "$*" 1>&2
  50    exit 0
  51  } #end of pass()




   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 
  24 #
  25 # @test
  26 # @bug        6287579
  27 # @summary    SubClasses of ListResourceBundle should fix getContents()
  28 # @author     Tim Bell
  29 #
  30 # @run shell ImmutableResourceTest.sh
  31 #

  32 
  33 # Beginning of subroutines:
  34 status=1
  35 
  36 #Call this from anywhere to fail the test with an error message
  37 # usage: fail "reason why the test failed"
  38 fail()
  39  { echo "The test failed :-("
  40    echo "$*" 1>&2
  41    echo "exit status was $status"
  42    exit $status
  43  } #end of fail()
  44 
  45 #Call this from anywhere to pass the test with a message
  46 # usage: pass "reason why the test passed if applicable"
  47 pass()
  48  { echo "The test passed!!!"
  49    echo "$*" 1>&2
  50    exit 0
  51  } #end of pass()


< prev index next >