aboutsummaryrefslogtreecommitdiffstats
path: root/make/scripts/runtest-x64.bat
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-09-07 07:58:39 +0200
committerSven Gothel <[email protected]>2014-09-07 07:58:39 +0200
commit0b07f9107c5b033913f5c4cbeb906ae6dafc2d77 (patch)
treea2248c83cf9bb50721d195798fcb96a688224f31 /make/scripts/runtest-x64.bat
parent2faec846fbc13d206028b16a7713c7a1a701fa08 (diff)
Bug 908: Fix URI/URL double encoding, ensuring encoded/decoded variants are used properly (Added unit test)
Bug 908 was caused by confusing URI encoded parts (e.g. scheme-specific-part) and it's decoded variant. This especially happened due to: - the fact, that the encoded and unencoded variant uses the same String type, - the URI/URL decoding differs, is not complete (e.g. %20 .. SPACE remains in decoded part), - and does not comply w/ RFC 2396 and RFC 3986 (encoding), e.g. not all RESERVED chars are encoded. In branch 'v2.3.0_branch', we will introduce our own Uri and Uri.Encoded class to solve above issue by replacing all URI usage w/ Uri. - Backporting results of own Uri class introduction in branch 'v2.3.0_branch' - Ensure the encoded URI parts are used where required, i.e. IOUtil.compose(..) etc - TestNetIOURIReservedCharsBug908: Automated test, launching GlueGen jar file from an <i>odd pathname</i>.
Diffstat (limited to 'make/scripts/runtest-x64.bat')
-rwxr-xr-xmake/scripts/runtest-x64.bat4
1 files changed, 3 insertions, 1 deletions
diff --git a/make/scripts/runtest-x64.bat b/make/scripts/runtest-x64.bat
index f03dc41..6a5d79c 100755
--- a/make/scripts/runtest-x64.bat
+++ b/make/scripts/runtest-x64.bat
@@ -2,7 +2,7 @@ REM scripts\java-win64.bat com.jogamp.common.GlueGenVersion
REM scripts\java-win64.bat com.jogamp.common.util.TestVersionInfo
REM scripts\java-win64.bat com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter
REM scripts\java-win64.bat com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter
-scripts\java-win64.bat com.jogamp.common.util.TestTempJarCache
+REM scripts\java-win64.bat com.jogamp.common.util.TestTempJarCache
REM scripts\java-win64.bat com.jogamp.common.os.TestElfReader01
REM scripts\java-win64.bat com.jogamp.common.util.TestIOUtil01
@@ -10,4 +10,6 @@ REM scripts\java-win64.bat com.jogamp.common.util.TestIOUtilURICompose
REM scripts\java-win64.bat com.jogamp.common.util.TestIOUtilURIHandling
REM scripts\java-win64.bat com.jogamp.common.net.TestUrisWithAssetHandler
REM scripts\java-win64.bat com.jogamp.common.net.TestURIQueryProps
+scripts\java-win64.bat com.jogamp.common.net.TestNetIOURIReservedCharsBug908
+REM scripts\java-win64.bat com.jogamp.common.util.TestIOUtilURIHandling