diff options
| author | Alexander Shaposhnikov <shal1t712@gmail.com> | 2018-04-24 05:43:32 +0000 |
|---|---|---|
| committer | Alexander Shaposhnikov <shal1t712@gmail.com> | 2018-04-24 05:43:32 +0000 |
| commit | d6884795d07ec6644501a2c91492332b0598e5d4 (patch) | |
| tree | a0255a4c56ac8e245b7009b94ee2c002f9b44a61 /llvm/test/tools | |
| parent | 7790d6cbffca5f5c9285365381363f6069dcb91a (diff) | |
| download | bcm5719-llvm-d6884795d07ec6644501a2c91492332b0598e5d4.tar.gz bcm5719-llvm-d6884795d07ec6644501a2c91492332b0598e5d4.zip | |
Recommit "[llvm-objcopy] Switch over to using TableGen for parsing arguments"
Add explicit dependency on ObjcopyTableGen
and rerun the tests on Windows.
I will double-check the build bots
and revert this commit if necessary.
llvm-svn: 330685
Diffstat (limited to 'llvm/test/tools')
8 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/tools/llvm-objcopy/add-section-remove.test b/llvm/test/tools/llvm-objcopy/add-section-remove.test index 0dee1182a28..9e7abc76aa3 100644 --- a/llvm/test/tools/llvm-objcopy/add-section-remove.test +++ b/llvm/test/tools/llvm-objcopy/add-section-remove.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s > %t # RUN: echo 0000 > %t.sec -# RUN: llvm-objcopy -R=.test2 -add-section=.test2=%t.sec %t %t2 +# RUN: llvm-objcopy -R .test2 -add-section=.test2=%t.sec %t %t2 # RUN: llvm-readobj -file-headers -sections -section-data %t2 | FileCheck %s !ELF diff --git a/llvm/test/tools/llvm-objcopy/add-section.test b/llvm/test/tools/llvm-objcopy/add-section.test index 048edcba227..369d1194efc 100644 --- a/llvm/test/tools/llvm-objcopy/add-section.test +++ b/llvm/test/tools/llvm-objcopy/add-section.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s > %t # RUN: llvm-objcopy -O binary -j .test2 %t %t.sec -# RUN: llvm-objcopy -R=.test2 %t %t2 +# RUN: llvm-objcopy -R .test2 %t %t2 # RUN: llvm-objcopy -add-section=.test2=%t.sec %t2 %t3 # RUN: llvm-readobj -file-headers -sections -section-data %t3 | FileCheck %s diff --git a/llvm/test/tools/llvm-objcopy/basic-only-keep.test b/llvm/test/tools/llvm-objcopy/basic-only-keep.test index 4d97012a6cc..2f1c5e0a5ae 100644 --- a/llvm/test/tools/llvm-objcopy/basic-only-keep.test +++ b/llvm/test/tools/llvm-objcopy/basic-only-keep.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s > %t # RUN: llvm-objcopy -only-keep=.test %t %t2 -# RUN: llvm-objcopy -j=.test %t %t3 +# RUN: llvm-objcopy -j .test %t %t3 # RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s # RUN: diff %t2 %t3 diff --git a/llvm/test/tools/llvm-objcopy/binary-first-seg-offset-zero.test b/llvm/test/tools/llvm-objcopy/binary-first-seg-offset-zero.test index edab5ca6d20..2f04d64a2c3 100644 --- a/llvm/test/tools/llvm-objcopy/binary-first-seg-offset-zero.test +++ b/llvm/test/tools/llvm-objcopy/binary-first-seg-offset-zero.test @@ -1,5 +1,5 @@ # RUN: yaml2obj %s -o %t -# RUN: llvm-objcopy -R=.note -O binary %t %t2 +# RUN: llvm-objcopy -R .note -O binary %t %t2 # RUN: od -Ax -t x1 %t2 | FileCheck %s !ELF diff --git a/llvm/test/tools/llvm-objcopy/keep-only-keep.test b/llvm/test/tools/llvm-objcopy/keep-only-keep.test index b1f08fe5879..75f7d7251a8 100644 --- a/llvm/test/tools/llvm-objcopy/keep-only-keep.test +++ b/llvm/test/tools/llvm-objcopy/keep-only-keep.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s > %t # RUN: llvm-objcopy -keep=.test2 -only-keep=.test %t %t2 -# RUN: llvm-objcopy -j=.test -keep=.test2 %t %t3 +# RUN: llvm-objcopy -j .test -keep=.test2 %t %t3 # RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s # RUN: diff %t2 %t3 diff --git a/llvm/test/tools/llvm-objcopy/only-keep-remove-strtab.test b/llvm/test/tools/llvm-objcopy/only-keep-remove-strtab.test index c8946d3294d..f6885c8e131 100644 --- a/llvm/test/tools/llvm-objcopy/only-keep-remove-strtab.test +++ b/llvm/test/tools/llvm-objcopy/only-keep-remove-strtab.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s > %t # RUN: llvm-objcopy -R .symtab -R .strtab -only-keep=.test %t %t2 -# RUN: llvm-objcopy -j=.test -R .strtab -R .symtab %t %t3 +# RUN: llvm-objcopy -j .test -R .strtab -R .symtab %t %t3 # RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s # RUN: diff %t2 %t3 diff --git a/llvm/test/tools/llvm-objcopy/parent-loop-check.test b/llvm/test/tools/llvm-objcopy/parent-loop-check.test index a1ba4cb60c1..b3b48c935e4 100644 --- a/llvm/test/tools/llvm-objcopy/parent-loop-check.test +++ b/llvm/test/tools/llvm-objcopy/parent-loop-check.test @@ -9,7 +9,7 @@ # don't. # RUN: yaml2obj %s -o %t -# RUN: llvm-objcopy -R=.note -O binary %t %t2 +# RUN: llvm-objcopy -R .note -O binary %t %t2 # RUN: od -Ax -t x1 %t2 | FileCheck %s !ELF diff --git a/llvm/test/tools/llvm-objcopy/remove-section.test b/llvm/test/tools/llvm-objcopy/remove-section.test index 0fa26bc3874..1d7a54417f2 100644 --- a/llvm/test/tools/llvm-objcopy/remove-section.test +++ b/llvm/test/tools/llvm-objcopy/remove-section.test @@ -1,5 +1,5 @@ # RUN: yaml2obj %s > %t -# RUN: llvm-objcopy -R=.test2 %t %t2 +# RUN: llvm-objcopy -R .test2 %t %t2 # RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s !ELF |

