test/java/util/prefs/CheckUserPrefsStorage.sh

Print this page
rev 8975 : 8028537: PPC64: Updated the JDK regression tests to run on AIX
Reviewed-by: alanb
Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, volker.simonis@gmail.com


  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 7198073 7197662
  26 # @build CheckUserPrefFirst CheckUserPrefLater
  27 # @run shell CheckUserPrefsStorage.sh
  28 # @summary Tests that user preferences are stored in the
  29 #          permanent storage
  30 #
  31 
  32 OS=`uname -s`
  33 case "$OS" in
  34   SunOS | Linux | Darwin )
  35     PS=":"
  36     FS="/"
  37     ;;
  38   CYGWIN* )
  39     PS=";"
  40     FS="/"
  41     ;;
  42   Windows* )
  43     PS=";"
  44     FS="\\"
  45     ;;
  46   * )
  47     echo "Unrecognized system!"
  48     exit 1;
  49     ;;
  50 esac
  51 
  52 # run CheckUserPrefFirst - creates and stores a user pref
  53 ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -cp ${TESTCLASSES} -Djava.util.prefs.userRoot=. CheckUserPrefFirst
  54 result=$?


  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 7198073 7197662
  26 # @build CheckUserPrefFirst CheckUserPrefLater
  27 # @run shell CheckUserPrefsStorage.sh
  28 # @summary Tests that user preferences are stored in the
  29 #          permanent storage
  30 #
  31 
  32 OS=`uname -s`
  33 case "$OS" in
  34   SunOS | Linux | Darwin | AIX )
  35     PS=":"
  36     FS="/"
  37     ;;
  38   CYGWIN* )
  39     PS=";"
  40     FS="/"
  41     ;;
  42   Windows* )
  43     PS=";"
  44     FS="\\"
  45     ;;
  46   * )
  47     echo "Unrecognized system!"
  48     exit 1;
  49     ;;
  50 esac
  51 
  52 # run CheckUserPrefFirst - creates and stores a user pref
  53 ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -cp ${TESTCLASSES} -Djava.util.prefs.userRoot=. CheckUserPrefFirst
  54 result=$?