X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=performance-test%2Fnotmuch-perf-test;fp=performance-test%2Fnotmuch-perf-test;h=0000000000000000000000000000000000000000;hb=047cd7a595f760a23415b9e38d7136325f28b114;hp=fc39d8a97d35686cfcfcb4a82c993120d6fe9ff0;hpb=f43b23f8e02dfd973a17e02d60f1e14e8b9da301;p=obsolete%2Fnotmuch-old diff --git a/performance-test/notmuch-perf-test b/performance-test/notmuch-perf-test deleted file mode 100755 index fc39d8a9..00000000 --- a/performance-test/notmuch-perf-test +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -# Run tests -# -# Copyright (c) 2005 Junio C Hamano -# -# Adapted from a Makefile to a shell script by Carl Worth (2010) - -if [ ${BASH_VERSINFO[0]} -lt 4 ]; then - echo "Error: The notmuch test suite requires a bash version >= 4.0" - echo "due to use of associative arrays within the test suite." - echo "Please try again with a newer bash (or help us fix the" - echo "test suite to be more portable). Thanks." - exit 1 -fi - -cd $(dirname "$0") - -TESTS=" - 00-new - 01-dump-restore - 02-tag -" - -for test in $TESTS; do - ./$test "$@" -done