aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/interop1.cond
blob: 779041891273d1389fe2812a171db740be61b36e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
arch=`sed -n -e 's/^ARCH=//p' ../../Makefile.config`
model=`sed -n -e 's/^MODEL=//p' ../../Makefile.config`
system=`sed -n -e 's/^SYSTEM=//p' ../../Makefile.config`

case "$arch,$model,$system" in
  *,*,cygwin)  exit $SKIP;;
  x86,32sse2,*|arm,*,*|powerpc,*,*)  exit $RUN;;
  *) exit $SKIP;;
esac