This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Deprecate GASP tests.


Hi Guys,

  When I removed GASP from the programs built by default in the GAS
  directory, I forgot to disable the GASP tests in the testsuite as
  well.  Fix by applying the patch below.

Cheers
        Nick

2002-02-22  Nick Clifton  <nickc@cambridge.redhat.com>

	* gasp/gasp.exp: If gasp does not exist, do not complain, just
	exit silently.

Index: gas/testsuite/gasp/gasp.exp
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gasp/gasp.exp,v
retrieving revision 1.1.1.1
diff -c -3 -p -w -r1.1.1.1 gasp.exp
*** gasp.exp	1999/05/03 07:28:53	1.1.1.1
--- gasp.exp	2002/02/22 11:35:35
***************
*** 1,5 ****
--- 1,12 ----
  # 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 }  {
      global GASP
      global srcdir


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]