tests: default: add wimp.json
[libquvi-scripts.git] / find-tests.sh
blobb74c0e1e4135d6386c36d26798f0ecdbe5292bd4
1 #!/bin/sh
3 # find-tests.sh for libquvi-scripts
4 # Copyright (C) 2011 Toni Gundogdu
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301 USA
21 set -e
22 dir=tests/t/
24 note()
26 echo "Run in the top source directory of libquvi-scripts"
27 exit 0
30 [ -d "$dir" ] || note
32 echo "The test suite runs all found tests ($dir*.t) by default. To skip
33 any of these tests, define them in the TEST_SKIP enviroment.
35 Tests found:"
36 find "$dir" -name '*.t' |
37 xargs grep test_skip |
38 perl -ne'/test_skip."(.*?)"/ && print " $1\n"'
39 echo "
40 Example:
41 mkdir tmp ; cd tmp ; ../configure --with-tests
42 env TEST_SKIP=mem,format_default script -c \"make check\""