1 // Basic sanity checking of the REPL.
3 // RUN: %lldb --repl --repl-language c++ 2>&1 | FileCheck %s --check-prefix=CPP
4 // CPP: error: must have a target to create a REPL
6 // RUN: %lldb --repl --repl-language python 2>&1 | FileCheck %s --check-prefix=PYTHON
7 // PYTHON: error: couldn't find a REPL for python
9 // RUN: not %lldb --repl --repl-language bogus 2>&1 | FileCheck %s --check-prefix=BOGUS
10 // BOGUS: error: Unrecognized language name: "bogus"