diff options
author | Sven Gothel <[email protected]> | 2014-08-28 17:19:07 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-08-28 17:19:07 +0200 |
commit | ced23e04240578955450172101012f1321b2e9a3 (patch) | |
tree | 8b86a35917b15919abcd0a071d4233843c5df073 | |
parent | d220090818a531cafee28cbf885e07e10b9c2992 (diff) |
TestVersionSemantics: BACKWARD_COMPATIBLE_USER current vs 2.2.0
-rw-r--r-- | make/lib/v2.2.0/gluegen-rt.jar | bin | 0 -> 286873 bytes | |||
-rwxr-xr-x | make/scripts/runtest.sh | 4 | ||||
-rw-r--r-- | src/junit/com/jogamp/common/util/TestVersionSemantics.java | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/make/lib/v2.2.0/gluegen-rt.jar b/make/lib/v2.2.0/gluegen-rt.jar Binary files differnew file mode 100644 index 0000000..a152ccc --- /dev/null +++ b/make/lib/v2.2.0/gluegen-rt.jar diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index 1d6402d..52df0a3 100755 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -82,7 +82,7 @@ function onetest() { #onetest com.jogamp.common.util.TestSystemPropsAndEnvs 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionInfo 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionNumber 2>&1 | tee -a $LOG -#onetest com.jogamp.common.util.TestVersionSemantics 2>&1 | tee -a $LOG +onetest com.jogamp.common.util.TestVersionSemantics 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIteratorIndexCORE 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.locks.TestRecursiveLock01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.locks.TestRecursiveThreadGroupLock01 2>&1 | tee -a $LOG @@ -100,7 +100,7 @@ function onetest() { #onetest com.jogamp.common.util.TestIOUtil01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIOUtilURICompose 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIOUtilURIHandling 2>&1 | tee -a $LOG -onetest com.jogamp.common.util.TestTempJarCache 2>&1 | tee -a $LOG +#onetest com.jogamp.common.util.TestTempJarCache 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestJarUtil 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestValueConversion 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestSyncRingBuffer01 $* diff --git a/src/junit/com/jogamp/common/util/TestVersionSemantics.java b/src/junit/com/jogamp/common/util/TestVersionSemantics.java index b70cdd7..77d3b72 100644 --- a/src/junit/com/jogamp/common/util/TestVersionSemantics.java +++ b/src/junit/com/jogamp/common/util/TestVersionSemantics.java @@ -66,8 +66,9 @@ import com.jogamp.junit.util.VersionSemanticsUtil; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class TestVersionSemantics extends JunitTracer { static final String jarFile = "gluegen-rt.jar"; - static final VersionNumberString preVersionNumber = new VersionNumberString("2.1.5"); - static final Delta.CompatibilityType expectedCompatibilityType = Delta.CompatibilityType.NON_BACKWARD_COMPATIBLE; // Delta.CompatibilityType.BACKWARD_COMPATIBLE_USER; + static final VersionNumberString preVersionNumber = new VersionNumberString("2.2.0"); + // static final Delta.CompatibilityType expectedCompatibilityType = Delta.CompatibilityType.NON_BACKWARD_COMPATIBLE; + static final Delta.CompatibilityType expectedCompatibilityType = Delta.CompatibilityType.BACKWARD_COMPATIBLE_USER; static final DiffCriteria diffCriteria = new SimpleDiffCriteria(); // static final DiffCriteria diffCriteria = new PublicDiffCriteria(); |