1// Basic sanity checking of the REPL.
2
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
5
6// RUN: %lldb --repl --repl-language python 2>&1 | FileCheck %s --check-prefix=PYTHON
7// PYTHON: error: couldn't find a REPL for python
8
9// RUN: not %lldb --repl --repl-language bogus 2>&1 | FileCheck %s --check-prefix=BOGUS
10// BOGUS: error: Unrecognized language name: "bogus"
11