Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-01-20 13:28:04 +0000
committerSravan Kumar Lakkimsetti2017-01-20 13:29:43 +0000
commit6d60fc8fc49d1173f307a5b422a5d39b0dcdd5f0 (patch)
treea35cc214cf0fbad2b6420fa3d675d2e1bc69df4d /production/testScripts/configuration/sdk.tests
parentd0c431f5c514108b6b778e032e4f75b7258b0a9f (diff)
downloadeclipse.platform.releng.aggregator-6d60fc8fc49d1173f307a5b422a5d39b0dcdd5f0.tar.gz
eclipse.platform.releng.aggregator-6d60fc8fc49d1173f307a5b422a5d39b0dcdd5f0.tar.xz
eclipse.platform.releng.aggregator-6d60fc8fc49d1173f307a5b422a5d39b0dcdd5f0.zip
Bug 510751 - Update linux test results page with GTK version used
- Added gtk version information to console logs Change-Id: I51cd51c9c11c5937785aca163931cd160388a1f5 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/testScripts/configuration/sdk.tests')
-rwxr-xr-xproduction/testScripts/configuration/sdk.tests/testScripts/runtests.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/runtests.sh b/production/testScripts/configuration/sdk.tests/testScripts/runtests.sh
index aba81af1c..c0502b557 100755
--- a/production/testScripts/configuration/sdk.tests/testScripts/runtests.sh
+++ b/production/testScripts/configuration/sdk.tests/testScripts/runtests.sh
@@ -27,7 +27,14 @@ then
echo "ERROR: No JVM define, or the defined one was found to not be executable"
exit 1
fi
-echo "jvm: $jvm"
+#Extract GTK Version and host name
+
+gtkType=$(echo ${testedPlatform}|cut -d- -f4|cut -d_ -f1)
+gtkVersion=$(rpm -q ${gtkType}|cut -d- -f2)
+
+echo "Jvm : ${jvm}"
+echo "Host : $(hostname)"
+echo "GTK Version: ${gtkVersion}"
stableEclipseInstallLocation=${stableEclipseInstallLocation:-${WORKSPACE}/workarea/${buildId}/eclipse-testing/platformLocation/}
# Note: test.xml will "reinstall" fresh install of what we are testing,

Back to the top