]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / darwin_log / filter / exact_match / message / 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     os_log_t logger_sub2 = os_log_create("org.llvm.lldb.test.sub2", "cat2");
20     if (!logger_sub1 || !logger_sub2)
21         return 1;
22
23     // Note we cannot use the os_log() line as the breakpoint because, as of
24     // the initial writing of this test, we get multiple breakpoints for that
25     // line, which confuses the pexpect test logic.
26     printf("About to log\n"); // break here
27     os_log(logger_sub1, "log message sub%d-cat%d", 1, 1);
28     os_log(logger_sub2, "log message sub%d-cat%d", 2, 2);
29
30     // Sleep, as the darwin log reporting doesn't always happen until a bit
31     // later.  We need the message to come out before the process terminates.
32     sleep(1);
33
34     return 0;
35 }