[llvm] 699231a - Fix the 4203-Buildbot failure in LLVM Buildbot on llvm-clang-win-x-aarch64
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 9 00:24:39 PDT 2021
Author: Esme-Yi
Date: 2021-06-09T07:23:51Z
New Revision: 699231ab3c7dd8f028d868b103481fa901f3c721
URL: https://github.com/llvm/llvm-project/commit/699231ab3c7dd8f028d868b103481fa901f3c721
DIFF: https://github.com/llvm/llvm-project/commit/699231ab3c7dd8f028d868b103481fa901f3c721.diff
LOG: Fix the 4203-Buildbot failure in LLVM Buildbot on llvm-clang-win-x-aarch64
Failure in llvm/test/tools/llvm-objdump/XCOFF/section-headers.test:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes
in position 24-25: truncated \xXX escape
Added:
Modified:
llvm/test/tools/llvm-objdump/XCOFF/section-headers.test
Removed:
################################################################################
diff --git a/llvm/test/tools/llvm-objdump/XCOFF/section-headers.test b/llvm/test/tools/llvm-objdump/XCOFF/section-headers.test
index b6f93210e64e..a8832a2e2248 100644
--- a/llvm/test/tools/llvm-objdump/XCOFF/section-headers.test
+++ b/llvm/test/tools/llvm-objdump/XCOFF/section-headers.test
@@ -61,7 +61,7 @@ Sections:
## Truncate the file to end before the section header table ends.
# RUN: yaml2obj %s --docnum=3 -o %t-truncate.o
-# RUN: %python -c "with open('%t-truncate.o', 'r+b') as input: input.truncate(20)"
+# RUN: %python -c "with open('%/t-truncate.o', 'r+b') as input: input.truncate(20)"
# RUN: not llvm-objdump --section-headers %t-truncate.o 2>&1 \
# RUN: | FileCheck --check-prefix=ERROR %s
More information about the llvm-commits
mailing list