mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
56258c6b7d
* create module API for forking child processes. * refactor duplicate code around creating and tracking forks by AOF and RDB. * child processes listen to SIGUSR1 and dies exitFromChild in order to eliminate a valgrind warning of unhandled signal. * note that BGSAVE error reply has changed. valgrind error is: Process terminating with default action of signal 10 (SIGUSR1)
18 lines
371 B
Bash
Executable File
18 lines
371 B
Bash
Executable File
#!/bin/sh
|
|
TCL_VERSIONS="8.5 8.6"
|
|
TCLSH=""
|
|
|
|
for VERSION in $TCL_VERSIONS; do
|
|
TCL=`which tclsh$VERSION 2>/dev/null` && TCLSH=$TCL
|
|
done
|
|
|
|
if [ -z $TCLSH ]
|
|
then
|
|
echo "You need tcl 8.5 or newer in order to run the Redis test"
|
|
exit 1
|
|
fi
|
|
|
|
make -C tests/modules && \
|
|
$TCLSH tests/test_helper.tcl --single unit/moduleapi/commandfilter --single unit/moduleapi/fork "${@}"
|
|
|