Files
Dave Lee a8783dc6ba [lldb][bytecode] Disable bytecode.test on windows (#185096)
The test is failing on the lldb-x86_64-win buildbot.
2026-03-06 20:10:02 +00:00

14 lines
691 B
Plaintext

# UNSUPPORTED: system-windows
# RUN: %python %S/../../../../examples/python/formatter_bytecode.py --test
# RUN: %clang_host -std=c++17 -g %S/Inputs/FormatterBytecode/MyOptional.cpp -o %t.exe
# RUN: %lldb %t.exe -o "command script import %S/../../../../examples/python/formatter_bytecode.py" -o "command script import %S/Inputs/FormatterBytecode/formatter.py" -o "b -p here" -o "r" -o "v x" -o "v y" -o q | FileCheck %s --check-prefix=OPTIONAL
# OPTIONAL: (lldb) v x
# OPTIONAL: (MyOptional<int>) x = None {
# OPTIONAL: hasVal = false
# OPTIONAL: }
# OPTIONAL: (lldb) v y
# OPTIONAL: (MyOptional<int>) y = (int) value = 42 {
# OPTIONAL: Storage = (value = 42, hasVal = true)
# OPTIONAL: }