diff options
author | Med Ismail Bennani <medismail.bennani@gmail.com> | 2022-11-10 18:28:53 -0800 |
---|---|---|
committer | Med Ismail Bennani <medismail.bennani@gmail.com> | 2022-11-10 18:32:18 -0800 |
commit | 2082188406965fe35ef3d8b1f2057ab7f8e15a43 (patch) | |
tree | 7bcf6cff2f1d94da22436635922eb9c21ed29350 /lldb/test/Shell/ScriptInterpreter/Python | |
parent | 885e6105b4a6cb5fa8a80c33695c3a225d70fd45 (diff) | |
download | llvm-2082188406965fe35ef3d8b1f2057ab7f8e15a43.zip llvm-2082188406965fe35ef3d8b1f2057ab7f8e15a43.tar.gz llvm-2082188406965fe35ef3d8b1f2057ab7f8e15a43.tar.bz2 |
[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 <medismail.bennani@gmail.com>
Diffstat (limited to 'lldb/test/Shell/ScriptInterpreter/Python')
-rw-r--r-- | lldb/test/Shell/ScriptInterpreter/Python/Crashlog/app_specific_backtrace_crashlog.test | 2 |
1 files changed, 1 insertions, 1 deletions
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] |