summaryrefslogtreecommitdiff
path: root/runtest-moduleapi
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2020-12-13 17:09:54 +0200
committerGitHub <noreply@github.com>2020-12-13 17:09:54 +0200
commit86e3395c117d9450d52ee3ebbc62c386d11f1b79 (patch)
treef01054125b9bf5db15095382a318c8f7d45804d6 /runtest-moduleapi
parentf74c32cad27fcd078f7bb8517c87be178e7339eb (diff)
downloadredis-86e3395c117d9450d52ee3ebbc62c386d11f1b79.tar.gz
Several (mostly Solaris-related) cleanups (#8171)
* Allow runtest-moduleapi use a different 'make', for systems where GNU Make is 'gmake'. * Fix issue with builds on Solaris re-building everything from scratch due to CFLAGS/LDFLAGS not stored. * Fix compile failure on Solaris due to atomicvar and a bunch of warnings. * Fix garbled log timestamps on Solaris.
Diffstat (limited to 'runtest-moduleapi')
-rwxr-xr-xruntest-moduleapi3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtest-moduleapi b/runtest-moduleapi
index da4c815da..9a48867d2 100755
--- a/runtest-moduleapi
+++ b/runtest-moduleapi
@@ -1,6 +1,7 @@
#!/bin/sh
TCL_VERSIONS="8.5 8.6"
TCLSH=""
+[ -z "$MAKE" ] && MAKE=make
for VERSION in $TCL_VERSIONS; do
TCL=`which tclsh$VERSION 2>/dev/null` && TCLSH=$TCL
@@ -12,7 +13,7 @@ then
exit 1
fi
-make -C tests/modules && \
+$MAKE -C tests/modules && \
$TCLSH tests/test_helper.tcl \
--single unit/moduleapi/commandfilter \
--single unit/moduleapi/fork \