ftmemsim-valgrind/tests/check_isa-2_06_cap
Julian Seward 438a573452 Mark this as executable. Followup for #267630.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11698
2011-04-15 12:33:14 +00:00

12 lines
207 B
Bash
Executable File

#!/bin/sh
# We use this script to check whether or not the processor supports Power ISA 2.06.
LD_SHOW_AUXV=1 /bin/true | grep arch_2_06 > /dev/null 2>&1
if [ "$?" -ne "0" ]; then
exit 1
else
exit 0
fi