1 //===-- main.c --------------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include <os/activity.h>
13 #include "../../../common/darwin_log_common.h"
15 int main(int argc, char** argv)
17 os_log_t logger_sub1 = os_log_create("org.llvm.lldb.test.sub1", "cat1");
18 os_log_t logger_sub2 = os_log_create("org.llvm.lldb.test.sub2", "cat2");
19 if (!logger_sub1 || !logger_sub2)
22 // Note we cannot use the os_log() line as the breakpoint because, as of
23 // the initial writing of this test, we get multiple breakpoints for that
24 // line, which confuses the pexpect test logic.
25 printf("About to log\n"); // break here
26 os_log(logger_sub1, "log message sub%d-cat%d", 1, 1);
27 os_log(logger_sub2, "log message sub%d-cat%d", 2, 2);
29 // Sleep, as the darwin log reporting doesn't always happen until a bit
30 // later. We need the message to come out before the process terminates.