1 Test unsupported language warning
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"