diff options
| author | George Rimar <grimar@accesssoftek.com> | 2019-07-11 13:26:36 +0000 |
|---|---|---|
| committer | George Rimar <grimar@accesssoftek.com> | 2019-07-11 13:26:36 +0000 |
| commit | 9cf13035608bda89041d3b732ef174e77b3bce29 (patch) | |
| tree | 03bd4259942c7f57ce93a60d4efee75e638c6eb0 | |
| parent | fd11ce32bb8ddc7994bee584d18085ca9f09667c (diff) | |
| download | bcm5719-llvm-9cf13035608bda89041d3b732ef174e77b3bce29.tar.gz bcm5719-llvm-9cf13035608bda89041d3b732ef174e77b3bce29.zip | |
[yaml2obj/elf-override-shsize.yaml] - An attemp to fix ppc64 bot.
Failture:
http://lab.llvm.org:8011/builders/clang-ppc64be-linux/builds/35670/steps/ninja%20check%201/logs/FAIL%3A%20LLVM%3A%3Aelf-override-shsize.yaml
Solution:
Change `od` tool invocation to print single bytes.
llvm-svn: 365772
| -rw-r--r-- | llvm/test/tools/yaml2obj/elf-override-shsize.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/tools/yaml2obj/elf-override-shsize.yaml b/llvm/test/tools/yaml2obj/elf-override-shsize.yaml index fd5b0f8289e..e57053bb747 100644 --- a/llvm/test/tools/yaml2obj/elf-override-shsize.yaml +++ b/llvm/test/tools/yaml2obj/elf-override-shsize.yaml @@ -136,9 +136,9 @@ Sections: ## bytes written is equal to Size in this case. # RUN: yaml2obj --docnum=5 %s -o %t5 -# RUN: od -t x4 -v %t5 | FileCheck %s --check-prefix=CASE5 +# RUN: od -t x1 -v %t5 | FileCheck %s --check-prefix=CASE5 -# CASE5: aaaa 0000bbbb +# CASE5: aa aa 00 00 bb bb --- !ELF FileHeader: |

