diff options
author | Sven Gothel <[email protected]> | 2014-08-28 06:27:51 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-08-28 06:27:51 +0200 |
commit | 9bc3d3f78bb2fb1aa0ccfb02ffb5bdda74420cac (patch) | |
tree | 3005812f0b383fa55c5e78571a97d810164a1545 /make/scripts/runtest-x32.bat | |
parent | 812c5f6a74b40fc36141886cd30ae9013e2fe897 (diff) |
Bug 1015: Test executable permission on Windows via bat file (temp dir, like on unix and osx)
Tested on Window 7 and Windows 8.1 using 'Using Software Restriction Policies',
i.e. disabled sw-execution in TEMP dir.
On Windows we need to add min. shell code, here 'echo off',
allowing the bat file to be executed if policy allows it.
Reminder: We test the following temp folder
1) java.io.tmpdir/jogamp
2) $XDG_CACHE_HOME/jogamp
3) $TMPDIR/jogamp or $TEMP/jogamp
4) $HOME/.jogamp
+++
Misc:
Proper 'duplicate' validation via 'file1.equals(file2)' test
using the abstract pathname.
Diffstat (limited to 'make/scripts/runtest-x32.bat')
-rwxr-xr-x | make/scripts/runtest-x32.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/scripts/runtest-x32.bat b/make/scripts/runtest-x32.bat index 2c5e8e2..5a2739c 100755 --- a/make/scripts/runtest-x32.bat +++ b/make/scripts/runtest-x32.bat @@ -1,7 +1,8 @@ REM scripts\java-win32.bat com.jogamp.common.GlueGenVersion REM scripts\java-win32.bat com.jogamp.common.util.TestVersionInfo REM scripts\java-win32.bat com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter -scripts\java-win32.bat com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter +REM scripts\java-win32.bat com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter +scripts\java-win32.bat com.jogamp.common.util.TestTempJarCache REM scripts\java-win32.bat com.jogamp.common.os.TestElfReader01 REM scripts\java-win32.bat com.jogamp.common.util.TestIOUtilURIHandling |