mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 07:08:01 +08:00
Do not complain if gasp does not exist.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-02-22 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
|
||||||
|
* gasp/gasp.exp: If gasp does not exist, do not complain, just
|
||||||
|
exit silently.
|
||||||
|
|
||||||
2002-02-20 Tom Rix <trix@redhat.com>
|
2002-02-20 Tom Rix <trix@redhat.com>
|
||||||
|
|
||||||
* gas/ppc/ppc.exp: Add xcoff booke tests.
|
* gas/ppc/ppc.exp: Add xcoff booke tests.
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# Test gasp.
|
# Test gasp.
|
||||||
|
|
||||||
|
# GASP is now deprecared (and not built by default)
|
||||||
|
# so if it does not exit, do not test it.
|
||||||
|
global GASP
|
||||||
|
if {![info exists GASP] || ! [file exists $GASP] } then {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
proc gasp_test { filename testname opt } {
|
proc gasp_test { filename testname opt } {
|
||||||
global GASP
|
global GASP
|
||||||
global srcdir
|
global srcdir
|
||||||
|
Reference in New Issue
Block a user