1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[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
This commit is contained in:
George Rimar 2019-07-02 11:02:09 +00:00
parent 516651e650
commit 4c75da8dbd

View File

@ -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"