+Tue May 17 14:04:05 1994 Bill Cox (bill@rtl.cygnus.com)
+
+ * config/default.exp, config/unix.exp: Replace error
+ proc calls with perror.
+
Tue May 10 11:20:54 1994 Stan Shebs (shebs@andros.cygnus.com)
* configure.in (sparclite): Match on sparclite*-*-*.
global NM
if ![info exists NM] then {
- set NM [transform nm]
+ set NM [findfile $base_dir/../nm]
}
global NMFLAGS
if ![info exists NMFLAGS] then {
}
global SIZE
if ![info exists SIZE] then {
- set SIZE [transform size]
+ set SIZE [findfile $base_dir/../size]
}
global SIZEFLAGS
if ![info exists SIZEFLAGS] then {
}
global OBJDUMP
if ![info exists OBJDUMP] then {
- set OBJDUMP [transform objdump]
+ set OBJDUMP [findfile $base_dir/../objdump]
}
global OBJDUMPFLAGS
if ![info exists OBJDUMPFLAGS] then {
# within the tests themselves
#
expect_before {
- buffer_full { error "internal buffer is full." }
- "can't open '*'" { error "Can't open test file." }
+ buffer_full { perror "internal buffer is full." }
+ "can't open '*'" { perror "Can't open test file." }
}
# within the tests themselves
#
expect_before {
- buffer_full { error "internal buffer is full." }
- "can't open '*'" { error "Can't open test file." }
+ buffer_full { perror "internal buffer is full." }
+ "can't open '*'" { perror "Can't open test file." }
}