jdk/test/java/awt/FontClass/CreateFont/DeleteFont.sh
changeset 2606 09ad5edb5330
child 5506 202f599c92aa
equal deleted inserted replaced
2605:e8d0473c25e8 2606:09ad5edb5330
       
     1 # Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
       
     2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     3 #
       
     4 # This code is free software; you can redistribute it and/or modify it
       
     5 # under the terms of the GNU General Public License version 2 only, as
       
     6 # published by the Free Software Foundation.
       
     7 #
       
     8 # This code is distributed in the hope that it will be useful, but WITHOUT
       
     9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    10 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    19 # CA 95054 USA or visit www.sun.com if you need additional information or
       
    20 # have any questions.
       
    21 
       
    22 # @test
       
    23 # @bug 6189812 6380357 6632886
       
    24 # @summary Verify that temporary font files are deleted on exit.
       
    25 
       
    26 if [ -z "${TESTSRC}" ]; then
       
    27   echo "TESTSRC undefined: defaulting to ."
       
    28   TESTSRC=.
       
    29 fi
       
    30 
       
    31 if [ -z "${TESTCLASSES}" ]; then
       
    32   echo "TESTCLASSES undefined: defaulting to ."
       
    33   TESTCLASSES=.
       
    34 fi
       
    35 
       
    36 if [ -z "${TESTJAVA}" ]; then
       
    37   echo "TESTJAVA undefined: can't continue."
       
    38   exit 1
       
    39 fi
       
    40 
       
    41 echo "TESTJAVA=${TESTJAVA}"
       
    42 echo "TESTSRC=${TESTSRC}"
       
    43 echo "TESTCLASSES=${TESTCLASSES}"
       
    44 cd ${TESTSRC}
       
    45 ${TESTJAVA}/bin/javac -d ${TESTCLASSES} DeleteFont.java
       
    46 
       
    47 cd ${TESTCLASSES}
       
    48 
       
    49 numfiles0=`ls ${TESTCLASSES} | wc -l`
       
    50 ${TESTJAVA}/bin/java -Djava.io.tmpdir=${TESTCLASSES} DeleteFont
       
    51 
       
    52 if [ $? -ne 0 ]
       
    53     then
       
    54       echo "Test fails: exception thrown!"
       
    55       exit 1
       
    56 fi
       
    57 
       
    58 numfiles1=`ls ${TESTCLASSES} | wc -l`
       
    59 
       
    60 if [ $numfiles0 -ne $numfiles1 ]
       
    61     then
       
    62       echo "Test fails: tmp file exists!"
       
    63       ls ${TESTCLASSES}
       
    64       exit 1
       
    65 fi
       
    66 exit 0