# HG changeset patch # User Oben Sonne # Date 1573230075 -3600 # Fri Nov 08 17:21:15 2019 +0100 # Node ID 09156e2f41d1212f928e9025398d9da442c9c3f3 # Parent 9554b557ca07b347089321b866be075f0b93e7ce Fix test runner (use bash, not sh) diff --git a/tests/run.sh b/tests/run.sh --- a/tests/run.sh +++ b/tests/run.sh @@ -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`