Debian uses dash as /bin/sh which is pretty strict about syntax. It
didn't like the == in the test for strings in the test-wrapper.sh.
Replace by single =.
Signed-off-by: Mark Wielaard <mark@klomp.org>
+2020-10-31 Mark Wielaard <mark@klomp.org>
+
+ * test-wrapper.sh: Use =, not == for string compare.
+
2020-10-29 Mark Wielaard <mark@klomp.org>
* test-wrapper.sh: Determine whether the test is a script or not
# When it is a run-*.sh script the VALGRIND_CMD will be passed on
# otherwise we'll need to run the binary explicitly under valgrind.
-if [ "x$is_shell_script" == "xyes" ]; then
+if [ "x$is_shell_script" = xyes ]; then
exec "$@"
else
exec $VALGRIND_CMD "$@"