forked from LibreDWG/libredwg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rw.in
53 lines (51 loc) · 1.3 KB
/
rw.in
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
#!/bin/sh
# create -v3 logs and dwg's with dwgrewrite
srcdir="@srcdir@"
top_builddir="@top_builddir@"
CFLAGS="@CFLAGS@"
timeout="@TIMEOUT_30@"
case "$CFLAGS" in
*-DDEBUG_CLASSES*) timeout= ;;
*) ;;
esac
make -s -j4 -C src
make -s -j4 -C programs dwgrewrite
@DSYMUTIL@ programs/dwgrewrite
v=-v3
# dummy to please shellcheck
test -z "$v" && echo $top_builddir
args=
ob="$b"
for d in "$@"; do
case $d in
-v*) v="$d" ;;
--as=*) args="$args $d" ;;
*)
if [ ! -f "$d" ]; then
if [ -f "$srcdir/test/test-data/$d" ]
then
d="$srcdir/test/test-data/$d";
else
if [ -f "$srcdir/test/test-data/$d.dwg" ]
then
d="$srcdir/test/test-data/$d.dwg"
fi
fi
fi
xd=$(dirname "$d")
dir="_$(basename "$xd")"
if [ "$dir" = "_test-data" ]; then dir=""; fi
if [ "$dir" = "_td" ]; then dir=""; fi
if [ "$dir" = "_." ]; then dir=""; fi
b=$(basename "$d" .dwg)
log="$b$dir.rw.log"
echo "$timeout @LTEXEC@ programs/dwgrewrite $args $v $d 2>$log"
# shellcheck disable=SC2086
$timeout @LTEXEC@ programs/dwgrewrite $args "$v" "$d" 2>"$log"
tail "$log"
;;
esac
done
args=
v=
b=$ob