xref: /llvm-project/lldb/test/Shell/REPL/Basic.test (revision 100863ccd8d41091f90749ba76d91f6dfafdde57)
1*100863ccSJonas Devlieghere// Basic sanity checking of the REPL.
2*100863ccSJonas Devlieghere
3*100863ccSJonas Devlieghere// RUN: %lldb --repl --repl-language c++ 2>&1 | FileCheck %s --check-prefix=CPP
4*100863ccSJonas Devlieghere// CPP: error: must have a target to create a REPL
5*100863ccSJonas Devlieghere
6*100863ccSJonas Devlieghere// RUN: %lldb --repl --repl-language python 2>&1 | FileCheck %s --check-prefix=PYTHON
7*100863ccSJonas Devlieghere// PYTHON: error: couldn't find a REPL for python
8*100863ccSJonas Devlieghere
9*100863ccSJonas Devlieghere// RUN: not %lldb --repl --repl-language bogus 2>&1 | FileCheck %s --check-prefix=BOGUS
10*100863ccSJonas Devlieghere// BOGUS: error: Unrecognized language name: "bogus"
11