There is no indication this ever worked on windows as this is the first test that checks python interactive console from a file. Looking at the error from the CI, It closed the interpreter before running any python commands. Will reconfirm this when I have access to a windows machine. From https://github.com/llvm/llvm-project/pull/174216
15 lines
368 B
Plaintext
15 lines
368 B
Plaintext
# UNSUPPORTED: system-windows
|
|
|
|
# RUN: rm -rf %t.stdout %t.stderr
|
|
# RUN: cat %s | %lldb --script-language python > %t.stdout 2> %t.stderr
|
|
# RUN: cat %t.stdout | FileCheck %s --check-prefix STDOUT
|
|
# RUN: cat %t.stderr | FileCheck %s --check-prefix STDERR
|
|
script
|
|
variable = 300
|
|
print(variable)
|
|
print(not_value)
|
|
quit
|
|
|
|
# STDOUT: 300
|
|
# STDERR: NameError{{.*}}is not defined
|