]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / darwin_log / format / main.c
1 //===-- main.c --------------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include <os/activity.h>
11 #include <os/log.h>
12 #include <stdio.h>
13
14 #include "../common/darwin_log_common.h"
15
16 int main(int argc, char** argv)
17 {
18     os_log_t logger_sub1 = os_log_create("org.llvm.lldb.test.sub1", "cat1");
19     if (!logger_sub1)
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_activity_t parent_activity = os_activity_create("parent-activity",
27                                                        OS_ACTIVITY_CURRENT, OS_ACTIVITY_FLAG_DEFAULT);
28     os_activity_apply(parent_activity, ^{
29         os_activity_t child_activity = os_activity_create("child-activity",
30                                                           OS_ACTIVITY_CURRENT, OS_ACTIVITY_FLAG_DEFAULT);
31         os_activity_apply(child_activity, ^{
32             os_log(logger_sub1, "This is the log message.");
33         });
34     });
35
36     // Sleep, as the darwin log reporting doesn't always happen until a bit
37     // later.  We need the message to come out before the process terminates.
38     sleep(FINAL_WAIT_SECONDS);
39
40     return 0;
41 }