-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddtest.zsh
executable file
·59 lines (43 loc) · 920 Bytes
/
addtest.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/zsh
set -eu
setopt extendedglob
scriptname=$0:a
thisdir=$0:a:h
basetest=$thisdir/1
function die { echo 1>&2 $*; exit 1 }
function usage {
cat 1>&2 <<EOF; exit
Usage: ${scriptname:t} [-h | -x]
Creates a new test directory.
By default, just print what it will do.
When -x is given, it really creates new dir.
EOF
}
#========================================
zparseopts -D x=o_execute h=o_help
function run {
print -- $@
if (($#o_execute)); then
"$@"
fi
}
if (($#o_help)); then
usage
fi
if ! (($#o_execute)); then
cat <<EOF
# Dry run mode. (Nothing will be changed.)
EOF
fi
#========================================
tests=($thisdir/<1->(N))
newdir=$thisdir/$[$#tests+1]
for f in $newdir/{html,extlib}; do
run mkdir -p $f
done
run ln -vnsf ../../app.psgi $newdir/app.psgi
run $basetest/t/lntests.zsh $newdir/t
if (($#o_execute)); then
echo
echo CREATED: $newdir
fi