5 # PCB, interactive printed circuit board design
6 # Copyright (C) 1994,1995,1996 Thomas Nau
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
27 # starts a test installation of pcb
31 # If the first argument is "-gdb" then run PCB inside the gdb
34 # Use --g-fatal-warnings with the gtk HID to cause gtk-WARNING's to
37 TEST_PATHS
="--lib-path @TOP_BUILDDIR@/lib --lib-newlib @TOPSRCDIR@/newlib:@TOPSRCDIR@/lib/pcblib-newlib --element-path @TOP_BUILDDIR@/lib --font-path @TOPSRCDIR@/src"
38 TEST_CMDS
="--lib-command-dir @TOP_BUILDDIR@/lib"
40 # note: To do command line exporting, pcb requires the "-x <export_hid>" command to appear first. For example
42 # pcb -x bom [other args] pcbfile
46 # pcb [other args] -x bom pcbfile
53 while test $# -ne 0 ; do
72 # build up the complete argument list
73 arg_list
="$export_args $TEST_PATHS $TEST_CMDS $args"
75 if test $use_gdb = yes ; then
76 tmpf
=/tmp
/pcbtest.$$.gdb
78 set args $arg_list "$file"
80 gdb
-x $tmpf @TOP_BUILDDIR@
/src
/pcb
83 exec @TOP_BUILDDIR@
/src
/pcb
$arg_list "$file"