1 # RUN: rm -rf %t.stderr %t.stdout
2 # RUN: cat %s | %lldb --script-language lua 2> %t.stderr > %t.stdout
3 # RUN: cat %t.stdout | FileCheck %s --check-prefix STDOUT
4 # RUN: cat %t.stderr | FileCheck %s --check-prefix STDERR
6 file = lldb.SBFile(2, "w", false)
7 lldb.debugger:SetOutputFile(file)
8 print(95000 + 126, nil, 'a')
15 # STDOUT-NOT: table: {{0x[[:xdigit:]]+}}
16 # STDERR: table: {{0x[[:xdigit:]]+}}
18 # RUN: rm -rf %t.stderr %t.stdout
19 # RUN: %lldb --script-language lua -o 'script print(95000 + 126, nil, "a")' 2> %t.stderr > %t.stdout
20 # RUN: cat %t.stdout | FileCheck %s --check-prefix STDOUT