aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/interop1.cond
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/interop1.cond')
-rw-r--r--test/regression/interop1.cond10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regression/interop1.cond b/test/regression/interop1.cond
new file mode 100644
index 00000000..77904189
--- /dev/null
+++ b/test/regression/interop1.cond
@@ -0,0 +1,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