valgrind-monitor.py regular expressions should use raw strings
[valgrind.git] / tests / check_ppc64le_cap
blob9f4888834b9b3aaab589ccf2f22c1f57b0bc67cf
1 #!/bin/sh
3 # Helper script to indicate if we are ppc64 LE.
4 # Note: The ELFV2 ABI (for ppc64le) specifically does not
5 # support the 32-bit environment.
7 UNAME_M="$(uname -m)"
9 if [ $UNAME_M != "ppc64le" ]; then
10 exit 1
11 else
12 exit 0