aboutsummaryrefslogtreecommitdiffstats
path: root/bridge
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2018-09-29 07:47:57 -0700
committerAndy Clement <aclement@pivotal.io>2018-09-29 07:47:57 -0700
commitf6d9aaaf05eca3aaf06d3a769a83f302b0501dca (patch)
treef2f8b3c99f0bd2a77a570f1bf230c2d7aca23647 /bridge
parent8aeb774d210a42240f2d6d89dd89e947a084fd7f (diff)
downloadaspectj-f6d9aaaf05eca3aaf06d3a769a83f302b0501dca.tar.gz
aspectj-f6d9aaaf05eca3aaf06d3a769a83f302b0501dca.zip
1.9.2.RC1 changesV1_9_2_RC1
Diffstat (limited to 'bridge')
-rw-r--r--bridge/testsrc/org/aspectj/bridge/VersionTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/testsrc/org/aspectj/bridge/VersionTest.java b/bridge/testsrc/org/aspectj/bridge/VersionTest.java
index f3a0a3ea8..cee4c8450 100644
--- a/bridge/testsrc/org/aspectj/bridge/VersionTest.java
+++ b/bridge/testsrc/org/aspectj/bridge/VersionTest.java
@@ -18,6 +18,8 @@ import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
+import org.aspectj.util.LangUtil;
+
import junit.framework.TestCase;
import junit.textui.TestRunner;
@@ -43,6 +45,9 @@ public class VersionTest extends TestCase {
}
public void testVersion() {
+ if (LangUtil.is11VMOrGreater()) {
+ return;
+ }
if (Version.time_text.equals("")) {
return; // dev build, we can only test this on the build server.
}