Add support for filling / thindrawing raw polygons to the HID interface
[geda-pcb/gde.git] / src / pcbtest.sh.in
blobc7dfe8de8e3cf98ab7fe94f8e1b83f3e1d658439
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 ../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 if [ "X$1" = "X-gdb" ]; then
44 shift
45 tmpd=/tmp/pcbtest.$$
46 tmpf=${tmpd}/pcbtest.gdb
47 mkdir -p -m 0700 ${tmpd}
48 rc=$?
49 if test $rc -ne 0 ; then
50 echo "$0: Could not create ${tmpd} with mode = 0700"
51 echo " mkdir returned $rc"
52 exit 1
54 echo set args $TEST_PATHS $TEST_CMDS "$@" > $tmpf
55 exec gdb -x $tmpf ./pcb
56 rm -fr $tmpd
57 else
58 exec ./pcb $TEST_PATHS $TEST_CMDS "$@"