# HG changeset patch # User ctornqvi # Date 1483652788 18000 # Node ID bae272e8923c0361a4659b172358717c1da1e523 # Parent 4984fad6c9505299d0a3dd48b37fa0a16f154216 8172188: JDI tests fail due to "permission denied" when creating temp file Reviewed-by: hseigel, mseledtsov diff -r 4984fad6c950 -r bae272e8923c test/com/sun/jdi/ShellScaffold.sh --- a/test/com/sun/jdi/ShellScaffold.sh Thu May 22 15:46:50 2014 +0400 +++ b/test/com/sun/jdi/ShellScaffold.sh Thu Jan 05 16:46:28 2017 -0500 @@ -1,7 +1,7 @@ #!/bin/sh # -# Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it @@ -267,10 +267,10 @@ # treat them as control chars on mks (eg \t is tab) # Oops; windows mks really seems to want this cat line # to start in column 1 - if [ -w "$SystemRoot" ] ; then - tmpFile=$SystemRoot/tmp.$$ - elif [ -w "$SYSTEMROOT" ] ; then - tmpFile=$SYSTEMROOT/tmp.$$ + if [ -w "$Temp" ] ; then + tmpFile=$Temp/tmp.$$ + elif [ -w "$TEMP" ] ; then + tmpFile=$TEMP/tmp.$$ else tmpFile=tmp.$$ fi