[lldb] Handle alternative output in TestAbortExitCode
authorDave Lee <davelee.com@gmail.com>
Mon, 12 Oct 2020 21:48:52 +0000 (14:48 -0700)
committerDave Lee <davelee.com@gmail.com>
Mon, 12 Oct 2020 23:27:06 +0000 (16:27 -0700)
This test

On macOS, this test can instead return `status = 0 (0x00000000) Terminated due to signal 6`. This updates the `CHECK` accordingly.

Differential Revision: https://reviews.llvm.org/D89273

lldb/test/Shell/Process/TestAbortExitCode.test

index 5be0a15..746bc91 100644 (file)
@@ -3,4 +3,4 @@ UNSUPPORTED: system-windows
 RUN: %clang_host %p/Inputs/abort.c -o %t
 RUN: %lldb %t -o run -o continue | FileCheck %s
 
-CHECK: status = 6 (0x00000006)
+CHECK: {{status = 6 \(0x00000006\)|status = 0 \(0x00000000\) Terminated due to signal 6}}