[llvm] 08be746 - [llvm-dlltool] [test] Remove superfluous --coff-exports option to llvm-readobj. NFC.

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 17 03:02:50 PDT 2021


Author: Martin Storsjö
Date: 2021-06-17T13:02:34+03:00
New Revision: 08be746728d7de59b045681a4a0f6567f14adea3

URL: https://github.com/llvm/llvm-project/commit/08be746728d7de59b045681a4a0f6567f14adea3
DIFF: https://github.com/llvm/llvm-project/commit/08be746728d7de59b045681a4a0f6567f14adea3.diff

LOG: [llvm-dlltool] [test] Remove superfluous --coff-exports option to llvm-readobj. NFC.

The --coff-exports option to llvm-readobj prints the exported symbols
from a DLL/EXE, it doesn't do anything with regards to an import
library.

Differential Revision: https://reviews.llvm.org/D104214

Added: 
    

Modified: 
    llvm/test/tools/llvm-dlltool/coff-exports.def

Removed: 
    


################################################################################
diff  --git a/llvm/test/tools/llvm-dlltool/coff-exports.def b/llvm/test/tools/llvm-dlltool/coff-exports.def
index 743c6555e9fb..df7f0821cc56 100644
--- a/llvm/test/tools/llvm-dlltool/coff-exports.def
+++ b/llvm/test/tools/llvm-dlltool/coff-exports.def
@@ -1,7 +1,7 @@
 ; RUN: llvm-dlltool -m i386:x86-64 --input-def %s --output-lib %t.a
-; RUN: llvm-readobj --coff-exports %t.a | FileCheck %s
+; RUN: llvm-readobj %t.a | FileCheck %s
 ; RUN: llvm-dlltool -m arm64 --input-def %s --output-lib %t.a
-; RUN: llvm-readobj --coff-exports %t.a | FileCheck %s
+; RUN: llvm-readobj %t.a | FileCheck %s
 
 LIBRARY test.dll
 EXPORTS


        


More information about the llvm-commits mailing list