Skip to content

Commit f4cb9c9

Browse files
committed
Disable llvm-objdump --debug-vars tests on Windows
These tests passed in my Windows 10 VM, but are failing on Windows bots with errors which look related to unicode encodings. Disable the tests on Windows for now.
1 parent c5ff3df commit f4cb9c9

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

llvm/test/tools/llvm-objdump/ARM/debug-vars-dwarf4-sections.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
## Generated with this compile command, with the source code in Inputs/debug.c:
55
## clang --target=arm--none-eabi -march=armv7-a -c debug.c -O1 -gdwarf-4 -S -o - -ffunction-sections
66

7+
## The unicode characters in this test cause test failures on Windows.
8+
# UNSUPPORTED: system-windows
9+
710
# RUN: llvm-mc -triple armv8a--none-eabi < %s -filetype=obj | \
811
# RUN: llvm-objdump - -d --debug-vars --no-show-raw-insn | \
912
# RUN: FileCheck %s

llvm/test/tools/llvm-objdump/ARM/debug-vars-dwarf4.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
## Generated with this compile command, with the source code in Inputs/debug.c:
99
## clang --target=arm--none-eabi -march=armv7-a -c debug.c -O1 -gdwarf-4 -S -o -
1010

11+
## The unicode characters in this test cause test failures on Windows.
12+
# UNSUPPORTED: system-windows
13+
1114
# RUN: llvm-mc -triple armv8a--none-eabi < %s -filetype=obj | \
1215
# RUN: llvm-objdump - -d --debug-vars | \
1316
# RUN: FileCheck %s --check-prefix=RAW --strict-whitespace

llvm/test/tools/llvm-objdump/ARM/debug-vars-dwarf5-sections.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
## Generated with this compile command, with the source code in Inputs/debug.c:
55
## clang --target=arm--none-eabi -march=armv7-a -c debug.c -O1 -gdwarf-5 -S -o - -ffunction-sections
66

7+
## The unicode characters in this test cause test failures on Windows.
8+
# UNSUPPORTED: system-windows
9+
710
# RUN: llvm-mc -triple armv8a--none-eabi < %s -filetype=obj --dwarf-version=5 | \
811
# RUN: llvm-objdump - -d --debug-vars --no-show-raw-insn | \
912
# RUN: FileCheck %s

llvm/test/tools/llvm-objdump/ARM/debug-vars-dwarf5.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
## Generated with this compile command, with the source code in Inputs/debug.c:
55
## clang --target=arm--none-eabi -march=armv7-a -c debug.c -O1 -gdwarf-3 -S -o -
66

7+
## The unicode characters in this test cause test failures on Windows.
8+
# UNSUPPORTED: system-windows
9+
710
# RUN: llvm-mc -triple armv8a--none-eabi < %s -filetype=obj --dwarf-version=5 | \
811
# RUN: llvm-objdump - -d --debug-vars --no-show-raw-insn | \
912
# RUN: FileCheck %s

llvm/test/tools/llvm-objdump/PowerPC/debug-vars.s

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
## using DWARF4 debug info, with multiple functions in one section.
33

44
## Generated with this compile command and source code:
5-
## clang --target=arm--none-eabi -march=armv7-a -c debug.c -O1 -gdwarf-3 -S -o -
6-
75
## clang --target=powerpc64-unknown-linux -c debug.c -O1 -S -o -
86

7+
## The unicode characters in this test cause test failures on Windows.
8+
# UNSUPPORTED: system-windows
9+
910
## int foo(int a, int b, int c) {
1011
## int x = a + b;
1112
## int y = x + c;

0 commit comments

Comments
 (0)