Fix test runner (use bash, not sh)
1 files changed, 2 insertions(+), 2 deletions(-) M tests/run.sh
M tests/run.sh +2 -2
@@ 1,6 1,6 @@ -#!/bin/sh +#!/bin/bash -LC_MESSAGES=C sh test.sh | sed -e "s,/.*/tenv,./tenv," > test.out +LC_MESSAGES=C bash test.sh | sed -e "s,/.*/tenv,./tenv," > test.out ERR=`diff -u test.exp test.out`