[llvm] r365772 - [yaml2obj/elf-override-shsize.yaml] - An attemp to fix ppc64 bot.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 11 06:26:36 PDT 2019


Author: grimar
Date: Thu Jul 11 06:26:36 2019
New Revision: 365772

URL: http://llvm.org/viewvc/llvm-project?rev=365772&view=rev
Log:
[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.

Modified:
    llvm/trunk/test/tools/yaml2obj/elf-override-shsize.yaml

Modified: llvm/trunk/test/tools/yaml2obj/elf-override-shsize.yaml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/yaml2obj/elf-override-shsize.yaml?rev=365772&r1=365771&r2=365772&view=diff
==============================================================================
--- llvm/trunk/test/tools/yaml2obj/elf-override-shsize.yaml (original)
+++ llvm/trunk/test/tools/yaml2obj/elf-override-shsize.yaml Thu Jul 11 06:26:36 2019
@@ -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:




More information about the llvm-commits mailing list