aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-08-20 01:52:40 +0200
committerSven Gothel <[email protected]>2019-08-20 01:52:40 +0200
commita17e86a07e53e47c778c6e36341c6c0e6874991e (patch)
tree21b56badc2fbc6333f52349dfe05aeb43103ef3f
parent7ec068e0c95a230101450cc80031f76770a0cd49 (diff)
Reverting erroneous junit-test task condition (ant build)
as introduced while hacking on iOS. - Builds on MacOS, Windows and GNU/Linux now. - All but 2 tests passed on Windows - GNU/Linux AMD GPU regression -- 1) No compat profiles on X11 device -- 2) Remaining core only profiles disclose buggy GLProfile selection -- This needs to be fixed pre-release
-rw-r--r--make/build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/build.xml b/make/build.xml
index 876d8be60..4ed5d77d5 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -20,15 +20,15 @@
<ant antfile="build-test.xml" target="test.compile" inheritRefs="true" inheritAll="true"/>
</target>
- <target name="test.auto.run" description="Run automated tests (junit and others) in nativewindow, jogl and newt projects" if="${build.dynamiclibs}">
+ <target name="test.auto.run" description="Run automated tests (junit and others) in nativewindow, jogl and newt projects">
<ant antfile="build-test.xml" target="test.auto.run" inheritRefs="true" inheritAll="true"/>
</target>
- <target name="junit.run" description="Run automated junit tests in nativewindow, jogl and newt projects" if="${build.dynamiclibs}">
+ <target name="junit.run" description="Run automated junit tests in nativewindow, jogl and newt projects">
<ant antfile="build-test.xml" target="junit.run" inheritRefs="true" inheritAll="true"/>
</target>
- <target name="test.manual.run" description="Run manual operated tests in nativewindow, jogl and newt projects" if="${build.dynamiclibs}">
+ <target name="test.manual.run" description="Run manual operated tests in nativewindow, jogl and newt projects">
<ant antfile="build-test.xml" target="test.manual.run" inheritRefs="true" inheritAll="true"/>
</target>