Subject: [MTT users] MTT on PPC64
From: Adrian Reber (adrian_at_[hidden])
Date: 2014-08-07 10:49:39


I was trying to run MTT on ppc64 and it complained that I need to write
a patch. Since the name 'Fedora Core' does not exist anymore (since
Fedora 7) I have following patch for MTT:

diff --git a/client/whatami/whatami b/client/whatami/whatami
index b4c50f5..aa275f0 100755
--- a/client/whatami/whatami
+++ b/client/whatami/whatami
@@ -295,9 +295,9 @@ get_linux_type()
                 elif [ -n "`egrep 'Tao Linux release 1 ' /etc/issue`" ]; then
                         distro=tao_1.0
 
- elif [ -n "`egrep 'Fedora Core ' /etc/issue`" ]; then
+ elif [ -n "`egrep 'Fedora ' /etc/issue`" ]; then
                         distro_brand=fc
- distro_version=`grep 'Fedora Core ' /etc/issue | sed -e 's/Fedora Core release \([0-9]*\).*/\1/' `
+ distro_version=`grep 'Fedora ' /etc/issue | sed -e 's/Fedora release \([0-9]*\).*/\1/' `
                         distro=${distro_brand}${distro_version}
 
                 elif [ -n "`egrep 'White Box Enterprise Linux release 3.0' /etc/issue`" ]; then

Is there interest to get my ppc64 results submitted
into the mtt database? And which tests should I be running.
Based on the .ini I got from Christoph I am now running

http://svn.open-mpi.org/svn/ompi-tests/trunk/mpi_test_suite/

and

https://svn.open-mpi.org/svn/ompi-tests/trunk/intel_tests

anything else?

                Adrian