aboutsummaryrefslogtreecommitdiff
path: root/scripts/test
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2024-12-18 01:54:37 +0100
committerTheo Buehler <tb@openbsd.org>2024-12-18 01:54:37 +0100
commitc8bb0114707a17ddb2d4a7a62deef2622252a05e (patch)
tree9611d80cb3608d57d1402ecc80e0aa27aa563047 /scripts/test
parent6ac24f23c9fb1e486eae02babbce230b3ebd23ae (diff)
parent12031e4e9a1f46ae41d936e2f1a5261a95cb85f8 (diff)
downloadportable-c8bb0114707a17ddb2d4a7a62deef2622252a05e.tar.gz
portable-c8bb0114707a17ddb2d4a7a62deef2622252a05e.tar.bz2
portable-c8bb0114707a17ddb2d4a7a62deef2622252a05e.zip
Land #1229 - unset CC only for mingw and arm32
Diffstat (limited to 'scripts/test')
-rwxr-xr-xscripts/test13
1 files changed, 8 insertions, 5 deletions
diff --git a/scripts/test b/scripts/test
index e389728..1fb02eb 100755
--- a/scripts/test
+++ b/scripts/test
@@ -2,7 +2,14 @@
2set -e 2set -e
3set -x 3set -x
4 4
5unset CC 5if [ "$ARCH" = "" ]; then
6 ARCH=`uname -m`
7fi
8
9if [ "$ARCH" = "mingw32" -o "$ARCH" = "mingw64" -o "$ARCH" = "arm32" ]; then
10 unset CC
11fi
12
6ENABLE_ASM="${ENABLE_ASM:=ON}" 13ENABLE_ASM="${ENABLE_ASM:=ON}"
7 14
8if type apt-get >/dev/null 2>&1; then 15if type apt-get >/dev/null 2>&1; then
@@ -15,10 +22,6 @@ fi
15 22
16VERSION=`cat VERSION` 23VERSION=`cat VERSION`
17 24
18if [ "$ARCH" = "" ]; then
19 ARCH=`uname -m`
20fi
21
22# test macOS 25# test macOS
23if [ `uname` = "Darwin" ]; then 26if [ `uname` = "Darwin" ]; then
24 # test autotools 27 # test autotools