-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
svg.in
70 lines (67 loc) · 1.72 KB
/
svg.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
# create -v3 logs and SVG from dwg's with dwg2SVG
srcdir="@srcdir@"
top_builddir="@top_builddir@"
timeout="@TIMEOUT_10@"
TESTS_ENVIRONMENT="@AM_TESTS_ENVIRONMENT@"
if [ -n "$VALGRIND" ] && [ -n "$LOG_COMPILER" ]; then
TESTPROG="$LOG_COMPILER $LOG_FLAGS"
elif [ -n "@WINE@" ]; then
TESTPROG="@WINE@"
elif [ -n "$TESTS_ENVIRONMENT" ]; then
TESTPROG="$TESTS_ENVIRONMENT @LTEXEC@"
else
TESTPROG="@LTEXEC@"
fi
make -s -C src
make -s -C programs dwg2SVG
if [ -n "@DSYMUTIL@" ]; then
@DSYMUTIL@ programs/dwg2SVG
fi
v=-v3
# dummy to please shellcheck
test -z "$v" && echo $top_builddir
out=
ob="$b"
gerr=0
case "$CFLAGS" in
*-DDEBUG_CLASSES*) timeout="" ;;
*) ;;
esac
for d in "$@"; do
case $d in
-v*)
v="$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.svg.log"
out="$b$dir.svg"
echo "$timeout $TESTPROG programs/dwg2SVG $v $d \>$out 2\>$log"
# shellcheck disable=SC2086
$timeout $TESTPROG programs/dwg2SVG "$v" "$d" >"$out" 2>"$log"
err=$?
[ $err -gt $gerr ] && gerr=$err
tail -n2 "$log"
echo "@RUN_JING@ $out"
@RUN_JING@ "$out"
;;
esac
done
v=
b="$ob"
if [ $gerr -gt 128 ]; then exit 1; fi