brintos

brintos / llvm-project-archived public Read only

0
0
Text · 449 B · 3979113 Raw
11 lines · plain
1// Basic sanity checking of the REPL.2 3// RUN: %lldb --repl --repl-language c++ 2>&1 | FileCheck %s --check-prefix=CPP4// CPP: error: must have a target to create a REPL5 6// RUN: %lldb --repl --repl-language python 2>&1 | FileCheck %s --check-prefix=PYTHON7// PYTHON: error: couldn't find a REPL for python8 9// RUN: not %lldb --repl --repl-language bogus 2>&1 | FileCheck %s --check-prefix=BOGUS10// BOGUS: error: Unrecognized language name: "bogus"11