[Lldb-commits] [lldb] ed88e57 - [LLDB] Fix buildbots breakage due to TestGuessLanguage.py
Chen Zheng via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 15 22:05:43 PDT 2021
Author: Chen Zheng
Date: 2021-06-16T05:03:06Z
New Revision: ed88e57f6587ea51d1c106acbdd82a083f746606
URL: https://github.com/llvm/llvm-project/commit/ed88e57f6587ea51d1c106acbdd82a083f746606
DIFF: https://github.com/llvm/llvm-project/commit/ed88e57f6587ea51d1c106acbdd82a083f746606.diff
LOG: [LLDB] Fix buildbots breakage due to TestGuessLanguage.py
Fix LLDB buidbot breakage due to D104291
Differential Revision: https://reviews.llvm.org/D104291
Added:
Modified:
lldb/test/API/commands/frame/language/TestGuessLanguage.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/frame/language/TestGuessLanguage.py b/lldb/test/API/commands/frame/language/TestGuessLanguage.py
index f20f184e3910b..1adab53a4ebc1 100644
--- a/lldb/test/API/commands/frame/language/TestGuessLanguage.py
+++ b/lldb/test/API/commands/frame/language/TestGuessLanguage.py
@@ -66,7 +66,7 @@ def do_test(self):
thread = threads[0]
c_frame_language = lldb.eLanguageTypeC99
- cxx_frame_language = lldb.eLanguageTypeC_plus_plus
+ cxx_frame_language = lldb.eLanguageTypeC_plus_plus_11
# gcc emits DW_LANG_C89 even if -std=c99 was specified
if "gcc" in self.getCompiler():
c_frame_language = lldb.eLanguageTypeC89
More information about the lldb-commits
mailing list