Introduce POLYGONHOLE_MODE for creating holes in polygons
[geda-pcb/gde.git] / src / pcbtest.sh.in
blobe1e97b276dac6b4acb19237b927d19cb2313868a
1 #! /bin/sh
3 # COPYRIGHT
4 #
5 # PCB, interactive printed circuit board design
6 # Copyright (C) 1994,1995,1996 Thomas Nau
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 # Contact addresses for paper mail and Email:
23 # Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
24 # Thomas.Nau@rz.uni-ulm.de
26 # RCS: $Id$
30 # starts a test installation of pcb
32 # execute pcb
34 # If the first argument is "-gdb" then run PCB inside the gdb
35 # debugger.
37 # Use --g-fatal-warnings with the gtk HID to cause gtk-WARNING's to
38 # abort.
40 TEST_PATHS="--lib-path @TOP_BUILDDIR@/lib --lib-newlib @TOPSRCDIR@/newlib:@TOP_BUILDDIR@/lib/pcblib-newlib --element-path @TOP_BUILDDIR@/lib --font-path @TOPSRCDIR@/src"
41 TEST_CMDS="--lib-command-dir @TOP_BUILDDIR@/lib"
43 # note: To do command line exporting, pcb requires the "-x <export_hid>" command to appear first. For example
45 # pcb -x bom [other args] pcbfile
47 # as opposed to
49 # pcb [other args] -x bom pcbfile
52 use_gdb=no
53 if [ "X$1" = "X-gdb" ]; then
54 use_gdb=yes
55 shift
58 args=""
59 export_args=""
61 while test $# -ne 0 ; do
62 case $1 in
63 -x)
64 export_args="$1 $2"
65 shift 2
68 args="$args $1"
69 shift
71 esac
72 done
74 # build up the complete argument list
75 arg_list="$export_args $TEST_PATHS $TEST_CMDS $args"
77 if test $use_gdb = yes ; then
78 tmpd=/tmp/pcbtest.$$
79 tmpf=${tmpd}/pcbtest.gdb
80 mkdir -p -m 0700 ${tmpd}
81 rc=$?
82 if test $rc -ne 0 ; then
83 echo "$0: Could not create ${tmpd} with mode = 0700"
84 echo " mkdir returned $rc"
85 exit 1
87 cat > $tmpf << EOF
88 set args $arg_list
89 EOF
90 exec gdb -x $tmpf ./pcb
91 rm -fr $tmpd
92 else
93 exec @TOP_BUILDDIR@/src/pcb $arg_list