29 lines · plain
1# Source uses unistd.h.2# UNSUPPORTED: system-windows3# RUN: %clang_host -g -O0 %S/Inputs/sigchld.c -o %t.out4# RUN: %lldb %t.out -b -s %s 2>&1 | FileCheck %s5 6list7# CHECK: note: No source available 8 9b main10# CHECK: Breakpoint 1:11 12r13# CHECK: int main()14 15list16# CHECK: if (child_pid == 0)17 18list19# CHECK: printf("signo = %d\n", SIGCHLD);20 21list22# CHECK: return 0;23 24list 25# CHECK: note: Reached end of the file, no more to page26 27list 28# CHECK: note: Reached end of the file, no more to page29