diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2012-02-11 20:02:03 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2012-02-11 20:02:03 +0000 |
commit | aa83d1ec50580e15fe002044c8d8babb6da8a4c0 (patch) | |
tree | ce7c32fd204bf68c4be6141836c90599b30b2f96 /binutils/testsuite | |
parent | 98872a7c392dee50629a3cb54b85db4d904cae1c (diff) | |
download | gdb-aa83d1ec50580e15fe002044c8d8babb6da8a4c0.zip gdb-aa83d1ec50580e15fe002044c8d8babb6da8a4c0.tar.gz gdb-aa83d1ec50580e15fe002044c8d8babb6da8a4c0.tar.bz2 |
ChangeLog binutils
2012-02-11 Kai Tietz <ktietz@redhat.com>
PR binutils/13657
* defparse.y (%union): New type id_const.
(opt_name2): New rule.
(keyword_as_name): New rule.
(opt_name): Adjust rule.
(opt_import_name): Likewise.
(opt_equal_name): Likewise.
ChangeLog binutils/testsuite
2012-02-11 Kai Tietz <ktietz@redhat.com>
* binutils-all/version.def: New file.
* binutils-all/dlltool.exp: Add version-dll test.
ChangeLog ld
2012-02-11 Kai Tietz <ktietz@redhat.com>
* deffilep.y (%union): New type id_const.
(opt_name2): New rule.
(keyword_as_name): New rule.
(dot_name): Replaced by opt_name2 rule.
(opt_name): Adjust rule.
(opt_equal_name): Likewise.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/dlltool.exp | 11 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/version.def | 17 |
3 files changed, 33 insertions, 0 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 6f59baf..604c824 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-02-11 Kai Tietz <ktietz@redhat.com> + + * binutils-all/version.def: New file. + * binutils-all/dlltool.exp: Add version-dll test. + 2012-02-02 Nick Clifton <nickc@redhat.com> * binutils-all/readelf.n: Add #pass to cope with targets that add diff --git a/binutils/testsuite/binutils-all/dlltool.exp b/binutils/testsuite/binutils-all/dlltool.exp index 5a19cf2..1493e6e 100644 --- a/binutils/testsuite/binutils-all/dlltool.exp +++ b/binutils/testsuite/binutils-all/dlltool.exp @@ -53,6 +53,17 @@ if { "$target_xfail" == "yes" } { setup_xfail *-* } +verbose "$DLLTOOL -l libversion.a --def $srcdir/$subdir/version.def" 1 +catch "exec $DLLTOOL -l libersion.a --def $srcdir/$subdir/version.def" err + +if ![string match "" $err] then { + send_log "$err\n" + verbose "$err" 1 + fail "dlltool (version.dll)" +} else { + pass "dlltool (version.dll)" +} + verbose "$DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1 catch "exec $DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err diff --git a/binutils/testsuite/binutils-all/version.def b/binutils/testsuite/binutils-all/version.def new file mode 100644 index 0000000..ce1c4b5 --- /dev/null +++ b/binutils/testsuite/binutils-all/version.def @@ -0,0 +1,17 @@ +LIBRARY VERSION.dll +EXPORTS +GetFileVersionInfoA1 +GetFileVersionInfoSizeA2 +GetFileVersionInfoSizeW3 +GetFileVersionInfoW4 +VerFindFileA5 +VerFindFileW6 +VerInstallFileA7 +VerInstallFileW8 +VerLanguageNameA9 +VerLanguageNameW10 +VerQueryValueA11 +VerQueryValueIndexA12 +VerQueryValueIndexW13 +VerQueryValueW14 + |