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 \
26 "$GOTD_TEST_ROOT/gotd-test-$testname-XXXXXXXXXX"`
27 mkdir $testroot/repo
28 git_init $testroot/repo
29 if [ -z "$no_tree" ]; then
30 make_test_tree $testroot/repo
31 (cd $repo && git add .)
32 git_commit $testroot/repo -m "adding the test tree"
33 fi
34 echo "$testroot"
35 }
37 test_done()
38 {
39 local testroot="$1"
40 local result="$2"
41 if [ "$result" = "0" ]; then
42 test_cleanup "$testroot" || return 1
43 if [ -z "$GOT_TEST_QUIET" ]; then
44 echo "ok"
45 fi
46 elif echo "$result" | grep -q "^xfail"; then
47 # expected test failure; test reproduces an unfixed bug
48 echo "$result"
49 test_cleanup "$testroot" || return 1
50 else
51 echo "test failed; leaving test data in $testroot"
52 fi
53 }