test/java/awt/Toolkit/BadDisplayTest/BadDisplayTest.sh

Print this page




  11 # version 2 for more details (a copy is included in the LICENSE file that
  12 # accompanied this code).
  13 #
  14 # You should have received a copy of the GNU General Public License version
  15 # 2 along with this work; if not, write to the Free Software Foundation,
  16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17 #
  18 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19 # or visit www.oracle.com if you need additional information or have any
  20 # questions.
  21 
  22 ${TESTJAVA}/bin/javac -cp ${TESTSRC} -d . ${TESTSRC}/BadDisplayTest.java
  23 
  24 
  25 DISPLAY=
  26 export DISPLAY
  27 
  28 OS=`uname -s`
  29 case "$OS" in
  30   SunOS )
  31     ${TESTJAVA}/bin/java BadDisplayTest
  32     ;;
  33   Linux )
  34     ${TESTJAVA}/bin/java BadDisplayTest
  35      ;;
  36   * )
  37     echo "Unsupported System: ${OS}"
  38     exit 0;
  39     ;;
  40 esac
  41 
  42 exit $?
  43 


  11 # version 2 for more details (a copy is included in the LICENSE file that
  12 # accompanied this code).
  13 #
  14 # You should have received a copy of the GNU General Public License version
  15 # 2 along with this work; if not, write to the Free Software Foundation,
  16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17 #
  18 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19 # or visit www.oracle.com if you need additional information or have any
  20 # questions.
  21 
  22 ${TESTJAVA}/bin/javac -cp ${TESTSRC} -d . ${TESTSRC}/BadDisplayTest.java
  23 
  24 
  25 DISPLAY=
  26 export DISPLAY
  27 
  28 OS=`uname -s`
  29 case "$OS" in
  30   SunOS )
  31     ${TESTJAVA}/bin/java ${TESTVMOPTS} BadDisplayTest
  32     ;;
  33   Linux )
  34     ${TESTJAVA}/bin/java ${TESTVMOPTS} BadDisplayTest
  35      ;;
  36   * )
  37     echo "Unsupported System: ${OS}"
  38     exit 0;
  39     ;;
  40 esac
  41 
  42 exit $?
  43