diff options
author | George Rimar <grimar@accesssoftek.com> | 2019-07-02 11:02:09 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2019-07-02 11:02:09 +0000 |
commit | e400186b5212a36b3aec9df33d1d79e119e6988c (patch) | |
tree | 5e2eaee4e55aa0c0ef2a7cb5e735abdaff8148c5 | |
parent | d609ebb77985a0d0152d6d917974f7aff1e6638c (diff) | |
download | bcm5719-llvm-e400186b5212a36b3aec9df33d1d79e119e6988c.tar.gz bcm5719-llvm-e400186b5212a36b3aec9df33d1d79e119e6988c.zip |
[yaml2obj] - An attempt to fix a ppc64be build bot after r364898
I guess the problem is because of endianess of
the bytes tested by "od" tool. I changed the Content
sequence as it does not actually matter.
llvm-svn: 364907
-rw-r--r-- | llvm/test/tools/yaml2obj/elf-override-shoffset.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/tools/yaml2obj/elf-override-shoffset.yaml b/llvm/test/tools/yaml2obj/elf-override-shoffset.yaml index 66636b4b34a..3bde1778c30 100644 --- a/llvm/test/tools/yaml2obj/elf-override-shoffset.yaml +++ b/llvm/test/tools/yaml2obj/elf-override-shoffset.yaml @@ -77,9 +77,9 @@ Sections: # RUN: od -t x8 -v %t3 >> %t.txt # RUN: FileCheck %s --input-file=%t.txt --check-prefix=CASE2 -# CASE2: [[OFFSET:.*]] 8877665544332211 +# CASE2: [[OFFSET:.*]] fefefefefefefefe # CASE2: [[FILESIZE:.*]]{{$}} -# CASE2: [[OFFSET]] 8877665544332211 +# CASE2: [[OFFSET]] fefefefefefefefe # CASE2: [[FILESIZE]]{{$}} --- !ELF @@ -91,7 +91,7 @@ FileHeader: Sections: - Name: .foo Type: SHT_PROGBITS - Content: "1122334455667788" + Content: "fefefefefefefefe" --- !ELF FileHeader: @@ -103,4 +103,4 @@ Sections: - Name: .foo Type: SHT_PROGBITS ShOffset: 0xFFFF0000 - Content: "1122334455667788" + Content: "fefefefefefefefe" |