Blob


1 #!/bin/sh
2 #
3 # Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 test_init()
18 {
19 local testname="$1"
20 local no_tree="$2"
21 if [ -z "$testname" ]; then
22 echo "No test name provided" >&2
23 return 1
24 fi
25 local testroot=`mktemp -d "$GOTD_TEST_ROOT/gotd-test-$testname-XXXXXXXX"`
26 mkdir $testroot/repo
27 git_init $testroot/repo
28 if [ -z "$no_tree" ]; then
29 make_test_tree $testroot/repo
30 (cd $repo && git add .)
31 git_commit $testroot/repo -m "adding the test tree"
32 fi
33 echo "$testroot"
34 }
36 test_done()
37 {
38 local testroot="$1"
39 local result="$2"
40 if [ "$result" = "0" ]; then
41 test_cleanup "$testroot" || return 1
42 if [ -z "$GOT_TEST_QUIET" ]; then
43 echo "ok"
44 fi
45 elif echo "$result" | grep -q "^xfail"; then
46 # expected test failure; test reproduces an unfixed bug
47 echo "$result"
48 test_cleanup "$testroot" || return 1
49 else
50 echo "test failed; leaving test data in $testroot"
51 fi
52 }