[RISCV] Change func to funct in RISCVInstrInfoXqci.td. NFC (#119669)
[llvm-project.git] / lldb / test / Shell / Process / UnsupportedLanguage.test
blobd7e6e5de77512f7e9cbb4a701ea5b16ab1b13610
1 Test unsupported language warning
3 REQUIRES: shell
5 RUN: %clang_host %S/Inputs/true.c -std=c99 -g -c -S -emit-llvm -o - \
6 RUN:   | sed -e 's/DW_LANG_C99/DW_LANG_Mips_Assembler/g' >%t.ll
7 RUN: %clang_host %t.ll -g -o %t.exe
8 RUN: %lldb -o "b main" -o r -o q -b %t.exe 2>&1 | FileCheck %s --check-prefix ASM
10 ASM-NOT: This version of LLDB has no plugin for the language "assembler"
12 RUN: %clang_host %S/Inputs/true.c -std=c99 -g -c -S -emit-llvm -o - \
13 RUN:   | sed -e 's/DW_LANG_C99/DW_LANG_Cobol74/g' >%t.ll
14 RUN: %clang_host %t.ll -g -o %t.exe
15 RUN: %lldb -o "b main" -o r -o q -b %t.exe 2>&1 | FileCheck %s --check-prefix COBOL
17 COBOL: This version of LLDB has no plugin for the language "cobol74"