src/hid/lesstif/menu.c: Added doxygen comments for GetXY().
[geda-pcb/pcjc2.git] / src / pcbtest.sh.in
blob5bc9717ca35e0c2088c6c893496c38795a31fa19
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
27 # starts a test installation of pcb
29 # execute pcb
31 # If the first argument is "-gdb" then run PCB inside the gdb
32 # debugger.
34 # Use --g-fatal-warnings with the gtk HID to cause gtk-WARNING's to
35 # abort.
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
44 # as opposed to
46 # pcb [other args] -x bom pcbfile
49 use_gdb=no
50 args=""
51 export_args=""
53 while test $# -ne 0 ; do
54 case $1 in
55 -gdb)
56 use_gdb=yes
58 -x)
59 export_args="$1 $2"
60 shift
62 *.pcb)
63 file="$1"
66 args="$args $1"
68 esac
69 shift
70 done
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
77 cat > $tmpf << EOF
78 set args $arg_list "$file"
79 EOF
80 gdb -x $tmpf @TOP_BUILDDIR@/src/pcb
81 rm -f $tmpf
82 else
83 exec @TOP_BUILDDIR@/src/pcb $arg_list "$file"