Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-08-17 08:37:11 +0000
committerDavid Williams2015-08-17 08:37:11 +0000
commitd10ae2445d6b6a7278a0d41bf6f06e2dd533d5e6 (patch)
treedff4afd3b6b4d215bb20d654a529b7ece04885f6 /eclipse.platform.releng.tychoeclipsebuilder
parent248aad5bce0da5e18e5389548bb6186026403b93 (diff)
downloadeclipse.platform.releng.aggregator-d10ae2445d6b6a7278a0d41bf6f06e2dd533d5e6.tar.gz
eclipse.platform.releng.aggregator-d10ae2445d6b6a7278a0d41bf6f06e2dd533d5e6.tar.xz
eclipse.platform.releng.aggregator-d10ae2445d6b6a7278a0d41bf6f06e2dd533d5e6.zip
Bug 437069 - make runtests.sh (and other files) identical
Fixes for undefined variables, and similar.
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder')
-rwxr-xr-xeclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh b/eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh
new file mode 100755
index 000000000..9d1ad188e
--- /dev/null
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+
+# Utility to copy current and previous rversions of SDK and platform binary to the expected location.
+# some parts expected to be temporary, until 'installDir' and 'testDir'
+# correctly or redefined.
+
+
+mkdir -p workarea/${buildId}/eclipse-testing
+#cp /home/files/buildzips/mars/SR0/R-4.5-201506032000/eclipse-SDK-4.5-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/
+cp /home/files/buildzips/mars/SR0/R-4.5-201506032000/eclipse-platform-4.5-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/platformLocation/
+
+cp ../../eclipse-SDK-${buildId}-linux-gtk-x86_64.tar.gz workarea/${buildId}/eclipse-testing/
+
+cp eclipse-junit-tests-${buildId}.zip workarea/${buildId}/eclipse-testing/
+
+cp library.xml workarea/${buildId}/eclipse-testing/
+cp JUNIT.XSL workarea/${buildId}/eclipse-testing/

Back to the top