diff options
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/dlltool.exp | 12 |
2 files changed, 17 insertions, 0 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 8f3473a..6e1d33d 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-07-12 Nick Clifton <nickc@redhat.com> + + * binutils-all/dlltool.exp: Check that the -p switch is not + rejected. + 2004-07-09 Andreas Schwab <schwab@suse.de> * binutils-all/m68k/movem.s: New file. diff --git a/binutils/testsuite/binutils-all/dlltool.exp b/binutils/testsuite/binutils-all/dlltool.exp index f061ab8..ba758df 100644 --- a/binutils/testsuite/binutils-all/dlltool.exp +++ b/binutils/testsuite/binutils-all/dlltool.exp @@ -45,3 +45,15 @@ if ![string match "" $err] then { } pass "dlltool (fastcall export)" + +verbose "$DLLTOOL -p foo -d $srcdir/$subdir/fastcall.def" 1 +catch "exec $DLLTOOL -p foo -d $srcdir/$subdir/fastcall.def" err + +if ![string match "" $err] then { + send_log "$err\n" + verbose "$err" 1 + fail "dlltool (aliased export)" + continue +} + +pass "dlltool (aliased export)" |