b4b26c158d35fa54b2af5d51815eff938387ed24
[openbsd] /
1 //===-- main.c --------------------------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include <os/activity.h>
10 #include <os/log.h>
11 #include <stdio.h>
12
13 #include "../../../common/darwin_log_common.h"
14
15 int main(int argc, char** argv)
16 {
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)
20         return 1;
21
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);
28
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.
31     sleep(1);
32
33     return 0;
34 }