[Lldb-commits] [lldb] be58b42 - [lldb] Add 'CHECK' to class-type-nullptr-deref.s test.
Caroline Tice via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 13 08:18:55 PDT 2023
Author: Caroline Tice
Date: 2023-04-13T08:17:53-07:00
New Revision: be58b42a7510e3fe204e015bcf5faa9ed35d1766
URL: https://github.com/llvm/llvm-project/commit/be58b42a7510e3fe204e015bcf5faa9ed35d1766
DIFF: https://github.com/llvm/llvm-project/commit/be58b42a7510e3fe204e015bcf5faa9ed35d1766.diff
LOG: [lldb] Add 'CHECK' to class-type-nullptr-deref.s test.
This test previously relied on just segfaulting or not. This commit adds
a CHECK statement to the test.
Differential Revision: https://reviews.llvm.org/D148151
Added:
Modified:
lldb/test/Shell/SymbolFile/DWARF/x86/class-type-nullptr-deref.s
Removed:
################################################################################
diff --git a/lldb/test/Shell/SymbolFile/DWARF/x86/class-type-nullptr-deref.s b/lldb/test/Shell/SymbolFile/DWARF/x86/class-type-nullptr-deref.s
index 610b45823458..c7aea06bf909 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/x86/class-type-nullptr-deref.s
+++ b/lldb/test/Shell/SymbolFile/DWARF/x86/class-type-nullptr-deref.s
@@ -2,7 +2,9 @@
# null), LLDB does not try to dereference the null pointer.
# RUN: llvm-mc --triple x86_64-pc-linux %s --filetype=obj -o %t
-# RUN: %lldb %t -o "target variable x" -o exit 2>&1
+# RUN: %lldb %t -o "target variable x" -o exit 2>&1 | FileCheck %s
+
+# CHECK: 'Unable to determine byte size.'
# This tests a fix for a crash. If things are working we don't get a segfault.
More information about the lldb-commits
mailing list