From 2082188406965fe35ef3d8b1f2057ab7f8e15a43 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Thu, 10 Nov 2022 18:28:53 -0800 Subject: [PATCH] [lldb/test] Fix app_specific_backtrace_crashlog.test (NFC) This patch fixes app_specific_backtrace_crashlog.test. It was failing because one of the loaded images was built with optimization which added a new warning message between the first `CHECK` and the `CHECK-NEXT`, breaking the expected ordering. Signed-off-by: Med Ismail Bennani --- .../Python/Crashlog/app_specific_backtrace_crashlog.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/app_specific_backtrace_crashlog.test b/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/app_specific_backtrace_crashlog.test index 266b1b4..5ca5c51 100644 --- a/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/app_specific_backtrace_crashlog.test +++ b/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/app_specific_backtrace_crashlog.test @@ -20,7 +20,7 @@ # CHECK: (lldb) thread backtrace --extended true -# CHECK-NEXT: * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_CRASH (code=0, subcode=0x0) +# CHECK: * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_CRASH (code=0, subcode=0x0) # CHECK-NEXT: * frame #0: 0x00000001a08c7224{{.*}}[artificial] # CHECK-NEXT: frame #1: 0x00000001a08fdceb{{.*}}[artificial] # CHECK-NEXT: frame #2: 0x00000001a08372c7{{.*}}[artificial] -- 2.7.4