From f741491272812ce20764eef0bcb1917beda3f309 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 11 Mar 2019 10:46:40 +0100 Subject: Use system-provided triehash --- triehash/tests/run-tests.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 triehash/tests/run-tests.sh (limited to 'triehash/tests/run-tests.sh') diff --git a/triehash/tests/run-tests.sh b/triehash/tests/run-tests.sh deleted file mode 100755 index b9c1ec309..000000000 --- a/triehash/tests/run-tests.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -DIR=$(dirname $(readlink -f $0)) - -# Let's go into triehash.pl's dir -cd $(dirname "$DIR") - -rm -rf cover_db - -count=$(cd "$DIR" && echo test-* | wc -w) -i=1 - -for test in $DIR/test-*; do - echo "[$i/$count] Running testcase $test" - if ! $test > test.summary 2>&1; then - cat test.summary - exit 1 - fi - i=$((i + 1)) -done - - -cover -- cgit v1.2.3