]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Patch 3 of 7, improve PPC HW capabiltiy checking.
authorCarl Love <cel@us.ibm.com>
Mon, 20 Jul 2015 20:36:47 +0000 (20:36 +0000)
committerCarl Love <cel@us.ibm.com>
Mon, 20 Jul 2015 20:36:47 +0000 (20:36 +0000)
The patch was submitted by Will Schmidt  (will_schmidt@vnet.ibm.com).

remove unused capability checking scripts.
these have been replaced by the check_ppc64_auxv_cap script.

change tests/check_ppc64_auxv_cap to executable.  Tried to make it
executable on the last commit but for some reason it didn't seem to suceed.

Bugzilla 34979

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15422

tests/Makefile.am
tests/check_dfp_cap [deleted file]
tests/check_isa-2_06_cap [deleted file]
tests/check_isa-2_07_cap [deleted file]
tests/check_ppc64_auxv_cap [changed mode: 0644->0755]
tests/check_vmx_cap [deleted file]

index 07f3d6463883e13503c04d2d1139e0827a58f8cc..708c28ee7eda66c5b65f5f5671cf595f65a2f5d4 100644 (file)
@@ -3,11 +3,7 @@ include $(top_srcdir)/Makefile.tool-tests.am
 
 dist_noinst_SCRIPTS = \
        check_headers_and_includes \
-       check_isa-2_06_cap \
-       check_isa-2_07_cap \
        check_makefile_consistency \
-       check_dfp_cap \
-       check_vmx_cap \
        check_ppc64_auxv_cap \
        filter_addresses \
        filter_discards \
diff --git a/tests/check_dfp_cap b/tests/check_dfp_cap
deleted file mode 100755 (executable)
index d9bc273..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports Decimal Floating Point (DFP).
-
-LD_SHOW_AUXV=1 /bin/true | grep  dfp > /dev/null 2>&1
-if [ "$?" -ne "0" ]; then
-        exit 1
-else
-        exit 0
-fi
diff --git a/tests/check_isa-2_06_cap b/tests/check_isa-2_06_cap
deleted file mode 100755 (executable)
index 68401fc..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports Power ISA 2.06 or later.
-DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 /bin/true | grep  arch_2_06 > /dev/null 2>&1
-
-if [ "$?" -ne "0" ]; then
-       exit 1
-else
-       exit 0
-fi
-
diff --git a/tests/check_isa-2_07_cap b/tests/check_isa-2_07_cap
deleted file mode 100755 (executable)
index e268d73..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports
-# Power ISA 2.07.
-DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 /bin/true | grep  arch_2_07 > /dev/null 2>&1
-
-if [ "$?" -ne "0" ]; then
-       exit 1
-else
-       exit 0
-fi
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/tests/check_vmx_cap b/tests/check_vmx_cap
deleted file mode 100755 (executable)
index 12e5f68..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports VMX (aka "Altivec").
-
-LD_SHOW_AUXV=1 /bin/true | grep altivec > /dev/null 2>&1
-if [ "$?" -ne "0" ]; then
-       exit 1
-else
-       exit 0
-fi
-