Home | History | Annotate | Download | only in tests
      1 #!/bin/sh
      2 
      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.
      6 
      7 UNAME_M="$(uname -m)"
      8 
      9 if [ $UNAME_M != "ppc64le" ]; then
     10 	exit 1
     11 else
     12 	exit 0
     13 fi
     14 
     15