From 95dca084dfffacc1715f9314ae413725b04af480 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 7 Jul 2009 15:46:21 +0200 Subject: open_issues/device_drivers_and_io_systems: Add a TOC, and links to UDI, OSKit, Mach-like systems. --- open_issues/device_drivers_and_io_systems.mdwn | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'open_issues') diff --git a/open_issues/device_drivers_and_io_systems.mdwn b/open_issues/device_drivers_and_io_systems.mdwn index 57a96cd0..f84ddce8 100644 --- a/open_issues/device_drivers_and_io_systems.mdwn +++ b/open_issues/device_drivers_and_io_systems.mdwn @@ -15,6 +15,8 @@ in general. Also see [[user-space device drivers]]. +[[!toc levels=2]] + # Documentation @@ -63,7 +65,27 @@ Also see [[user-space device drivers]]. 2004, Joshua Levasseur, Volkmar Uhlig, Jan Stoess, Stefan Götz -# Projects +# External Projects * [Building Linux Device Drivers on FreeBSD](http://info.iet.unipi.it/~luigi/FreeBSD/linux_bsd_kld.html) + + * [Project UDI](http://www.projectudi.org/), a multi-company effort to define + a Uniform Driver Interface + + * [The Free Software Movement and + UDI](http://www.gnu.org/philosophy/udi.html) + + * [OSKit](http://www.cs.utah.edu/flux/oskit/) + + * [Unofficial OSKit source](http://www.nongnu.org/oskit/) on Savannah + + * [[microkernel/Mach]]-like + + It might be possible to integrate these systems' device drivers, as they're + expected to mostly be using the same interfaces as the current in-kernel + Mach drivers are. + + * OSF Mach + + * Darwin -- cgit v1.2.3 From c1a671852e57a3219ddb842f83e2ee4cf0915c32 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 7 Jul 2009 15:51:01 +0200 Subject: open_issues/user-space_device_drivers: Add a TOC, and sections about issues and a plan. --- open_issues/user-space_device_drivers.mdwn | 55 ++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) (limited to 'open_issues') diff --git a/open_issues/user-space_device_drivers.mdwn b/open_issues/user-space_device_drivers.mdwn index 154a525c..43795705 100644 --- a/open_issues/user-space_device_drivers.mdwn +++ b/open_issues/user-space_device_drivers.mdwn @@ -14,6 +14,57 @@ This is a collection of resources concerning *user-space device drivers*. Also see [[device drivers and IO systems]]. +[[!toc levels=2]] + + +# Issues + +## IRQs + + * Can be modeled using [[RPC]]s. + + * Security considerations: IRQ sharing. + + * *Omega0* paper defines an interface. + +## DMA + + * Security considerations. + + * I/O MMU. + +## I/O Ports + + * Security considerations. + +## PCI and other buses + + * Security considerations: sharing. + +## Latency of doing RPCs + + * [[GNU Mach|microkernel/mach/gnumach]] is said to have a high overhead when + doing RPC calls. + + +# Plan + + * Examine what other systems are doing. + + * L4 + + * Hurd on L4: deva, fabrica + + * Minix 3 + + * Start with a simple driver and implement the needed infrastructure (see + *Issues* above) as needed. + + * + + Some (unfinished?) code written by Robert Millan in 2003: PC keyboard + and parallel port drivers, using `libtrivfs`. + # Documentation @@ -92,8 +143,8 @@ Also see [[device drivers and IO systems]]. Ganapathy, Arini Balakrishnan, Michael M. Swift, Somesh Jha -# Projects +# External Projects * - * + * -- cgit v1.2.3 From 98cbdda2b515b108b74c9228814bebb0e071ce00 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 7 Jul 2009 22:38:38 +0200 Subject: Issues with the crash servers. --- open_issues/crash_server.mdwn | 152 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 open_issues/crash_server.mdwn (limited to 'open_issues') diff --git a/open_issues/crash_server.mdwn b/open_issues/crash_server.mdwn new file mode 100644 index 00000000..71f495cc --- /dev/null +++ b/open_issues/crash_server.mdwn @@ -0,0 +1,152 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!tag open_issue_hurd]] + +Given an `a.out` executable that only does `raise (SIGABRT)`, invoking that +one... + + * ... against `crash-dump-core` will... + + * ... not overwrite existing `core` files. + + Is this reasonable? Linux does overwrite them, for example. + + * ... show big variances in running-time behavior: + + $ TIMEFORMAT='real %R user %U system %S' + $ rm -f core; time env CRASHSERVER=/servers/crash-dump-core ./a.out; ls -l core + Aborted (core dumped) + real 1.350 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 21:59 core + $ rm -f core; time env CRASHSERVER=/servers/crash-dump-core ./a.out; ls -l core + Aborted (core dumped) + real 22.771 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 21:59 core + $ rm -f core; time env CRASHSERVER=/servers/crash-dump-core ./a.out; ls -l core + Aborted (core dumped) + real 1.367 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:00 core + $ rm -f core; time env CRASHSERVER=/servers/crash-dump-core ./a.out; ls -l core + Aborted (core dumped) + real 5.789 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:00 core + $ rm -f core; time env CRASHSERVER=/servers/crash-dump-core ./a.out; ls -l core + Aborted (core dumped) + real 22.664 user 0.010 system 0.000 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:01 core + + * ... produce a huge `core` file: + + $ du -hs core + 17M core + + On Linux, the `core` file occupies 76 KiB of disk space, which seems + much more reasonable. + + * ... produce an invalid `core` file: + + $ gdb a.out core + warning: core file may not match specified executable file. + [New Thread 76651] + + warning: Wrong size fpregset in core file. + Reading symbols from /lib/libc.so.0.3...[...] + Core was generated by `./a.out'. + Program terminated with signal 6, Aborted. + + warning: Wrong size fpregset in core file. + #0 0x00000000 in ?? () + (gdb) bt + #0 0x00000000 in ?? () + Cannot access memory at address 0x17 + + [[!tag open_issue_gdb]] Probably the `crash` server code and [[GDB]] are + out of sync. + + * ... against `crash-suspend` will... + + * ... not work at all: + + $ CRASHSERVER=/servers/crash-suspend ./a.out + $ [returns to the shell and doesn't suspended] + + * ... show big variances in running-time behavior: + + $ TIMEFORMAT='real %R user %U system %S' + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 1.381 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:04 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 1.332 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:04 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 21.228 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:04 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 1.323 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:05 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 22.279 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:05 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 1.362 user 0.000 system 0.000 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:08 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 21.110 user 0.000 system 0.000 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:08 core + $ rm -f core; time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted (core dumped) + real 1.350 user 0.000 system 0.020 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:08 core + + * ... can reliably crash GNU Mach: + + This happens if a `core` file is already present (and won't get + overwritten; see above). I reproduced this three times. + + $ TIMEFORMAT='real %R user %U system %S' + $ time env CRASHSERVER=/servers/crash-suspend ./a.out; ls -l core + Aborted + real 2.856 user 0.000 system 0.010 + -rw------- 1 tschwinge tschwinge 17031168 Jul 7 22:08 core + + panic: zalloc: zone kalloc.8192 exhausted + Kernel Breakpoint trap, eip 0x20020a77 + Stopped at 0x20020a76: int $3 + db> trace + 0x20020a76(2006aba8,4d0f7e9c,200209b0,0,0) + 0x20020a4d(2006b094,2006ae40,2000,20016803,4a5f4114) + 0x2002bca5(49a03564,1,0,9,1000) + 0x20022f4c(2000,4a5f45d4,4a84879c,49a46564,4ac43e78) + 0x20021e65(4ac43e78,4a5f45d4,4a5f4114,0,0) + 0x2005309d(2106ba9c,3,38,28,1783) + Bad frame pointer: 0x2106ba78 + + $ addr2line -i -f -e /boot/gnumach-xen 0x20020a76 0x20020a4d 0x2002bca5 0x20022f4c 0x20021e65 0x2005309d + Debugger + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/debug.c:105 + panic + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/debug.c:148 + zalloc + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/zalloc.c:470 + kalloc + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/kalloc.c:185 + ipc_kobject_server + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/ipc_kobject.c:76 + mach_msg_trap + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/ipc/mach_msg.c:1367 -- cgit v1.2.3 From 7f9e0764e40a5987ba1172a2f26fce17ab81279d Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 7 Jul 2009 22:48:47 +0200 Subject: Issues with the time command(s). --- open_issues/time.mdwn | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 open_issues/time.mdwn (limited to 'open_issues') diff --git a/open_issues/time.mdwn b/open_issues/time.mdwn new file mode 100644 index 00000000..eda5b635 --- /dev/null +++ b/open_issues/time.mdwn @@ -0,0 +1,55 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!tag open_issue_porting]] + +Neither the `time` executable from the GNU time package work completely +correctly, nor does the GNU Bash built-in one. + + tschwinge@flubber:~ $ \time sleep 2 + 0.00user 0.00system 9:38:00elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k + 0inputs+0outputs (0major+0minor)pagefaults 0swaps + tschwinge@flubber:~ $ \time sleep 4 + 0.00user 0.00system 18:50:25elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k + 0inputs+0outputs (0major+0minor)pagefaults 0swaps + tschwinge@flubber:~ $ \time sleep 6 + 0.00user 0.00system 28:00:53elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k + 0inputs+0outputs (0major+0minor)pagefaults 0swaps + tschwinge@flubber:~ $ time sleep 2 + + real 0m2.093s + user 0m0.000s + sys 0m0.011s + tschwinge@flubber:~ $ time sleep 4 + + real 0m4.083s + user 0m0.000s + sys 0m0.010s + tschwinge@flubber:~ $ time sleep 6 + + real 0m6.164s + user 0m0.000s + sys 0m0.010s + +GNU time's *elapsed* value is off by some factor. + + $ \time factor 1111111111111111111 + 1111111111111111111: 1111111111111111111 + 0.00user 0.00system 52:39:24elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k + 0inputs+0outputs (0major+0minor)pagefaults 0swaps + $ time factor 1111111111111111111 + 1111111111111111111: 1111111111111111111 + + real 0m11.424s + user 0m0.000s + sys 0m0.010s + +As above; also here all the running time should be attriuted to *user* time. +This is probably a [[!taglink open_issue_gnumach]]. -- cgit v1.2.3 From fa9d0e52bee7e314a2f6e464c7b7ecef126c9600 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Fri, 10 Jul 2009 15:26:03 +0200 Subject: open_issues/xen_crash_copy-size_le_page_size: New page. --- open_issues/xen_crash_copy-size_le_page_size.mdwn | 65 +++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 open_issues/xen_crash_copy-size_le_page_size.mdwn (limited to 'open_issues') diff --git a/open_issues/xen_crash_copy-size_le_page_size.mdwn b/open_issues/xen_crash_copy-size_le_page_size.mdwn new file mode 100644 index 00000000..09287274 --- /dev/null +++ b/open_issues/xen_crash_copy-size_le_page_size.mdwn @@ -0,0 +1,65 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!tag open_issue_gnumach]] + +`/dev/hd2` is 2 GiB in size (backed by LVM), unformatted. + + # mkfs.ext2 -o hurd /dev/hd2 + mke2fs 1.41.7 (29-June-2009) + hd2 count 1 + re-open, hd2 count 2 + ext2fs_check_if_mount: Can't check if filesystem is mounted due to missing mtab file while determining whether /dev/hd2 is mounted. + re-open, hd2 count 3 + re-open, hd2 count 4 + re-open, hd2 count 5 + Filesystem label= + OS type: Hurd + Block size=4096 (log=2) + Fragment size=4096 (log=2) + 131072 inodes, 524288 blocks + 26214 blocks (5.00%) reserved for the super user + First data block=0 + Maximum filesystem blocks=536870912 + 16 block groups + 32768 blocks per group, 32768 fragments per group + 8192 inodes per group + Superblock backups stored on blocks: + 32768, 98304, 163840, 229376, 294912 + + Assertion `copy->size <= PAGE_SIZE' failed in file "../gnumach-1-branch-Xen-branch/xen/block.c", line 536 + Kernel Breakpoint trap, eip 0x20020a77 + Stopped at 0x20020a76: int $3 + db> trace + 0x20020a76(2006abc1,2006ba03,2006782c,218,2e2be8d4) + 0x20020ace(2006ba03,2006782c,218,2e3629a0,32000) + 0x2003e9d5(2de04764,2e2be0b8,12,0,3fff80) + 0x200476e6(2de5ad54,2e2db010,2e30a9a0,2de3a854,2de5ad44) + 0x20021ed4(2de5ad44,2e2bb2e0,2e2bb2a0,0,0) + 0x2005309d(129b8f0,3,38,28,e) + 0x20006838(129b8f0,3,38,28,e) + >>>>> user space <<<<< + + + $ addr2line -i -f -e /boot/gnumach-xen 0x20020a76 0x20020ace 0x2003e9d5 0x200476e6 0x20021ed4 0x2005309d 0x20006838 + Debugger + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/debug.c:105 + Assert + ??:0 + device_write + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/xen/block.c:537 + _Xdevice_write + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/device/device.server.c:253 + ipc_kobject_server + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/ipc_kobject.c:201 + mach_msg_trap + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/ipc/mach_msg.c:1367 + mach_call_call + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/i386/i386/locore.S:1083 -- cgit v1.2.3 From 06a33c9111fd876c11411089fd4289464abfa43f Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Mon, 20 Jul 2009 13:22:35 +0200 Subject: open_issues/gcc_testsuite: New. --- open_issues/gcc_testsuite.mdwn | 211 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 open_issues/gcc_testsuite.mdwn (limited to 'open_issues') diff --git a/open_issues/gcc_testsuite.mdwn b/open_issues/gcc_testsuite.mdwn new file mode 100644 index 00000000..b4bbc7c8 --- /dev/null +++ b/open_issues/gcc_testsuite.mdwn @@ -0,0 +1,211 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!meta title="GCC testsuite"]] + +[[!tag open_issue_gcc]] + +Here's some log of a GCC testsuite run; this is from trunk sources, about +2008-10-19. + + make -k check + make[1]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/fixincludes' + autogen -T ../../trunk.work/fixincludes/check.tpl ../../trunk.work/fixincludes/inclhack.def + /bin/sh ./check.sh ../../trunk.work/fixincludes/tests/base + Fixed: testing.h + Fixed: testing.h + Fixed: AvailabilityMacros.h + Fixed: X11/ShellP.h + Fixed: X11/Xmu.h + Fixed: Xm/BaseClassI.h + Fixed: Xm/Traversal.h + Fixed: ansi/math.h + Fixed: ansi/stdlib.h + Fixed: arch/i960/archI960.h + Fixed: architecture/ppc/math.h + Fixed: assert.h + Fixed: bits/huge_val.h + Fixed: bits/string2.h + Fixed: bsd/libc.h + Fixed: c_asm.h + Fixed: com_err.h + Fixed: ctrl-quotes-def-1.h + Fixed: ctype.h + Fixed: curses.h + Fixed: errno.h + Fixed: features.h + Fixed: fixinc-test-limits.h + Fixed: hsfs/hsfs_spec.h + Fixed: ia64/sys/getppdp.h + Fixed: internal/math_core.h + Fixed: internal/sgimacros.h + Fixed: internal/wchar_core.h + Fixed: inttypes.h + Fixed: io-quotes-def-1.h + Fixed: iso/math_c99.h + Fixed: mach-o/dyld.h + Fixed: mach-o/swap.h + Fixed: malloc.h + Fixed: math.h + Fixed: netdnet/dnetdb.h + Fixed: netinet/in.h + Fixed: netinet/ip.h + Fixed: obstack.h + Fixed: pixrect/memvar.h + Fixed: pthread.h + Fixed: reg_types.h + Fixed: regex.h + Fixed: regexp.h + Fixed: rpc/auth.h + Fixed: rpc/rpc.h + Fixed: rpc/xdr.h + Fixed: rpcsvc/rstat.h + Fixed: rpcsvc/rusers.h + Fixed: signal.h + Fixed: sparc/asm_linkage.h + Fixed: standards.h + Fixed: stdint.h + Fixed: stdio.h + Fixed: stdio_tag.h + Fixed: stdlib.h + Fixed: string.h + Fixed: strings.h + Fixed: sundev/vuid_event.h + Fixed: sunwindow/win_lock.h + Fixed: sym.h + Fixed: sys/asm.h + Fixed: sys/cdefs.h + Fixed: sys/file.h + Fixed: sys/limits.h + Fixed: sys/machine.h + Fixed: sys/mman.h + Fixed: sys/pthread.h + Fixed: sys/signal.h + Fixed: sys/socket.h + Fixed: sys/spinlock.h + Fixed: sys/stat.h + Fixed: sys/sysmacros.h + Fixed: sys/time.h + Fixed: sys/types.h + Fixed: sys/ucontext.h + Fixed: sys/wait.h + Fixed: testing.h + Fixed: time.h + Fixed: tinfo.h + Fixed: types/vxTypesBase.h + Fixed: unistd.h + Fixed: wchar.h + + All fixinclude tests pass + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/fixincludes' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/gcc' + test -d testsuite || mkdir testsuite + test -d testsuite/gcc || mkdir testsuite/gcc + (rootme=`${PWDCMD-pwd}`; export rootme; \ + srcdir=`cd ../../trunk.work/gcc; ${PWDCMD-pwd}` ; export srcdir ; \ + cd testsuite/gcc; \ + rm -f tmp-site.exp; \ + sed '/set tmpdir/ s|testsuite|testsuite/gcc|' \ + < ../../site.exp > tmp-site.exp; \ + /bin/sh ${srcdir}/../move-if-change tmp-site.exp site.exp; \ + EXPECT=expect ; export EXPECT ; \ + if [ -f ${rootme}/../expect/expect ] ; then \ + TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWDCMD-pwd}` ; \ + export TCL_LIBRARY ; fi ; \ + GCC_EXEC_PREFIX="/home/tschwinge/tmp/gcc/trunk.work.build.install/lib/gcc/" ; export GCC_EXEC_PREFIX ; \ + runtest --tool gcc ) + Test Run By tschwinge on Thu Oct 23 08:42:42 2008 + Native configuration is i386-unknown-gnu0.3 + + === gcc tests === + + Schedule of variations: + unix + + Running target unix + Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target. + Using /usr/share/dejagnu/config/unix.exp as generic interface file for target. + Using /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/config/default.exp as tool-and-target-specific interface file. + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/compile/compile.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/builtins/builtins.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/execute.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/unsorted/unsorted.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/autopar/autopar.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/charset/charset.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/compat/compat.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/compat/struct-layout-1.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/cpp/cpp.exp ... + FAIL: gcc.dg/cpp/_Pragma3.c -fno-show-column (test for excess errors) + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/cpp/trad/trad.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/debug/debug.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2.exp ... + FAIL: gcc.dg/debug/dwarf2/dwarf-die3.c scan-assembler-not DW_AT_inline + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/dfp/dfp.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/dg.exp ... + FAIL: gcc.dg/20021014-1.c (test for excess errors) + FAIL: gcc.dg/cleanup-12.c (test for excess errors) + FAIL: gcc.dg/cleanup-5.c (test for excess errors) + FAIL: gcc.dg/nest.c (test for excess errors) + FAIL: gcc.dg/nested-func-4.c (test for excess errors) + FAIL: gcc.dg/pr32450.c (test for excess errors) + FAIL: gcc.dg/pr33645-3.c scan-assembler-not var1_t + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/fixed-point/fixed-point.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/format/format.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/gomp/gomp.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/graphite/graphite.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/ipa/ipa.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/matrix/matrix.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/noncompile/noncompile.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/pch/pch.exp ... + FAIL: gcc.dg/pch/valid-1b.c -O0 -g -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O0 -g assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -O0 -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O0 assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -O1 -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O1 assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -O2 -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O2 assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -O3 -fomit-frame-pointer -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O3 -fomit-frame-pointer assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -O3 -g -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -O3 -g assembly comparison + FAIL: gcc.dg/pch/valid-1b.c -Os -I. (test for excess errors) + FAIL: gcc.dg/pch/valid-1b.c -Os assembly comparison + FAIL: largefile.c -O0 -g -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O0 -g assembly comparison + FAIL: largefile.c -O0 -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O0 assembly comparison + FAIL: largefile.c -O1 -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O1 assembly comparison + FAIL: largefile.c -O2 -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O2 assembly comparison + FAIL: largefile.c -O3 -fomit-frame-pointer -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O3 -fomit-frame-pointer assembly comparison + FAIL: largefile.c -O3 -g -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -O3 -g assembly comparison + FAIL: largefile.c -Os -I. (test for excess errors) + FAIL: gcc.dg/pch/largefile.c -Os assembly comparison + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/special/mips-abi.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/special/special.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/struct/struct-reorg.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tls/tls.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/torture/dg-torture.exp ... + FAIL: gcc.dg/torture/fp-int-convert-float128.c -O0 (test for excess errors) + FAIL: gcc.dg/torture/fp-int-convert-float128.c -O1 (test for excess errors) + FAIL: gcc.dg/torture/fp-int-convert-float128.c -O2 (test for excess errors) + FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -fomit-frame-pointer (test for excess errors) + FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -g (test for excess errors) + FAIL: gcc.dg/torture/fp-int-convert-float128.c -Os (test for excess errors) + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/torture/stackalign/stackalign.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tree-prof/tree-prof.exp ... + Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp ... + XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times optimized "link_error" 0 -- cgit v1.2.3 From 4330627c10314d5495b7e93989b2a608d705de09 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Mon, 20 Jul 2009 15:09:12 +0200 Subject: open_issues/gdb_testsuite: New. --- open_issues/gdb_testsuite.mdwn | 299 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 299 insertions(+) create mode 100644 open_issues/gdb_testsuite.mdwn (limited to 'open_issues') diff --git a/open_issues/gdb_testsuite.mdwn b/open_issues/gdb_testsuite.mdwn new file mode 100644 index 00000000..5a5bd1f3 --- /dev/null +++ b/open_issues/gdb_testsuite.mdwn @@ -0,0 +1,299 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!meta title="GDB testsuite"]] + +[[!tag open_issue_gdb]] + +Here's a log of a GDB testsuite run; this is from 2009-07-20 HEAD sources. + + make[1]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd' + Making check in doc + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/doc' + make[3]: Nothing to be done for `check'. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/doc' + Making check in po + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/po' + make[3]: Nothing to be done for `check'. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/po' + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd' + make[3]: Nothing to be done for `check-am'. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd' + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes' + Making check in po + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes/po' + make[3]: Nothing to be done for `check'. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes/po' + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes' + make[3]: Nothing to be done for `check-am'. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes' + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/etc' + make[2]: Nothing to be done for `check'. + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/etc' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/intl' + make[2]: Nothing to be done for `check'. + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/intl' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libdecnumber' + make[2]: Nothing to be done for `check'. + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libdecnumber' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty' + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty/testsuite' + gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include -o test-demangle \ + ../../../HEAD/src/libiberty/testsuite/test-demangle.c ../libiberty.a + ./test-demangle < ../../../HEAD/src/libiberty/testsuite/demangle-expected + ./test-demangle: 777 tests, 0 failures + gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include -DHAVE_CONFIG_H -I.. -o test-pexecute \ + ../../../HEAD/src/libiberty/testsuite/test-pexecute.c ../libiberty.a + ./test-pexecute + gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include -DHAVE_CONFIG_H -I.. -o test-expandargv \ + ../../../HEAD/src/libiberty/testsuite/test-expandargv.c ../libiberty.a + ./test-expandargv + PASS: test-expandargv-0. + PASS: test-expandargv-1. + PASS: test-expandargv-2. + PASS: test-expandargv-3. + make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty/testsuite' + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/readline' + make[2]: Nothing to be done for `check'. + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/readline' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/sim' + make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/sim' + make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb' + make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite' + make -k check-gdb.base1 check-gdb.base2 check-gdb.ada check-gdb.arch check-gdb.asm check-gdb.cp check-gdb.disasm check-gdb.dwarf2 check-gdb.fortran check-gdb.gdb check-gdb.java check-gdb.mi check-gdb.modula2 check-gdb.objc check-gdb.opt check-gdb.pascal check-gdb.python check-gdb.reverse check-gdb.server check-gdb.stabs check-gdb.threads check-gdb.trace check-gdb.xml; \ + /bin/sh ../../../HEAD/src/gdb/testsuite/dg-extract-results.sh \ + gdb.base1/gdb.sum gdb.base2/gdb.sum gdb.ada/gdb.sum gdb.arch/gdb.sum gdb.asm/gdb.sum gdb.cp/gdb.sum gdb.disasm/gdb.sum gdb.dwarf2/gdb.sum gdb.fortran/gdb.sum gdb.gdb/gdb.sum gdb.java/gdb.sum gdb.mi/gdb.sum gdb.modula2/gdb.sum gdb.objc/gdb.sum gdb.opt/gdb.sum gdb.pascal/gdb.sum gdb.python/gdb.sum gdb.reverse/gdb.sum gdb.server/gdb.sum gdb.stabs/gdb.sum gdb.threads/gdb.sum gdb.trace/gdb.sum gdb.xml/gdb.sum > gdb.sum; \ + /bin/sh ../../../HEAD/src/gdb/testsuite/dg-extract-results.sh -L \ + gdb.base1/gdb.log gdb.base2/gdb.log gdb.ada/gdb.log gdb.arch/gdb.log gdb.asm/gdb.log gdb.cp/gdb.log gdb.disasm/gdb.log gdb.dwarf2/gdb.log gdb.fortran/gdb.log gdb.gdb/gdb.log gdb.java/gdb.log gdb.mi/gdb.log gdb.modula2/gdb.log gdb.objc/gdb.log gdb.opt/gdb.log gdb.pascal/gdb.log gdb.python/gdb.log gdb.reverse/gdb.log gdb.server/gdb.log gdb.stabs/gdb.log gdb.threads/gdb.log gdb.trace/gdb.log gdb.xml/gdb.log > gdb.log + make[4]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite' + Nothing to be done for all... + Making a new config file... + rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest gdb.base/a2-run.exp gdb.base/advance.exp gdb.base/all-bin.exp gdb.base/annota1.exp gdb.base/annota3.exp gdb.base/args.exp gdb.base/arithmet.exp gdb.base/arrayidx.exp gdb.base/assign.exp gdb.base/async.exp gdb.base/attach.exp gdb.base/auxv.exp gdb.base/bang.exp gdb.base/bfp-test.exp gdb.base/bigcore.exp gdb.base/bitfields.exp gdb.base/bitfields2.exp gdb.base/bitops.exp gdb.base/break-always.exp gdb.base/break.exp gdb.base/breakpoint-shadow.exp gdb.base/call-ar-st.exp gdb.base/call-rt-st.exp gdb.base/call-sc.exp gdb.base/call-signal-resume.exp gdb.base/call-strs.exp gdb.base/callexit.exp gdb.base/callfuncs.exp gdb.base/charset.exp gdb.base/checkpoint.exp gdb.base/chng-syms.exp gdb.base/code-expr.exp gdb.base/commands.exp gdb.base/completion.exp gdb.base/complex.exp gdb.base/cond-expr.exp gdb.base/condbreak.exp gdb.base/consecutive.exp gdb.base/constvars.exp gdb.base/corefile.exp gdb.base/cursal.exp gdb.base/cvexpr.exp gdb.base/dbx.exp gdb.base/default.exp gdb.base/define.exp gdb.base/del.exp gdb.base/detach.exp gdb.base/dfp-exprs.exp gdb.base/dfp-test.exp gdb.base/display.exp gdb.base/dump.exp gdb.base/echo.exp gdb.base/ena-dis-br.exp gdb.base/ending-run.exp gdb.base/environ.exp gdb.base/eval-skip.exp gdb.base/exe-lock.exp gdb.base/expand-psymtabs.exp gdb.base/exprs.exp gdb.base/fileio.exp gdb.base/find.exp gdb.base/finish.exp gdb.base/fixsection.exp gdb.base/float.exp gdb.base/foll-exec.exp gdb.base/foll-fork.exp gdb.base/foll-vfork.exp gdb.base/frame-args.exp gdb.base/freebpcmd.exp gdb.base/fullname.exp gdb.base/funcargs.exp gdb.base/gcore-buffer-overflow.exp gdb.base/gcore.exp gdb.base/gdb1056.exp gdb.base/gdb1090.exp gdb.base/gdb1250.exp gdb.base/gdb1555.exp gdb.base/gdb1821.exp gdb.base/gdbvars.exp gdb.base/hashline1.exp gdb.base/hashline2.exp gdb.base/hashline3.exp gdb.base/help.exp gdb.base/hook-stop-continue.exp gdb.base/hook-stop-frame.exp gdb.base/huge.exp gdb.base/ifelse.exp gdb.base/included.exp gdb.base/infnan.exp gdb.base/info-proc.exp gdb.base/info-target.exp gdb.base/interp.exp gdb.base/interrupt.exp gdb.base/jump.exp gdb.base/langs.exp gdb.base/lineinc.exp gdb.base/list.exp gdb.base/logical.exp gdb.base/long_long.exp gdb.base/longjmp.exp gdb.base/macscp.exp gdb.base/maint.exp gdb.base/mips_pro.exp gdb.base/miscexprs.exp gdb.base/multi-forks.exp --outdir gdb.base1 + Test Run By tschwinge on Mon Jul 20 12:26:55 2009 + Native configuration is i386-unknown-gnu0.3 + + === gdb tests === + + Schedule of variations: + unix + + Running target unix + Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target. + Using /usr/share/dejagnu/config/unix.exp as generic interface file for target. + Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file. + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gcore.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/exe-lock.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/complex.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdbvars.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/condbreak.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/detach.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/breakpoint-shadow.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bigcore.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/jump.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/multi-forks.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/frame-args.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/dbx.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/echo.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/all-bin.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitfields2.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1821.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/environ.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/infnan.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/advance.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/commands.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/callfuncs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/define.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-fork.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/auxv.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/interrupt.exp ... + FAIL: gdb.base/interrupt.exp: Send Control-C, second time + FAIL: gdb.base/interrupt.exp: send end of file + Running ../../../HEAD/src/gdb/testsuite/gdb.base/a2-run.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-signal-resume.exp ... + FAIL: gdb.base/call-signal-resume.exp: dummy stack frame number + XPASS: gdb.base/call-signal-resume.exp: frame + FAIL: gdb.base/call-signal-resume.exp: continue to breakpoint at stop_two + FAIL: gdb.base/call-signal-resume.exp: continue to receipt of signal (timeout) + FAIL: gdb.base/call-signal-resume.exp: break null_hand_call (timeout) + FAIL: gdb.base/call-signal-resume.exp: null_hand_call (timeout) + FAIL: gdb.base/call-signal-resume.exp: dummy stack frame number + FAIL: gdb.base/call-signal-resume.exp: set confirm off (timeout) + FAIL: gdb.base/call-signal-resume.exp: return (timeout) + FAIL: gdb.base/call-signal-resume.exp: break handle_signal (timeout) + FAIL: gdb.base/call-signal-resume.exp: continue to breakpoint at handle_signal (timeout) + FAIL: gdb.base/call-signal-resume.exp: continue to program exit (timeout) + Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline2.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/async.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/callexit.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/freebpcmd.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/corefile.exp ... + WARNING: can't generate a core file - core tests suppressed - check ulimit -c + Running ../../../HEAD/src/gdb/testsuite/gdb.base/hook-stop-frame.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/info-proc.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/arithmet.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-sc.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/info-target.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/expand-psymtabs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/checkpoint.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/cond-expr.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/consecutive.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/help.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/finish.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/lineinc.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/annota1.exp ... + FAIL: gdb.base/annota1.exp: run until main breakpoint + FAIL: gdb.base/annota1.exp: send SIGUSR1 (timeout) + FAIL: gdb.base/annota1.exp: backtrace @ signal handler (timeout) + FAIL: gdb.base/annota1.exp: delete bp 1 (timeout) + FAIL: gdb.base/annota1.exp: delete bp 2 (timeout) + FAIL: gdb.base/annota1.exp: delete bp 3 (timeout) + FAIL: gdb.base/annota1.exp: break at 28 (timeout) + FAIL: gdb.base/annota1.exp: set up display (timeout) + FAIL: gdb.base/annota1.exp: re-run (timeout) + FAIL: gdb.base/annota1.exp: break at 46 (timeout) + FAIL: gdb.base/annota1.exp: ignore 5 4 (timeout) + FAIL: gdb.base/annota1.exp: annotate ignore count change (timeout) + FAIL: gdb.base/annota1.exp: next to exit loop + FAIL: gdb.base/annota1.exp: breakpoint ignore count (timeout) + FAIL: gdb.base/annota1.exp: signal sent (timeout) + FAIL: gdb.base/annota1.exp: thread switch (timeout) + Running ../../../HEAD/src/gdb/testsuite/gdb.base/logical.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/fixsection.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/annota3.exp ... + FAIL: gdb.base/annota3.exp: send SIGUSR1 (pattern 4) (timeout) + FAIL: gdb.base/annota3.exp: backtrace @ signal handler (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: delete bp 1 (pattern 1 + sentinel) (timeout) + FAIL: gdb.base/annota3.exp: delete bp 2 (pattern 1 + sentinel) (timeout) + FAIL: gdb.base/annota3.exp: delete bp 3 (pattern 1 + sentinel) (timeout) + FAIL: gdb.base/annota3.exp: break at 28 (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: set up display (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: re-run (timeout) + FAIL: gdb.base/annota3.exp: break at 46 (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: ignore 5 4 (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: annotate ignore count change (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: next to exit loop (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: breakpoint ignore count (pattern 1) (timeout) + FAIL: gdb.base/annota3.exp: signal sent (pattern 1) (timeout) + Running ../../../HEAD/src/gdb/testsuite/gdb.base/args.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/hook-stop-continue.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/display.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/ifelse.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1056.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitops.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/completion.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/list.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/long_long.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bang.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/mips_pro.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/dfp-exprs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/interp.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/exprs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/ena-dis-br.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/langs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline1.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/assign.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-strs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/default.exp ... + FAIL: gdb.base/default.exp: show convenience + Running ../../../HEAD/src/gdb/testsuite/gdb.base/dump.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline3.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-exec.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/ending-run.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/dfp-test.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/fileio.exp ... + FAIL: gdb.base/fileio.exp: Stat a NULL pathname returns ENOENT or EFAULT + FAIL: gdb.base/fileio.exp: Stat an empty pathname returns ENOENT + FAIL: gdb.base/fileio.exp: Stat a nonexistant file returns ENOENT (the program is no longer running) + FAIL: gdb.base/fileio.exp: Fstat an open file (the program is no longer running) + FAIL: gdb.base/fileio.exp: Fstat an invalid file descriptor returns EBADF (the program is no longer running) + FAIL: gdb.base/fileio.exp: Isatty (stdin) (the program is no longer running) + FAIL: gdb.base/fileio.exp: Isatty (stdout) (the program is no longer running) + FAIL: gdb.base/fileio.exp: Isatty (stderr) (the program is no longer running) + FAIL: gdb.base/fileio.exp: Isatty (invalid fd) (the program is no longer running) + FAIL: gdb.base/fileio.exp: Isatty (open file) (the program is no longer running) + FAIL: gdb.base/fileio.exp: System says shell is available (the program is no longer running) + FAIL: gdb.base/fileio.exp: System(3) call (the program is no longer running) + FAIL: gdb.base/fileio.exp: System with invalid command returns 127 (the program is no longer running) + FAIL: gdb.base/fileio.exp: Rename a file (the program is no longer running) + FAIL: gdb.base/fileio.exp: Renaming a file to existing directory returns EISDIR (the program is no longer running) + FAIL: gdb.base/fileio.exp: Renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST (the program is no longer running) + FAIL: gdb.base/fileio.exp: Renaming a directory to a subdir of itself returns EINVAL (the program is no longer running) + FAIL: gdb.base/fileio.exp: Renaming a nonexistant file returns ENOENT (the program is no longer running) + FAIL: gdb.base/fileio.exp: Unlink a file (the program is no longer running) + FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES (the program is no longer running) + FAIL: gdb.base/fileio.exp: Unlinking a nonexistant file returns ENOENT (the program is no longer running) + FAIL: gdb.base/fileio.exp: Time(2) call returns the same value as in parameter (the program is no longer running) + FAIL: gdb.base/fileio.exp: Time(2) returns feasible values (the program is no longer running) + Running ../../../HEAD/src/gdb/testsuite/gdb.base/huge.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/find.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/eval-skip.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/arrayidx.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1555.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/attach.exp ... + FAIL: gdb.base/attach.exp: attach to nonsense is prohibited (bogus pid allowed) + FAIL: gdb.base/attach.exp: attach to nonexistent process is prohibited + FAIL: gdb.base/attach.exp: attach1, after setting file + FAIL: gdb.base/attach.exp: attach1 detach + FAIL: gdb.base/attach.exp: set file, before attach2 + FAIL: gdb.base/attach.exp: after attach2, set tbreak postloop + FAIL: gdb.base/attach.exp: (timeout) after attach2, reach tbreak postloop + FAIL: gdb.base/attach.exp: after attach2, exit (timeout) + FAIL: gdb.base/attach.exp: set source path (the program is no longer running) + FAIL: gdb.base/attach.exp: cd away from process working directory + FAIL: gdb.base/attach.exp: before attach3, flush symbols + FAIL: gdb.base/attach.exp: before attach3, flush exec + FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd + FAIL: gdb.base/attach.exp: after attach3, exit + FAIL: gdb.base/attach.exp: attach call + FAIL: gdb.base/attach.exp: c + Running ../../../HEAD/src/gdb/testsuite/gdb.base/break.exp ... + FAIL: gdb.base/break.exp: breakpoint at start of multi line while conditional + FAIL: gdb.base/break.exp: breakpoint info + Running ../../../HEAD/src/gdb/testsuite/gdb.base/del.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/miscexprs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/float.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/longjmp.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/code-expr.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/included.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-ar-st.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/cvexpr.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/maint.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/funcargs.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/chng-syms.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-vfork.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/charset.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/cursal.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/break-always.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-rt-st.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/constvars.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/fullname.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1250.exp ... + FAIL: gdb.base/gdb1250.exp: running to abort in runto + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bfp-test.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitfields.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/macscp.exp ... + Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1090.exp ... + + === gdb Summary === + + # of expected passes 3876 + # of unexpected failures 86 + # of unexpected successes 1 + # of expected failures 6 + # of known failures 19 + # of untested testcases 1 + # of unsupported tests 4 + /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version 6.8.50.20090720-cvs -nw -nx + -- cgit v1.2.3 From ee171038e27e5288e6606f8affb20faabd6daf40 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 21 Jul 2009 20:06:47 +0200 Subject: open_issues/user-space_device_drivers: Event objects. --- open_issues/user-space_device_drivers.mdwn | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'open_issues') diff --git a/open_issues/user-space_device_drivers.mdwn b/open_issues/user-space_device_drivers.mdwn index 43795705..33e75942 100644 --- a/open_issues/user-space_device_drivers.mdwn +++ b/open_issues/user-space_device_drivers.mdwn @@ -27,6 +27,11 @@ Also see [[device drivers and IO systems]]. * *Omega0* paper defines an interface. + * As is can be read in the *Mach 3 Kernel Principles*, there is an *event + object* facility in Mach that can be used for having user-space tasks react + to IRQs. However, at least in GNU Mach, that code (`kern/eventcount.c`) + doesn't seem functional at all and isn't integrated properly in the kernel. + ## DMA * Security considerations. -- cgit v1.2.3 From a749f2fbd69ce550d6397e291b14a795b96ba2c9 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 21 Jul 2009 20:07:13 +0200 Subject: open_issues/xen_crash_copy-size_le_page_size: GDB on mkfs.ext2. --- open_issues/xen_crash_copy-size_le_page_size.mdwn | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'open_issues') diff --git a/open_issues/xen_crash_copy-size_le_page_size.mdwn b/open_issues/xen_crash_copy-size_le_page_size.mdwn index 09287274..58784e96 100644 --- a/open_issues/xen_crash_copy-size_le_page_size.mdwn +++ b/open_issues/xen_crash_copy-size_le_page_size.mdwn @@ -63,3 +63,17 @@ License|/fdl]]."]]"""]] /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/ipc/mach_msg.c:1367 mach_call_call /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/i386/i386/locore.S:1083 + +GDB on `mkfs.ext2`: + + raw_write_blk (channel=0x80829d8, data=0x8082a40, block=524272, count=8, buf=0x80a0a60) at ../../../git/lib/ext2fs/unix_io.c:272 + 272 actual = write(data->dev, buf, size); + (gdb) print size + $4 = 32768 + (gdb) bt + #0 raw_write_blk (channel=0x80829d8, data=0x8082a40, block=524272, count=8, buf=0x80a0a60) at ../../../git/lib/ext2fs/unix_io.c:272 + #1 0x080635fc in unix_write_blk64 (channel=0x80829d8, block=524272, count=8, buf=0x80a0a60) at ../../../git/lib/ext2fs/unix_io.c:673 + #2 0x0806373c in unix_write_blk (channel=0x80829d8, block=524272, count=8, buf=0x80a0a60) at ../../../git/lib/ext2fs/unix_io.c:705 + #3 0x0805e87d in ext2fs_zero_blocks (fs=0x8082940, blk=524272, num=16, ret_blk=0x15ffb1c, ret_count=0x0) + at ../../../git/lib/ext2fs/mkjournal.c:182 + #4 0x0804ec56 in main (argc=131072, argv=0x80000) at ../../git/misc/mke2fs.c:2032 -- cgit v1.2.3 From 3e2693546860d12d9b6976e173512ac9429fea51 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 28 Jul 2009 10:55:26 +0200 Subject: open_issues/open_posix_test_suite: New. --- open_issues/open_posix_test_suite.mdwn | 4771 ++++++++++++++++++++++++++++++++ 1 file changed, 4771 insertions(+) create mode 100644 open_issues/open_posix_test_suite.mdwn (limited to 'open_issues') diff --git a/open_issues/open_posix_test_suite.mdwn b/open_issues/open_posix_test_suite.mdwn new file mode 100644 index 00000000..63aea961 --- /dev/null +++ b/open_issues/open_posix_test_suite.mdwn @@ -0,0 +1,4771 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!meta title="Open POSIX Test Suite"]] + +Here's a log of a [Open POSIX Test Suite](http://posixtest.sourceforge.net/) +run (get sources, `make`, inspect `logfile`); this is from 2009-07-27 HEAD +sources on a 2009-07-27 Debian GNU/Hurd system. + +The tests that failed as *INTERRUPTED* were hanging and have manually been +interrupted using `kill [PID]`. + + conformance/behavior/WIFEXITED/1-1: build: PASS + conformance/behavior/WIFEXITED/1-1: link: PASS + conformance/behavior/WIFEXITED/1-2: build: PASS + conformance/behavior/WIFEXITED/1-2: link: PASS + conformance/behavior/WIFEXITED/1-3: build: PASS + conformance/behavior/WIFEXITED/1-3: link: PASS + conformance/behavior/timers/1-1: build: PASS + conformance/behavior/timers/1-1: link: PASS + conformance/behavior/timers/2-1: build: PASS + conformance/behavior/timers/2-1: link: PASS + conformance/definitions/aio_h/1-1: build: PASS + conformance/definitions/aio_h/1-1: link: SKIP + conformance/definitions/aio_h/1-2: build: PASS + conformance/definitions/aio_h/1-2: link: SKIP + conformance/definitions/aio_h/2-1: build: PASS + conformance/definitions/aio_h/2-1: link: PASS + conformance/definitions/aio_h/3-1: build: PASS + conformance/definitions/aio_h/3-1: link: SKIP + conformance/definitions/aio_h/4-1: build: PASS + conformance/definitions/aio_h/4-1: link: PASS + conformance/definitions/errno_h/1-1: build: PASS + conformance/definitions/errno_h/1-1: link: SKIP + conformance/definitions/errno_h/2-1: build: PASS + conformance/definitions/errno_h/2-1: link: SKIP + conformance/definitions/errno_h/3-1: build: PASS + conformance/definitions/errno_h/3-1: link: SKIP + conformance/definitions/errno_h/3-2: build: PASS + conformance/definitions/errno_h/3-2: link: PASS + conformance/definitions/errno_h/4-1: build: PASS + conformance/definitions/errno_h/4-1: link: PASS + conformance/definitions/mqueue_h/1-1: build: PASS + conformance/definitions/mqueue_h/1-1: link: PASS + conformance/definitions/mqueue_h/10-1: build: PASS + conformance/definitions/mqueue_h/10-1: link: PASS + conformance/definitions/mqueue_h/11-1: build: PASS + conformance/definitions/mqueue_h/11-1: link: PASS + conformance/definitions/mqueue_h/2-1: build: PASS + conformance/definitions/mqueue_h/2-1: link: PASS + conformance/definitions/mqueue_h/3-1: build: PASS + conformance/definitions/mqueue_h/3-1: link: PASS + conformance/definitions/mqueue_h/4-1: build: PASS + conformance/definitions/mqueue_h/4-1: link: PASS + conformance/definitions/mqueue_h/5-1: build: PASS + conformance/definitions/mqueue_h/5-1: link: PASS + conformance/definitions/mqueue_h/6-1: build: PASS + conformance/definitions/mqueue_h/6-1: link: PASS + conformance/definitions/mqueue_h/7-1: build: PASS + conformance/definitions/mqueue_h/7-1: link: PASS + conformance/definitions/mqueue_h/8-1: build: PASS + conformance/definitions/mqueue_h/8-1: link: PASS + conformance/definitions/mqueue_h/9-1: build: PASS + conformance/definitions/mqueue_h/9-1: link: PASS + conformance/definitions/pthread_h/1-1: build: PASS + conformance/definitions/pthread_h/1-1: link: SKIP + conformance/definitions/pthread_h/11-1: build: PASS + conformance/definitions/pthread_h/11-1: link: SKIP + conformance/definitions/pthread_h/12-1: build: PASS + conformance/definitions/pthread_h/12-1: link: SKIP + conformance/definitions/pthread_h/13-1: build: PASS + conformance/definitions/pthread_h/13-1: link: SKIP + conformance/definitions/pthread_h/14-1: build: PASS + conformance/definitions/pthread_h/14-1: link: SKIP + conformance/definitions/pthread_h/15-1: build: PASS + conformance/definitions/pthread_h/15-1: link: SKIP + conformance/definitions/pthread_h/16-1: build: PASS + conformance/definitions/pthread_h/16-1: link: SKIP + conformance/definitions/pthread_h/17-1: build: PASS + conformance/definitions/pthread_h/17-1: link: SKIP + conformance/definitions/pthread_h/18-1: build: PASS + conformance/definitions/pthread_h/18-1: link: SKIP + conformance/definitions/pthread_h/19-1: build: PASS + conformance/definitions/pthread_h/19-1: link: SKIP + conformance/definitions/pthread_h/2-1: build: PASS + conformance/definitions/pthread_h/2-1: link: SKIP + conformance/definitions/pthread_h/2-2: build: PASS + conformance/definitions/pthread_h/2-2: link: SKIP + conformance/definitions/pthread_h/20-1: build: PASS + conformance/definitions/pthread_h/20-1: link: SKIP + conformance/definitions/pthread_h/3-1: build: PASS + conformance/definitions/pthread_h/3-1: link: SKIP + conformance/definitions/pthread_h/3-10: build: PASS + conformance/definitions/pthread_h/3-10: link: SKIP + conformance/definitions/pthread_h/3-11: build: PASS + conformance/definitions/pthread_h/3-11: link: SKIP + conformance/definitions/pthread_h/3-12: build: PASS + conformance/definitions/pthread_h/3-12: link: SKIP + conformance/definitions/pthread_h/3-13: build: PASS + conformance/definitions/pthread_h/3-13: link: SKIP + conformance/definitions/pthread_h/3-2: build: PASS + conformance/definitions/pthread_h/3-2: link: SKIP + conformance/definitions/pthread_h/3-3: build: PASS + conformance/definitions/pthread_h/3-3: link: SKIP + conformance/definitions/pthread_h/3-4: build: PASS + conformance/definitions/pthread_h/3-4: link: SKIP + conformance/definitions/pthread_h/3-5: build: PASS + conformance/definitions/pthread_h/3-5: link: SKIP + conformance/definitions/pthread_h/3-6: build: PASS + conformance/definitions/pthread_h/3-6: link: SKIP + conformance/definitions/pthread_h/3-7: build: PASS + conformance/definitions/pthread_h/3-7: link: SKIP + conformance/definitions/pthread_h/3-8: build: PASS + conformance/definitions/pthread_h/3-8: link: SKIP + conformance/definitions/pthread_h/3-9: build: PASS + conformance/definitions/pthread_h/3-9: link: SKIP + conformance/definitions/pthread_h/4-1: build: PASS + conformance/definitions/pthread_h/4-1: link: SKIP + conformance/definitions/pthread_h/5-1: build: PASS + conformance/definitions/pthread_h/5-1: link: SKIP + conformance/definitions/pthread_h/6-1: build: PASS + conformance/definitions/pthread_h/6-1: link: SKIP + conformance/definitions/pthread_h/7-1: build: PASS + conformance/definitions/pthread_h/7-1: link: SKIP + conformance/definitions/pthread_h/8-1: build: PASS + conformance/definitions/pthread_h/8-1: link: SKIP + conformance/definitions/pthread_h/9-1: build: PASS + conformance/definitions/pthread_h/9-1: link: SKIP + conformance/definitions/sched_h/1-1: build: PASS + conformance/definitions/sched_h/1-1: link: SKIP + conformance/definitions/sched_h/10-1: build: PASS + conformance/definitions/sched_h/10-1: link: PASS + conformance/definitions/sched_h/11-1: build: PASS + conformance/definitions/sched_h/11-1: link: SKIP + conformance/definitions/sched_h/12-1: build: PASS + conformance/definitions/sched_h/12-1: link: SKIP + conformance/definitions/sched_h/13-1: build: PASS + conformance/definitions/sched_h/13-1: link: SKIP + conformance/definitions/sched_h/14-1: build: PASS + conformance/definitions/sched_h/14-1: link: SKIP + conformance/definitions/sched_h/15-1: build: PASS + conformance/definitions/sched_h/15-1: link: SKIP + conformance/definitions/sched_h/16-1: build: PASS + conformance/definitions/sched_h/16-1: link: SKIP + conformance/definitions/sched_h/17-1: build: PASS + conformance/definitions/sched_h/17-1: link: SKIP + conformance/definitions/sched_h/18-1: build: PASS + conformance/definitions/sched_h/18-1: link: SKIP + conformance/definitions/sched_h/19-1: build: PASS + conformance/definitions/sched_h/19-1: link: SKIP + conformance/definitions/sched_h/2-1: build: PASS + conformance/definitions/sched_h/2-1: link: SKIP + conformance/definitions/sched_h/3-1: build: PASS + conformance/definitions/sched_h/3-1: link: SKIP + conformance/definitions/sched_h/4-1: build: PASS + conformance/definitions/sched_h/4-1: link: SKIP + conformance/definitions/sched_h/8-1: build: PASS + conformance/definitions/sched_h/8-1: link: SKIP + conformance/definitions/sched_h/8-2: build: PASS + conformance/definitions/sched_h/8-2: link: SKIP + conformance/definitions/sched_h/8-3: build: PASS + conformance/definitions/sched_h/8-3: link: SKIP + conformance/definitions/sched_h/8-4: build: PASS + conformance/definitions/sched_h/8-4: link: SKIP + conformance/definitions/signal_h/1-1: build: PASS + conformance/definitions/signal_h/1-1: link: SKIP + conformance/definitions/signal_h/13-1: build: PASS + conformance/definitions/signal_h/13-1: link: PASS + conformance/definitions/signal_h/14-1: build: PASS + conformance/definitions/signal_h/14-1: link: SKIP + conformance/definitions/signal_h/15-1: build: PASS + conformance/definitions/signal_h/15-1: link: SKIP + conformance/definitions/signal_h/16-1: build: FAILED: Compiler output: + conformance/definitions/signal_h/16-1.c:14: error: ‘SA_SIGINFO’ undeclared here (not in a function) + conformance/definitions/signal_h/16-1.c:15: error: ‘SA_NOCLDWAIT’ undeclared here (not in a function) + conformance/definitions/signal_h/17-1: build: PASS + conformance/definitions/signal_h/17-1: link: SKIP + conformance/definitions/signal_h/18-1: build: PASS + conformance/definitions/signal_h/18-1: link: SKIP + conformance/definitions/signal_h/19-1: build: PASS + conformance/definitions/signal_h/19-1: link: SKIP + conformance/definitions/signal_h/2-1: build: PASS + conformance/definitions/signal_h/2-1: link: SKIP + conformance/definitions/signal_h/2-2: build: PASS + conformance/definitions/signal_h/2-2: link: SKIP + conformance/definitions/signal_h/2-3: build: PASS + conformance/definitions/signal_h/2-3: link: SKIP + conformance/definitions/signal_h/2-4: build: PASS + conformance/definitions/signal_h/2-4: link: SKIP + conformance/definitions/signal_h/20-1: build: PASS + conformance/definitions/signal_h/20-1: link: SKIP + conformance/definitions/signal_h/21-1: build: PASS + conformance/definitions/signal_h/21-1: link: SKIP + conformance/definitions/signal_h/22-1: build: PASS + conformance/definitions/signal_h/22-1: link: SKIP + conformance/definitions/signal_h/22-10: build: PASS + conformance/definitions/signal_h/22-10: link: SKIP + conformance/definitions/signal_h/22-11: build: PASS + conformance/definitions/signal_h/22-11: link: SKIP + conformance/definitions/signal_h/22-12: build: PASS + conformance/definitions/signal_h/22-12: link: SKIP + conformance/definitions/signal_h/22-13: build: PASS + conformance/definitions/signal_h/22-13: link: SKIP + conformance/definitions/signal_h/22-14: build: PASS + conformance/definitions/signal_h/22-14: link: SKIP + conformance/definitions/signal_h/22-15: build: PASS + conformance/definitions/signal_h/22-15: link: SKIP + conformance/definitions/signal_h/22-16: build: PASS + conformance/definitions/signal_h/22-16: link: SKIP + conformance/definitions/signal_h/22-17: build: PASS + conformance/definitions/signal_h/22-17: link: SKIP + conformance/definitions/signal_h/22-18: build: PASS + conformance/definitions/signal_h/22-18: link: SKIP + conformance/definitions/signal_h/22-19: build: PASS + conformance/definitions/signal_h/22-19: link: SKIP + conformance/definitions/signal_h/22-2: build: PASS + conformance/definitions/signal_h/22-2: link: SKIP + conformance/definitions/signal_h/22-20: build: PASS + conformance/definitions/signal_h/22-20: link: SKIP + conformance/definitions/signal_h/22-21: build: PASS + conformance/definitions/signal_h/22-21: link: SKIP + conformance/definitions/signal_h/22-22: build: PASS + conformance/definitions/signal_h/22-22: link: SKIP + conformance/definitions/signal_h/22-23: build: PASS + conformance/definitions/signal_h/22-23: link: SKIP + conformance/definitions/signal_h/22-24: build: PASS + conformance/definitions/signal_h/22-24: link: SKIP + conformance/definitions/signal_h/22-25: build: PASS + conformance/definitions/signal_h/22-25: link: SKIP + conformance/definitions/signal_h/22-26: build: PASS + conformance/definitions/signal_h/22-26: link: SKIP + conformance/definitions/signal_h/22-27: build: PASS + conformance/definitions/signal_h/22-27: link: SKIP + conformance/definitions/signal_h/22-28: build: PASS + conformance/definitions/signal_h/22-28: link: SKIP + conformance/definitions/signal_h/22-29: build: PASS + conformance/definitions/signal_h/22-29: link: SKIP + conformance/definitions/signal_h/22-3: build: PASS + conformance/definitions/signal_h/22-3: link: SKIP + conformance/definitions/signal_h/22-30: build: PASS + conformance/definitions/signal_h/22-30: link: SKIP + conformance/definitions/signal_h/22-31: build: PASS + conformance/definitions/signal_h/22-31: link: SKIP + conformance/definitions/signal_h/22-32: build: PASS + conformance/definitions/signal_h/22-32: link: SKIP + conformance/definitions/signal_h/22-33: build: PASS + conformance/definitions/signal_h/22-33: link: SKIP + conformance/definitions/signal_h/22-34: build: PASS + conformance/definitions/signal_h/22-34: link: SKIP + conformance/definitions/signal_h/22-35: build: PASS + conformance/definitions/signal_h/22-35: link: SKIP + conformance/definitions/signal_h/22-36: build: PASS + conformance/definitions/signal_h/22-36: link: SKIP + conformance/definitions/signal_h/22-37: build: PASS + conformance/definitions/signal_h/22-37: link: SKIP + conformance/definitions/signal_h/22-38: build: PASS + conformance/definitions/signal_h/22-38: link: SKIP + conformance/definitions/signal_h/22-39: build: PASS + conformance/definitions/signal_h/22-39: link: SKIP + conformance/definitions/signal_h/22-4: build: PASS + conformance/definitions/signal_h/22-4: link: SKIP + conformance/definitions/signal_h/22-40: build: PASS + conformance/definitions/signal_h/22-40: link: SKIP + conformance/definitions/signal_h/22-5: build: PASS + conformance/definitions/signal_h/22-5: link: SKIP + conformance/definitions/signal_h/22-6: build: PASS + conformance/definitions/signal_h/22-6: link: SKIP + conformance/definitions/signal_h/22-7: build: PASS + conformance/definitions/signal_h/22-7: link: SKIP + conformance/definitions/signal_h/22-8: build: PASS + conformance/definitions/signal_h/22-8: link: SKIP + conformance/definitions/signal_h/22-9: build: PASS + conformance/definitions/signal_h/22-9: link: SKIP + conformance/definitions/signal_h/23-1: build: PASS + conformance/definitions/signal_h/23-1: link: SKIP + conformance/definitions/signal_h/24-1: build: PASS + conformance/definitions/signal_h/24-1: link: SKIP + conformance/definitions/signal_h/25-1: build: PASS + conformance/definitions/signal_h/25-1: link: SKIP + conformance/definitions/signal_h/26-1: build: FAILED: Compiler output: + conformance/definitions/signal_h/26-1.c:9: error: expected ‘)’ before ‘int’ + conformance/definitions/signal_h/26-1.c: In function ‘dummyfcn’: + conformance/definitions/signal_h/26-1.c:13: error: ‘pthread_kill_test’ undeclared (first use in this function) + conformance/definitions/signal_h/26-1.c:13: error: (Each undeclared identifier is reported only once + conformance/definitions/signal_h/26-1.c:13: error: for each function it appears in.) + conformance/definitions/signal_h/26-1.c:13: error: expected ‘;’ before ‘dummyvar’ + conformance/definitions/signal_h/26-1.c:14: error: ‘dummyvar’ undeclared (first use in this function) + conformance/definitions/signal_h/26-1.c:14: error: ‘pthread_kill’ undeclared (first use in this function) + conformance/definitions/signal_h/27-1: build: PASS + conformance/definitions/signal_h/27-1: link: SKIP + conformance/definitions/signal_h/28-1: build: PASS + conformance/definitions/signal_h/28-1: link: SKIP + conformance/definitions/signal_h/29-1: build: PASS + conformance/definitions/signal_h/29-1: link: SKIP + conformance/definitions/signal_h/3-1: build: PASS + conformance/definitions/signal_h/3-1: link: SKIP + conformance/definitions/signal_h/30-1: build: PASS + conformance/definitions/signal_h/30-1: link: SKIP + conformance/definitions/signal_h/31-1: build: PASS + conformance/definitions/signal_h/31-1: link: SKIP + conformance/definitions/signal_h/32-1: build: PASS + conformance/definitions/signal_h/32-1: link: SKIP + conformance/definitions/signal_h/33-1: build: PASS + conformance/definitions/signal_h/33-1: link: SKIP + conformance/definitions/signal_h/34-1: build: PASS + conformance/definitions/signal_h/34-1: link: SKIP + conformance/definitions/signal_h/35-1: build: PASS + conformance/definitions/signal_h/35-1: link: SKIP + conformance/definitions/signal_h/36-1: build: PASS + conformance/definitions/signal_h/36-1: link: SKIP + conformance/definitions/signal_h/37-1: build: PASS + conformance/definitions/signal_h/37-1: link: SKIP + conformance/definitions/signal_h/38-1: build: PASS + conformance/definitions/signal_h/38-1: link: SKIP + conformance/definitions/signal_h/39-1: build: PASS + conformance/definitions/signal_h/39-1: link: SKIP + conformance/definitions/signal_h/4-1: build: PASS + conformance/definitions/signal_h/4-1: link: SKIP + conformance/definitions/signal_h/40-1: build: PASS + conformance/definitions/signal_h/40-1: link: SKIP + conformance/definitions/signal_h/41-1: build: PASS + conformance/definitions/signal_h/41-1: link: SKIP + conformance/definitions/signal_h/42-1: build: PASS + conformance/definitions/signal_h/42-1: link: SKIP + conformance/definitions/signal_h/43-1: build: PASS + conformance/definitions/signal_h/43-1: link: SKIP + conformance/definitions/signal_h/44-1: build: PASS + conformance/definitions/signal_h/44-1: link: SKIP + conformance/definitions/signal_h/45-1: build: PASS + conformance/definitions/signal_h/45-1: link: SKIP + conformance/definitions/signal_h/46-1: build: PASS + conformance/definitions/signal_h/46-1: link: SKIP + conformance/definitions/signal_h/47-1: build: PASS + conformance/definitions/signal_h/47-1: link: SKIP + conformance/definitions/signal_h/48-1: build: PASS + conformance/definitions/signal_h/48-1: link: SKIP + conformance/definitions/signal_h/49-1: build: PASS + conformance/definitions/signal_h/49-1: link: SKIP + conformance/definitions/signal_h/5-1: build: PASS + conformance/definitions/signal_h/5-1: link: SKIP + conformance/definitions/signal_h/50-1: build: PASS + conformance/definitions/signal_h/50-1: link: SKIP + conformance/definitions/sys/mman_h/1-1: build: PASS + conformance/definitions/sys/mman_h/1-1: link: SKIP + conformance/definitions/sys/mman_h/10-1: build: PASS + conformance/definitions/sys/mman_h/10-1: link: SKIP + conformance/definitions/sys/mman_h/11-1: build: PASS + conformance/definitions/sys/mman_h/11-1: link: SKIP + conformance/definitions/sys/mman_h/12-1: build: PASS + conformance/definitions/sys/mman_h/12-1: link: SKIP + conformance/definitions/sys/mman_h/13-1: build: PASS + conformance/definitions/sys/mman_h/13-1: link: SKIP + conformance/definitions/sys/mman_h/14-1: build: PASS + conformance/definitions/sys/mman_h/14-1: link: SKIP + conformance/definitions/sys/mman_h/15-1: build: PASS + conformance/definitions/sys/mman_h/15-1: link: SKIP + conformance/definitions/sys/mman_h/16-1: build: PASS + conformance/definitions/sys/mman_h/16-1: link: SKIP + conformance/definitions/sys/mman_h/17-1: build: PASS + conformance/definitions/sys/mman_h/17-1: link: SKIP + conformance/definitions/sys/mman_h/18-1: build: PASS + conformance/definitions/sys/mman_h/18-1: link: SKIP + conformance/definitions/sys/mman_h/19-1: build: PASS + conformance/definitions/sys/mman_h/19-1: link: SKIP + conformance/definitions/sys/mman_h/2-1: build: PASS + conformance/definitions/sys/mman_h/2-1: link: SKIP + conformance/definitions/sys/mman_h/2-2: build: PASS + conformance/definitions/sys/mman_h/2-2: link: SKIP + conformance/definitions/sys/mman_h/2-3: build: PASS + conformance/definitions/sys/mman_h/2-3: link: SKIP + conformance/definitions/sys/mman_h/2-4: build: PASS + conformance/definitions/sys/mman_h/2-4: link: SKIP + conformance/definitions/sys/mman_h/20-1: build: PASS + conformance/definitions/sys/mman_h/20-1: link: SKIP + conformance/definitions/sys/mman_h/21-1: build: PASS + conformance/definitions/sys/mman_h/21-1: link: SKIP + conformance/definitions/sys/mman_h/22-1: build: PASS + conformance/definitions/sys/mman_h/22-1: link: SKIP + conformance/definitions/sys/mman_h/23-1: build: PASS + conformance/definitions/sys/mman_h/23-1: link: SKIP + conformance/definitions/sys/mman_h/24-1: build: PASS + conformance/definitions/sys/mman_h/24-1: link: SKIP + conformance/definitions/sys/mman_h/3-1: build: PASS + conformance/definitions/sys/mman_h/3-1: link: SKIP + conformance/definitions/sys/mman_h/3-2: build: PASS + conformance/definitions/sys/mman_h/3-2: link: SKIP + conformance/definitions/sys/mman_h/3-3: build: PASS + conformance/definitions/sys/mman_h/3-3: link: SKIP + conformance/definitions/sys/mman_h/4-1: build: PASS + conformance/definitions/sys/mman_h/4-1: link: SKIP + conformance/definitions/sys/mman_h/4-2: build: PASS + conformance/definitions/sys/mman_h/4-2: link: SKIP + conformance/definitions/sys/mman_h/4-3: build: PASS + conformance/definitions/sys/mman_h/4-3: link: SKIP + conformance/definitions/sys/mman_h/5-1: build: PASS + conformance/definitions/sys/mman_h/5-1: link: SKIP + conformance/definitions/sys/mman_h/5-2: build: PASS + conformance/definitions/sys/mman_h/5-2: link: SKIP + conformance/definitions/sys/mman_h/6-1: build: PASS + conformance/definitions/sys/mman_h/6-1: link: SKIP + conformance/definitions/sys/mman_h/7-1: build: PASS + conformance/definitions/sys/mman_h/7-1: link: SKIP + conformance/definitions/sys/mman_h/7-2: build: PASS + conformance/definitions/sys/mman_h/7-2: link: SKIP + conformance/definitions/sys/mman_h/7-3: build: PASS + conformance/definitions/sys/mman_h/7-3: link: SKIP + conformance/definitions/sys/mman_h/7-4: build: PASS + conformance/definitions/sys/mman_h/7-4: link: SKIP + conformance/definitions/sys/mman_h/7-5: build: PASS + conformance/definitions/sys/mman_h/7-5: link: SKIP + conformance/definitions/sys/mman_h/8-1: build: PASS + conformance/definitions/sys/mman_h/8-1: link: SKIP + conformance/definitions/sys/mman_h/8-2: build: PASS + conformance/definitions/sys/mman_h/8-2: link: SKIP + conformance/definitions/sys/mman_h/8-3: build: PASS + conformance/definitions/sys/mman_h/8-3: link: SKIP + conformance/definitions/sys/mman_h/9-1: build: PASS + conformance/definitions/sys/mman_h/9-1: link: SKIP + conformance/definitions/sys/mman_h/9-2: build: PASS + conformance/definitions/sys/mman_h/9-2: link: SKIP + conformance/definitions/sys/mman_h/9-3: build: PASS + conformance/definitions/sys/mman_h/9-3: link: SKIP + conformance/definitions/sys/shm_h/1-1: build: PASS + conformance/definitions/sys/shm_h/1-1: link: SKIP + conformance/definitions/sys/shm_h/10-1: build: PASS + conformance/definitions/sys/shm_h/10-1: link: SKIP + conformance/definitions/sys/shm_h/11-1: build: PASS + conformance/definitions/sys/shm_h/11-1: link: SKIP + conformance/definitions/sys/shm_h/12-1: build: PASS + conformance/definitions/sys/shm_h/12-1: link: SKIP + conformance/definitions/sys/shm_h/12-2: build: PASS + conformance/definitions/sys/shm_h/12-2: link: SKIP + conformance/definitions/sys/shm_h/12-3: build: PASS + conformance/definitions/sys/shm_h/12-3: link: SKIP + conformance/definitions/sys/shm_h/2-1: build: PASS + conformance/definitions/sys/shm_h/2-1: link: SKIP + conformance/definitions/sys/shm_h/2-2: build: PASS + conformance/definitions/sys/shm_h/2-2: link: SKIP + conformance/definitions/sys/shm_h/3-1: build: PASS + conformance/definitions/sys/shm_h/3-1: link: SKIP + conformance/definitions/sys/shm_h/4-1: build: PASS + conformance/definitions/sys/shm_h/4-1: link: SKIP + conformance/definitions/sys/shm_h/5-1: build: PASS + conformance/definitions/sys/shm_h/5-1: link: SKIP + conformance/definitions/sys/shm_h/6-1: build: PASS + conformance/definitions/sys/shm_h/6-1: link: SKIP + conformance/definitions/sys/shm_h/7-1: build: PASS + conformance/definitions/sys/shm_h/7-1: link: SKIP + conformance/definitions/sys/shm_h/7-2: build: PASS + conformance/definitions/sys/shm_h/7-2: link: SKIP + conformance/definitions/sys/shm_h/7-3: build: PASS + conformance/definitions/sys/shm_h/7-3: link: SKIP + conformance/definitions/sys/shm_h/7-4: build: PASS + conformance/definitions/sys/shm_h/7-4: link: SKIP + conformance/definitions/sys/shm_h/8-1: build: PASS + conformance/definitions/sys/shm_h/8-1: link: SKIP + conformance/definitions/sys/shm_h/9-1: build: PASS + conformance/definitions/sys/shm_h/9-1: link: SKIP + conformance/definitions/time_h/1-1: build: PASS + conformance/definitions/time_h/1-1: link: SKIP + conformance/definitions/time_h/10-1: build: PASS + conformance/definitions/time_h/10-1: link: SKIP + conformance/definitions/time_h/11-1: build: PASS + conformance/definitions/time_h/11-1: link: SKIP + conformance/definitions/time_h/12-1: build: PASS + conformance/definitions/time_h/12-1: link: SKIP + conformance/definitions/time_h/13-1: build: PASS + conformance/definitions/time_h/13-1: link: SKIP + conformance/definitions/time_h/14-1: build: PASS + conformance/definitions/time_h/14-1: link: SKIP + conformance/definitions/time_h/15-1: build: PASS + conformance/definitions/time_h/15-1: link: SKIP + conformance/definitions/time_h/16-1: build: PASS + conformance/definitions/time_h/16-1: link: SKIP + conformance/definitions/time_h/17-1: build: PASS + conformance/definitions/time_h/17-1: link: SKIP + conformance/definitions/time_h/18-1: build: PASS + conformance/definitions/time_h/18-1: link: SKIP + conformance/definitions/time_h/19-1: build: PASS + conformance/definitions/time_h/19-1: link: SKIP + conformance/definitions/time_h/2-1: build: PASS + conformance/definitions/time_h/2-1: link: SKIP + conformance/definitions/time_h/20-1: build: PASS + conformance/definitions/time_h/20-1: link: SKIP + conformance/definitions/time_h/21-1: build: PASS + conformance/definitions/time_h/21-1: link: SKIP + conformance/definitions/time_h/22-1: build: PASS + conformance/definitions/time_h/22-1: link: SKIP + conformance/definitions/time_h/23-1: build: PASS + conformance/definitions/time_h/23-1: link: SKIP + conformance/definitions/time_h/24-1: build: PASS + conformance/definitions/time_h/24-1: link: SKIP + conformance/definitions/time_h/25-1: build: PASS + conformance/definitions/time_h/25-1: link: SKIP + conformance/definitions/time_h/26-1: build: PASS + conformance/definitions/time_h/26-1: link: SKIP + conformance/definitions/time_h/27-1: build: PASS + conformance/definitions/time_h/27-1: link: SKIP + conformance/definitions/time_h/28-1: build: PASS + conformance/definitions/time_h/28-1: link: SKIP + conformance/definitions/time_h/29-1: build: PASS + conformance/definitions/time_h/29-1: link: SKIP + conformance/definitions/time_h/3-1: build: PASS + conformance/definitions/time_h/3-1: link: SKIP + conformance/definitions/time_h/3-2: build: PASS + conformance/definitions/time_h/3-2: link: SKIP + conformance/definitions/time_h/3-3: build: PASS + conformance/definitions/time_h/3-3: link: SKIP + conformance/definitions/time_h/3-4: build: PASS + conformance/definitions/time_h/3-4: link: SKIP + conformance/definitions/time_h/30-1: build: PASS + conformance/definitions/time_h/30-1: link: SKIP + conformance/definitions/time_h/31-1: build: PASS + conformance/definitions/time_h/31-1: link: SKIP + conformance/definitions/time_h/32-1: build: PASS + conformance/definitions/time_h/32-1: link: SKIP + conformance/definitions/time_h/33-1: build: PASS + conformance/definitions/time_h/33-1: link: SKIP + conformance/definitions/time_h/34-1: build: PASS + conformance/definitions/time_h/34-1: link: SKIP + conformance/definitions/time_h/35-1: build: PASS + conformance/definitions/time_h/35-1: link: SKIP + conformance/definitions/time_h/35-2: build: PASS + conformance/definitions/time_h/35-2: link: SKIP + conformance/definitions/time_h/35-3: build: PASS + conformance/definitions/time_h/35-3: link: SKIP + conformance/definitions/time_h/4-1: build: PASS + conformance/definitions/time_h/4-1: link: SKIP + conformance/definitions/time_h/5-1: build: PASS + conformance/definitions/time_h/5-1: link: SKIP + conformance/definitions/time_h/6-1: build: PASS + conformance/definitions/time_h/6-1: link: SKIP + conformance/definitions/time_h/6-2: build: PASS + conformance/definitions/time_h/6-2: link: SKIP + conformance/definitions/time_h/6-3: build: PASS + conformance/definitions/time_h/6-3: link: SKIP + conformance/definitions/time_h/7-1: build: PASS + conformance/definitions/time_h/7-1: link: SKIP + conformance/definitions/time_h/7-2: build: PASS + conformance/definitions/time_h/7-2: link: SKIP + conformance/definitions/time_h/7-3: build: PASS + conformance/definitions/time_h/7-3: link: SKIP + conformance/definitions/time_h/7-4: build: PASS + conformance/definitions/time_h/7-4: link: SKIP + conformance/definitions/time_h/7-5: build: PASS + conformance/definitions/time_h/7-5: link: SKIP + conformance/definitions/time_h/8-1: build: PASS + conformance/definitions/time_h/8-1: link: SKIP + conformance/definitions/time_h/9-1: build: PASS + conformance/definitions/time_h/9-1: link: SKIP + conformance/definitions/unistd_h/1-1: build: PASS + conformance/definitions/unistd_h/1-1: link: SKIP + conformance/definitions/unistd_h/2-1: build: PASS + conformance/definitions/unistd_h/2-1: link: SKIP + conformance/interfaces/aio_cancel/1-1: build: PASS + conformance/interfaces/aio_cancel/1-1: link: PASS + conformance/interfaces/aio_cancel/10-1: build: PASS + conformance/interfaces/aio_cancel/10-1: link: PASS + conformance/interfaces/aio_cancel/2-1: build: PASS + conformance/interfaces/aio_cancel/2-1: link: PASS + conformance/interfaces/aio_cancel/2-2: build: PASS + conformance/interfaces/aio_cancel/2-2: link: PASS + conformance/interfaces/aio_cancel/3-1: build: FAILED: Compiler output: + conformance/interfaces/aio_cancel/3-1.c: In function ‘main’: + conformance/interfaces/aio_cancel/3-1.c:96: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/aio_cancel/3-1.c:96: error: (Each undeclared identifier is reported only once + conformance/interfaces/aio_cancel/3-1.c:96: error: for each function it appears in.) + conformance/interfaces/aio_cancel/3-1.c:97: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/aio_cancel/4-1: build: PASS + conformance/interfaces/aio_cancel/4-1: link: PASS + conformance/interfaces/aio_cancel/5-1: build: PASS + conformance/interfaces/aio_cancel/5-1: link: PASS + conformance/interfaces/aio_cancel/6-1: build: PASS + conformance/interfaces/aio_cancel/6-1: link: PASS + conformance/interfaces/aio_cancel/7-1: build: PASS + conformance/interfaces/aio_cancel/7-1: link: PASS + conformance/interfaces/aio_cancel/8-1: build: PASS + conformance/interfaces/aio_cancel/8-1: link: PASS + conformance/interfaces/aio_cancel/9-1: build: PASS + conformance/interfaces/aio_cancel/9-1: link: PASS + conformance/interfaces/aio_error/1-1: build: PASS + conformance/interfaces/aio_error/1-1: link: PASS + conformance/interfaces/aio_error/2-1: build: PASS + conformance/interfaces/aio_error/2-1: link: PASS + conformance/interfaces/aio_error/3-1: build: PASS + conformance/interfaces/aio_error/3-1: link: PASS + conformance/interfaces/aio_fsync/1-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/1-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/1-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/1-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/10-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/10-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/10-1.c:33: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/10-1.c:33: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/11-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/11-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/11-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/11-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/12-1: build: PASS + conformance/interfaces/aio_fsync/12-1: link: PASS + conformance/interfaces/aio_fsync/13-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/13-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/13-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/13-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/14-1: build: PASS + conformance/interfaces/aio_fsync/14-1: link: PASS + conformance/interfaces/aio_fsync/2-1: build: PASS + conformance/interfaces/aio_fsync/2-1: link: PASS + conformance/interfaces/aio_fsync/3-1: build: PASS + conformance/interfaces/aio_fsync/3-1: link: PASS + conformance/interfaces/aio_fsync/4-1: build: PASS + conformance/interfaces/aio_fsync/4-1: link: PASS + conformance/interfaces/aio_fsync/4-2: build: PASS + conformance/interfaces/aio_fsync/4-2: link: PASS + conformance/interfaces/aio_fsync/5-1: build: PASS + conformance/interfaces/aio_fsync/5-1: link: PASS + conformance/interfaces/aio_fsync/6-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/6-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/6-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/6-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/7-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_fsync/7-1.c: In function ‘main’: + conformance/interfaces/aio_fsync/7-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_fsync/7-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_fsync/8-1: build: PASS + conformance/interfaces/aio_fsync/8-1: link: PASS + conformance/interfaces/aio_fsync/8-2: build: PASS + conformance/interfaces/aio_fsync/8-2: link: PASS + conformance/interfaces/aio_fsync/8-3: build: PASS + conformance/interfaces/aio_fsync/8-3: link: PASS + conformance/interfaces/aio_fsync/8-4: build: PASS + conformance/interfaces/aio_fsync/8-4: link: PASS + conformance/interfaces/aio_fsync/9-1: build: PASS + conformance/interfaces/aio_fsync/9-1: link: PASS + conformance/interfaces/aio_read/1-1: build: PASS + conformance/interfaces/aio_read/1-1: link: PASS + conformance/interfaces/aio_read/10-1: build: PASS + conformance/interfaces/aio_read/10-1: link: PASS + conformance/interfaces/aio_read/11-1: build: PASS + conformance/interfaces/aio_read/11-1: link: PASS + conformance/interfaces/aio_read/11-2: build: PASS + conformance/interfaces/aio_read/11-2: link: PASS + conformance/interfaces/aio_read/12-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_read/12-1.c: In function ‘main’: + conformance/interfaces/aio_read/12-1.c:34: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_read/12-1.c:34: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_read/13-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_read/13-1.c: In function ‘main’: + conformance/interfaces/aio_read/13-1.c:33: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_read/13-1.c:33: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_read/14-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_read/14-1.c: In function ‘main’: + conformance/interfaces/aio_read/14-1.c:34: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_read/14-1.c:34: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_read/15-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_read/15-1.c: In function ‘main’: + conformance/interfaces/aio_read/15-1.c:30: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_read/15-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_read/2-1: build: PASS + conformance/interfaces/aio_read/2-1: link: PASS + conformance/interfaces/aio_read/3-1: build: PASS + conformance/interfaces/aio_read/3-1: link: PASS + conformance/interfaces/aio_read/3-2: build: PASS + conformance/interfaces/aio_read/3-2: link: PASS + conformance/interfaces/aio_read/4-1: build: PASS + conformance/interfaces/aio_read/4-1: link: PASS + conformance/interfaces/aio_read/5-1: build: PASS + conformance/interfaces/aio_read/5-1: link: PASS + conformance/interfaces/aio_read/6-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_read/6-1.c: In function ‘main’: + conformance/interfaces/aio_read/6-1.c:30: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_read/6-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_read/7-1: build: PASS + conformance/interfaces/aio_read/7-1: link: PASS + conformance/interfaces/aio_read/8-1: build: PASS + conformance/interfaces/aio_read/8-1: link: PASS + conformance/interfaces/aio_read/9-1: build: PASS + conformance/interfaces/aio_read/9-1: link: PASS + conformance/interfaces/aio_return/1-1: build: PASS + conformance/interfaces/aio_return/1-1: link: PASS + conformance/interfaces/aio_return/2-1: build: PASS + conformance/interfaces/aio_return/2-1: link: PASS + conformance/interfaces/aio_return/3-1: build: PASS + conformance/interfaces/aio_return/3-1: link: PASS + conformance/interfaces/aio_return/3-2: build: PASS + conformance/interfaces/aio_return/3-2: link: PASS + conformance/interfaces/aio_return/4-1: build: PASS + conformance/interfaces/aio_return/4-1: link: PASS + conformance/interfaces/aio_suspend/1-1: build: FAILED: Compiler output: + conformance/interfaces/aio_suspend/1-1.c: In function ‘main’: + conformance/interfaces/aio_suspend/1-1.c:120: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/1-1.c:120: error: (Each undeclared identifier is reported only once + conformance/interfaces/aio_suspend/1-1.c:120: error: for each function it appears in.) + conformance/interfaces/aio_suspend/1-1.c:126: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/2-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_suspend/2-1.c: In function ‘main’: + conformance/interfaces/aio_suspend/2-1.c:31: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_suspend/2-1.c:31: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_suspend/3-1: build: PASS + conformance/interfaces/aio_suspend/3-1: link: PASS + conformance/interfaces/aio_suspend/4-1: build: PASS + conformance/interfaces/aio_suspend/4-1: link: PASS + conformance/interfaces/aio_suspend/5-1: build: PASS + conformance/interfaces/aio_suspend/5-1: link: PASS + conformance/interfaces/aio_suspend/6-1: build: FAILED: Compiler output: + conformance/interfaces/aio_suspend/6-1.c: In function ‘main’: + conformance/interfaces/aio_suspend/6-1.c:116: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/6-1.c:116: error: (Each undeclared identifier is reported only once + conformance/interfaces/aio_suspend/6-1.c:116: error: for each function it appears in.) + conformance/interfaces/aio_suspend/6-1.c:122: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/7-1: build: FAILED: Compiler output: + conformance/interfaces/aio_suspend/7-1.c: In function ‘main’: + conformance/interfaces/aio_suspend/7-1.c:118: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/7-1.c:118: error: (Each undeclared identifier is reported only once + conformance/interfaces/aio_suspend/7-1.c:118: error: for each function it appears in.) + conformance/interfaces/aio_suspend/7-1.c:124: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/8-1: build: FAILED: Compiler output: + conformance/interfaces/aio_suspend/8-1.c: In function ‘main’: + conformance/interfaces/aio_suspend/8-1.c:121: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/8-1.c:121: error: (Each undeclared identifier is reported only once + conformance/interfaces/aio_suspend/8-1.c:121: error: for each function it appears in.) + conformance/interfaces/aio_suspend/8-1.c:127: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/aio_suspend/9-1: build: PASS + conformance/interfaces/aio_suspend/9-1: link: PASS + conformance/interfaces/aio_write/1-1: build: PASS + conformance/interfaces/aio_write/1-1: link: PASS + conformance/interfaces/aio_write/1-2: build: PASS + conformance/interfaces/aio_write/1-2: link: PASS + conformance/interfaces/aio_write/10-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_write/10-1.c: In function ‘main’: + conformance/interfaces/aio_write/10-1.c:32: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_write/10-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_write/11-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_write/11-1.c: In function ‘main’: + conformance/interfaces/aio_write/11-1.c:32: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_write/11-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_write/12-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_write/12-1.c: In function ‘main’: + conformance/interfaces/aio_write/12-1.c:31: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_write/12-1.c:31: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_write/13-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_write/13-1.c: In function ‘main’: + conformance/interfaces/aio_write/13-1.c:30: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_write/13-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_write/2-1: build: PASS + conformance/interfaces/aio_write/2-1: link: PASS + conformance/interfaces/aio_write/3-1: build: PASS + conformance/interfaces/aio_write/3-1: link: PASS + conformance/interfaces/aio_write/4-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/aio_write/4-1.c: In function ‘main’: + conformance/interfaces/aio_write/4-1.c:30: error: implicit declaration of function ‘exit’ + conformance/interfaces/aio_write/4-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/aio_write/5-1: build: PASS + conformance/interfaces/aio_write/5-1: link: PASS + conformance/interfaces/aio_write/6-1: build: PASS + conformance/interfaces/aio_write/6-1: link: PASS + conformance/interfaces/aio_write/7-1: build: PASS + conformance/interfaces/aio_write/7-1: link: PASS + conformance/interfaces/aio_write/8-1: build: PASS + conformance/interfaces/aio_write/8-1: link: PASS + conformance/interfaces/aio_write/8-2: build: PASS + conformance/interfaces/aio_write/8-2: link: PASS + conformance/interfaces/aio_write/9-1: build: PASS + conformance/interfaces/aio_write/9-1: link: PASS + conformance/interfaces/aio_write/9-2: build: PASS + conformance/interfaces/aio_write/9-2: link: PASS + conformance/interfaces/asctime/1-1: build: PASS + conformance/interfaces/asctime/1-1: link: PASS + conformance/interfaces/clock/1-1: build: PASS + conformance/interfaces/clock/1-1: link: PASS + conformance/interfaces/clock/2-1: build: PASS + conformance/interfaces/clock/2-1: link: PASS + conformance/interfaces/clock_getcpuclockid/1-1: build: PASS + conformance/interfaces/clock_getcpuclockid/1-1: link: PASS + conformance/interfaces/clock_getcpuclockid/2-1: build: PASS + conformance/interfaces/clock_getcpuclockid/2-1: link: PASS + conformance/interfaces/clock_getres/1-1: build: PASS + conformance/interfaces/clock_getres/1-1: link: PASS + conformance/interfaces/clock_getres/3-1: build: PASS + conformance/interfaces/clock_getres/3-1: link: PASS + conformance/interfaces/clock_getres/5-1: build: PASS + conformance/interfaces/clock_getres/5-1: link: PASS + conformance/interfaces/clock_getres/6-1: build: PASS + conformance/interfaces/clock_getres/6-1: link: PASS + conformance/interfaces/clock_getres/6-2: build: PASS + conformance/interfaces/clock_getres/6-2: link: PASS + conformance/interfaces/clock_getres/7-1: build: PASS + conformance/interfaces/clock_getres/7-1: link: PASS + conformance/interfaces/clock_getres/8-1: build: PASS + conformance/interfaces/clock_getres/8-1: link: PASS + conformance/interfaces/clock_gettime/1-1: build: PASS + conformance/interfaces/clock_gettime/1-1: link: PASS + conformance/interfaces/clock_gettime/1-2: build: PASS + conformance/interfaces/clock_gettime/1-2: link: PASS + conformance/interfaces/clock_gettime/2-1: build: PASS + conformance/interfaces/clock_gettime/2-1: link: PASS + conformance/interfaces/clock_gettime/3-1: build: PASS + conformance/interfaces/clock_gettime/3-1: link: PASS + conformance/interfaces/clock_gettime/4-1: build: PASS + conformance/interfaces/clock_gettime/4-1: link: PASS + conformance/interfaces/clock_gettime/7-1: build: PASS + conformance/interfaces/clock_gettime/7-1: link: PASS + conformance/interfaces/clock_gettime/8-1: build: PASS + conformance/interfaces/clock_gettime/8-1: link: PASS + conformance/interfaces/clock_gettime/8-2: build: PASS + conformance/interfaces/clock_gettime/8-2: link: PASS + conformance/interfaces/clock_nanosleep/1-1: build: PASS + conformance/interfaces/clock_nanosleep/1-1: link: PASS + conformance/interfaces/clock_nanosleep/1-3: build: PASS + conformance/interfaces/clock_nanosleep/1-3: link: PASS + conformance/interfaces/clock_nanosleep/1-4: build: PASS + conformance/interfaces/clock_nanosleep/1-4: link: PASS + conformance/interfaces/clock_nanosleep/1-5: build: PASS + conformance/interfaces/clock_nanosleep/1-5: link: PASS + conformance/interfaces/clock_nanosleep/10-1: build: PASS + conformance/interfaces/clock_nanosleep/10-1: link: PASS + conformance/interfaces/clock_nanosleep/11-1: build: PASS + conformance/interfaces/clock_nanosleep/11-1: link: PASS + conformance/interfaces/clock_nanosleep/13-1: build: PASS + conformance/interfaces/clock_nanosleep/13-1: link: PASS + conformance/interfaces/clock_nanosleep/2-1: build: PASS + conformance/interfaces/clock_nanosleep/2-1: link: PASS + conformance/interfaces/clock_nanosleep/2-2: build: PASS + conformance/interfaces/clock_nanosleep/2-2: link: PASS + conformance/interfaces/clock_nanosleep/2-3: build: PASS + conformance/interfaces/clock_nanosleep/2-3: link: PASS + conformance/interfaces/clock_nanosleep/3-1: build: PASS + conformance/interfaces/clock_nanosleep/3-1: link: PASS + conformance/interfaces/clock_nanosleep/9-1: build: PASS + conformance/interfaces/clock_nanosleep/9-1: link: PASS + conformance/interfaces/clock_settime/1-1: build: PASS + conformance/interfaces/clock_settime/1-1: link: PASS + conformance/interfaces/clock_settime/17-1: build: PASS + conformance/interfaces/clock_settime/17-1: link: PASS + conformance/interfaces/clock_settime/17-2: build: PASS + conformance/interfaces/clock_settime/17-2: link: PASS + conformance/interfaces/clock_settime/19-1: build: PASS + conformance/interfaces/clock_settime/19-1: link: PASS + conformance/interfaces/clock_settime/20-1: build: PASS + conformance/interfaces/clock_settime/20-1: link: PASS + conformance/interfaces/clock_settime/4-1: build: PASS + conformance/interfaces/clock_settime/4-1: link: PASS + conformance/interfaces/clock_settime/4-2: build: PASS + conformance/interfaces/clock_settime/4-2: link: PASS + conformance/interfaces/clock_settime/5-1: build: PASS + conformance/interfaces/clock_settime/5-1: link: PASS + conformance/interfaces/clock_settime/5-2: build: PASS + conformance/interfaces/clock_settime/5-2: link: PASS + conformance/interfaces/clock_settime/6-1: build: PASS + conformance/interfaces/clock_settime/6-1: link: PASS + conformance/interfaces/clock_settime/7-1: build: PASS + conformance/interfaces/clock_settime/7-1: link: PASS + conformance/interfaces/clock_settime/7-2: build: PASS + conformance/interfaces/clock_settime/7-2: link: PASS + conformance/interfaces/clock_settime/8-1: build: PASS + conformance/interfaces/clock_settime/8-1: link: PASS + conformance/interfaces/clock_settime/speculative/4-3: build: PASS + conformance/interfaces/clock_settime/speculative/4-3: link: PASS + conformance/interfaces/clock_settime/speculative/4-4: build: PASS + conformance/interfaces/clock_settime/speculative/4-4: link: PASS + conformance/interfaces/ctime/1-1: build: PASS + conformance/interfaces/ctime/1-1: link: PASS + conformance/interfaces/difftime/1-1: build: PASS + conformance/interfaces/difftime/1-1: link: PASS + conformance/interfaces/fork/1-1: build: PASS + conformance/interfaces/fork/1-1: link: PASS + conformance/interfaces/fork/11-1: build: PASS + conformance/interfaces/fork/11-1: link: PASS + conformance/interfaces/fork/12-1: build: PASS + conformance/interfaces/fork/12-1: link: PASS + conformance/interfaces/fork/13-1: build: PASS + conformance/interfaces/fork/13-1: link: PASS + conformance/interfaces/fork/14-1: build: PASS + conformance/interfaces/fork/14-1: link: PASS + conformance/interfaces/fork/16-1: build: PASS + conformance/interfaces/fork/16-1: link: PASS + conformance/interfaces/fork/17-1: build: PASS + conformance/interfaces/fork/17-1: link: PASS + conformance/interfaces/fork/17-2: build: PASS + conformance/interfaces/fork/17-2: link: PASS + conformance/interfaces/fork/18-1: build: PASS + conformance/interfaces/fork/18-1: link: PASS + conformance/interfaces/fork/19-1: build: PASS + conformance/interfaces/fork/19-1: link: PASS + conformance/interfaces/fork/2-1: build: FAILED: Compiler output: + conformance/interfaces/fork/2-1.c: In function ‘main’: + conformance/interfaces/fork/2-1.c:240: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/fork/2-1.c:240: error: (Each undeclared identifier is reported only once + conformance/interfaces/fork/2-1.c:240: error: for each function it appears in.) + conformance/interfaces/fork/2-1.c:241: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function) + conformance/interfaces/fork/21-1: build: PASS + conformance/interfaces/fork/21-1: link: PASS + conformance/interfaces/fork/22-1: build: PASS + conformance/interfaces/fork/22-1: link: PASS + conformance/interfaces/fork/3-1: build: PASS + conformance/interfaces/fork/3-1: link: PASS + conformance/interfaces/fork/4-1: build: PASS + conformance/interfaces/fork/4-1: link: PASS + conformance/interfaces/fork/6-1: build: PASS + conformance/interfaces/fork/6-1: link: PASS + conformance/interfaces/fork/7-1: build: PASS + conformance/interfaces/fork/7-1: link: PASS + conformance/interfaces/fork/8-1: build: PASS + conformance/interfaces/fork/8-1: link: PASS + conformance/interfaces/fork/9-1: build: PASS + conformance/interfaces/fork/9-1: link: PASS + conformance/interfaces/fsync/4-1: build: PASS + conformance/interfaces/fsync/4-1: link: PASS + conformance/interfaces/fsync/5-1: build: PASS + conformance/interfaces/fsync/5-1: link: PASS + conformance/interfaces/fsync/7-1: build: PASS + conformance/interfaces/fsync/7-1: link: PASS + conformance/interfaces/getpid/1-1: build: PASS + conformance/interfaces/getpid/1-1: link: PASS + conformance/interfaces/gmtime/1-1: build: PASS + conformance/interfaces/gmtime/1-1: link: PASS + conformance/interfaces/gmtime/2-1: build: PASS + conformance/interfaces/gmtime/2-1: link: PASS + conformance/interfaces/kill/1-1: build: PASS + conformance/interfaces/kill/1-1: link: PASS + conformance/interfaces/kill/1-2: build: PASS + conformance/interfaces/kill/1-2: link: PASS + conformance/interfaces/kill/2-1: build: PASS + conformance/interfaces/kill/2-1: link: PASS + conformance/interfaces/kill/2-2: build: PASS + conformance/interfaces/kill/2-2: link: PASS + conformance/interfaces/kill/3-1: build: PASS + conformance/interfaces/kill/3-1: link: PASS + conformance/interfaces/killpg/1-1: build: PASS + conformance/interfaces/killpg/1-1: link: PASS + conformance/interfaces/killpg/1-2: build: PASS + conformance/interfaces/killpg/1-2: link: PASS + conformance/interfaces/killpg/2-1: build: PASS + conformance/interfaces/killpg/2-1: link: PASS + conformance/interfaces/killpg/4-1: build: PASS + conformance/interfaces/killpg/4-1: link: PASS + conformance/interfaces/killpg/5-1: build: PASS + conformance/interfaces/killpg/5-1: link: PASS + conformance/interfaces/killpg/6-1: build: PASS + conformance/interfaces/killpg/6-1: link: PASS + conformance/interfaces/killpg/8-1: build: PASS + conformance/interfaces/killpg/8-1: link: PASS + conformance/interfaces/lio_listio/1-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/1-1.c: In function ‘main’: + conformance/interfaces/lio_listio/1-1.c:110: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/1-1.c:110: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/1-1.c:110: error: for each function it appears in.) + conformance/interfaces/lio_listio/1-1.c:122: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/10-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/10-1.c: In function ‘main’: + conformance/interfaces/lio_listio/10-1.c:107: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/10-1.c:107: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/10-1.c:107: error: for each function it appears in.) + conformance/interfaces/lio_listio/10-1.c:119: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/11-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/11-1.c: In function ‘main’: + conformance/interfaces/lio_listio/11-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/11-1.c:111: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/11-1.c:111: error: for each function it appears in.) + conformance/interfaces/lio_listio/11-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/12-1: build: PASS + conformance/interfaces/lio_listio/12-1: link: PASS + conformance/interfaces/lio_listio/13-1: build: PASS + conformance/interfaces/lio_listio/13-1: link: PASS + conformance/interfaces/lio_listio/14-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/14-1.c: In function ‘main’: + conformance/interfaces/lio_listio/14-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/14-1.c:111: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/14-1.c:111: error: for each function it appears in.) + conformance/interfaces/lio_listio/14-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/15-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/15-1.c: In function ‘main’: + conformance/interfaces/lio_listio/15-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/15-1.c:111: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/15-1.c:111: error: for each function it appears in.) + conformance/interfaces/lio_listio/15-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/16-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/16-1.c: In function ‘main’: + conformance/interfaces/lio_listio/16-1.c:32: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/16-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/17-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/17-1.c: In function ‘main’: + conformance/interfaces/lio_listio/17-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/17-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/18-1: build: PASS + conformance/interfaces/lio_listio/18-1: link: PASS + conformance/interfaces/lio_listio/19-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/19-1.c: In function ‘main’: + conformance/interfaces/lio_listio/19-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/19-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/2-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/2-1.c: In function ‘main’: + conformance/interfaces/lio_listio/2-1.c:106: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/2-1.c:106: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/2-1.c:106: error: for each function it appears in.) + conformance/interfaces/lio_listio/2-1.c:118: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/20-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/20-1.c: In function ‘main’: + conformance/interfaces/lio_listio/20-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/20-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/21-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/21-1.c: In function ‘main’: + conformance/interfaces/lio_listio/21-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/21-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/22-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/22-1.c: In function ‘main’: + conformance/interfaces/lio_listio/22-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/22-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/23-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/23-1.c: In function ‘main’: + conformance/interfaces/lio_listio/23-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/23-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/24-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/24-1.c: In function ‘main’: + conformance/interfaces/lio_listio/24-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/24-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/25-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/lio_listio/25-1.c: In function ‘main’: + conformance/interfaces/lio_listio/25-1.c:19: error: implicit declaration of function ‘exit’ + conformance/interfaces/lio_listio/25-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ + conformance/interfaces/lio_listio/3-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/3-1.c: In function ‘main’: + conformance/interfaces/lio_listio/3-1.c:107: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/3-1.c:107: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/3-1.c:107: error: for each function it appears in.) + conformance/interfaces/lio_listio/3-1.c:119: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/4-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/4-1.c: In function ‘main’: + conformance/interfaces/lio_listio/4-1.c:114: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/4-1.c:114: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/4-1.c:114: error: for each function it appears in.) + conformance/interfaces/lio_listio/4-1.c:126: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/5-1: build: PASS + conformance/interfaces/lio_listio/5-1: link: PASS + conformance/interfaces/lio_listio/6-1: build: PASS + conformance/interfaces/lio_listio/6-1: link: PASS + conformance/interfaces/lio_listio/7-1: build: FAILED: Compiler output: + conformance/interfaces/lio_listio/7-1.c: In function ‘main’: + conformance/interfaces/lio_listio/7-1.c:113: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/lio_listio/7-1.c:113: error: (Each undeclared identifier is reported only once + conformance/interfaces/lio_listio/7-1.c:113: error: for each function it appears in.) + conformance/interfaces/lio_listio/7-1.c:125: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/lio_listio/8-1: build: PASS + conformance/interfaces/lio_listio/8-1: link: PASS + conformance/interfaces/lio_listio/9-1: build: PASS + conformance/interfaces/lio_listio/9-1: link: PASS + conformance/interfaces/localtime/1-1: build: PASS + conformance/interfaces/localtime/1-1: link: PASS + conformance/interfaces/mktime/1-1: build: PASS + conformance/interfaces/mktime/1-1: link: PASS + conformance/interfaces/mlock/10-1: build: PASS + conformance/interfaces/mlock/10-1: link: PASS + conformance/interfaces/mlock/5-1: build: PASS + conformance/interfaces/mlock/5-1: link: PASS + conformance/interfaces/mlock/8-1: build: PASS + conformance/interfaces/mlock/8-1: link: PASS + conformance/interfaces/mlock/speculative/12-1: build: PASS + conformance/interfaces/mlock/speculative/12-1: link: PASS + conformance/interfaces/mlockall/13-1: build: PASS + conformance/interfaces/mlockall/13-1: link: PASS + conformance/interfaces/mlockall/13-2: build: PASS + conformance/interfaces/mlockall/13-2: link: PASS + conformance/interfaces/mlockall/3-6: build: PASS + conformance/interfaces/mlockall/3-6: link: PASS + conformance/interfaces/mlockall/3-7: build: PASS + conformance/interfaces/mlockall/3-7: link: PASS + conformance/interfaces/mlockall/8-1: build: PASS + conformance/interfaces/mlockall/8-1: link: PASS + conformance/interfaces/mlockall/speculative/15-1: build: PASS + conformance/interfaces/mlockall/speculative/15-1: link: PASS + conformance/interfaces/mmap/1-1: build: PASS + conformance/interfaces/mmap/1-1: link: PASS + conformance/interfaces/mmap/1-2: build: PASS + conformance/interfaces/mmap/1-2: link: PASS + conformance/interfaces/mmap/10-1: build: PASS + conformance/interfaces/mmap/10-1: link: PASS + conformance/interfaces/mmap/11-1: build: PASS + conformance/interfaces/mmap/11-1: link: PASS + conformance/interfaces/mmap/11-2: build: PASS + conformance/interfaces/mmap/11-2: link: PASS + conformance/interfaces/mmap/11-3: build: PASS + conformance/interfaces/mmap/11-3: link: PASS + conformance/interfaces/mmap/11-4: build: PASS + conformance/interfaces/mmap/11-4: link: PASS + conformance/interfaces/mmap/11-5: build: PASS + conformance/interfaces/mmap/11-5: link: PASS + conformance/interfaces/mmap/12-1: build: PASS + conformance/interfaces/mmap/12-1: link: PASS + conformance/interfaces/mmap/13-1: build: PASS + conformance/interfaces/mmap/13-1: link: PASS + conformance/interfaces/mmap/14-1: build: PASS + conformance/interfaces/mmap/14-1: link: PASS + conformance/interfaces/mmap/18-1: build: PASS + conformance/interfaces/mmap/18-1: link: PASS + conformance/interfaces/mmap/19-1: build: PASS + conformance/interfaces/mmap/19-1: link: PASS + conformance/interfaces/mmap/21-1: build: PASS + conformance/interfaces/mmap/21-1: link: PASS + conformance/interfaces/mmap/23-1: build: PASS + conformance/interfaces/mmap/23-1: link: PASS + conformance/interfaces/mmap/24-1: build: PASS + conformance/interfaces/mmap/24-1: link: PASS + conformance/interfaces/mmap/24-2: build: PASS + conformance/interfaces/mmap/24-2: link: PASS + conformance/interfaces/mmap/27-1: build: PASS + conformance/interfaces/mmap/27-1: link: PASS + conformance/interfaces/mmap/28-1: build: PASS + conformance/interfaces/mmap/28-1: link: PASS + conformance/interfaces/mmap/3-1: build: PASS + conformance/interfaces/mmap/3-1: link: PASS + conformance/interfaces/mmap/31-1: build: PASS + conformance/interfaces/mmap/31-1: link: PASS + conformance/interfaces/mmap/5-1: build: PASS + conformance/interfaces/mmap/5-1: link: PASS + conformance/interfaces/mmap/6-1: build: PASS + conformance/interfaces/mmap/6-1: link: PASS + conformance/interfaces/mmap/6-2: build: PASS + conformance/interfaces/mmap/6-2: link: PASS + conformance/interfaces/mmap/6-3: build: PASS + conformance/interfaces/mmap/6-3: link: PASS + conformance/interfaces/mmap/6-4: build: PASS + conformance/interfaces/mmap/6-4: link: PASS + conformance/interfaces/mmap/6-5: build: PASS + conformance/interfaces/mmap/6-5: link: PASS + conformance/interfaces/mmap/6-6: build: PASS + conformance/interfaces/mmap/6-6: link: PASS + conformance/interfaces/mmap/7-1: build: PASS + conformance/interfaces/mmap/7-1: link: PASS + conformance/interfaces/mmap/7-2: build: PASS + conformance/interfaces/mmap/7-2: link: PASS + conformance/interfaces/mmap/7-3: build: PASS + conformance/interfaces/mmap/7-3: link: PASS + conformance/interfaces/mmap/7-4: build: PASS + conformance/interfaces/mmap/7-4: link: PASS + conformance/interfaces/mmap/9-1: build: PASS + conformance/interfaces/mmap/9-1: link: PASS + conformance/interfaces/mq_close/1-1: build: PASS + conformance/interfaces/mq_close/1-1: link: PASS + conformance/interfaces/mq_close/2-1: build: PASS + conformance/interfaces/mq_close/2-1: link: PASS + conformance/interfaces/mq_close/3-1: build: PASS + conformance/interfaces/mq_close/3-1: link: PASS + conformance/interfaces/mq_close/3-2: build: PASS + conformance/interfaces/mq_close/3-2: link: PASS + conformance/interfaces/mq_close/3-3: build: PASS + conformance/interfaces/mq_close/3-3: link: PASS + conformance/interfaces/mq_close/4-1: build: PASS + conformance/interfaces/mq_close/4-1: link: PASS + conformance/interfaces/mq_close/5-1: build: PASS + conformance/interfaces/mq_close/5-1: link: PASS + conformance/interfaces/mq_getattr/2-1: build: PASS + conformance/interfaces/mq_getattr/2-1: link: PASS + conformance/interfaces/mq_getattr/2-2: build: PASS + conformance/interfaces/mq_getattr/2-2: link: PASS + conformance/interfaces/mq_getattr/3-1: build: PASS + conformance/interfaces/mq_getattr/3-1: link: PASS + conformance/interfaces/mq_getattr/4-1: build: PASS + conformance/interfaces/mq_getattr/4-1: link: PASS + conformance/interfaces/mq_getattr/speculative/7-1: build: PASS + conformance/interfaces/mq_getattr/speculative/7-1: link: PASS + conformance/interfaces/mq_notify/1-1: build: PASS + conformance/interfaces/mq_notify/1-1: link: PASS + conformance/interfaces/mq_notify/2-1: build: PASS + conformance/interfaces/mq_notify/2-1: link: PASS + conformance/interfaces/mq_notify/3-1: build: PASS + conformance/interfaces/mq_notify/3-1: link: PASS + conformance/interfaces/mq_notify/4-1: build: PASS + conformance/interfaces/mq_notify/4-1: link: PASS + conformance/interfaces/mq_notify/5-1: build: PASS + conformance/interfaces/mq_notify/5-1: link: PASS + conformance/interfaces/mq_notify/8-1: build: PASS + conformance/interfaces/mq_notify/8-1: link: PASS + conformance/interfaces/mq_notify/9-1: build: PASS + conformance/interfaces/mq_notify/9-1: link: PASS + conformance/interfaces/mq_open/1-1: build: PASS + conformance/interfaces/mq_open/1-1: link: PASS + conformance/interfaces/mq_open/10-1: build: PASS + conformance/interfaces/mq_open/10-1: link: PASS + conformance/interfaces/mq_open/11-1: build: PASS + conformance/interfaces/mq_open/11-1: link: PASS + conformance/interfaces/mq_open/12-1: build: PASS + conformance/interfaces/mq_open/12-1: link: PASS + conformance/interfaces/mq_open/13-1: build: PASS + conformance/interfaces/mq_open/13-1: link: PASS + conformance/interfaces/mq_open/14-1: build: PASS + conformance/interfaces/mq_open/14-1: link: PASS + conformance/interfaces/mq_open/15-1: build: PASS + conformance/interfaces/mq_open/15-1: link: PASS + conformance/interfaces/mq_open/16-1: build: PASS + conformance/interfaces/mq_open/16-1: link: PASS + conformance/interfaces/mq_open/17-1: build: PASS + conformance/interfaces/mq_open/17-1: link: PASS + conformance/interfaces/mq_open/18-1: build: PASS + conformance/interfaces/mq_open/18-1: link: PASS + conformance/interfaces/mq_open/19-1: build: PASS + conformance/interfaces/mq_open/19-1: link: PASS + conformance/interfaces/mq_open/2-1: build: PASS + conformance/interfaces/mq_open/2-1: link: PASS + conformance/interfaces/mq_open/20-1: build: PASS + conformance/interfaces/mq_open/20-1: link: PASS + conformance/interfaces/mq_open/21-1: build: PASS + conformance/interfaces/mq_open/21-1: link: PASS + conformance/interfaces/mq_open/22-1: build: PASS + conformance/interfaces/mq_open/22-1: link: PASS + conformance/interfaces/mq_open/23-1: build: PASS + conformance/interfaces/mq_open/23-1: link: PASS + conformance/interfaces/mq_open/24-1: build: PASS + conformance/interfaces/mq_open/24-1: link: PASS + conformance/interfaces/mq_open/25-1: build: PASS + conformance/interfaces/mq_open/25-1: link: PASS + conformance/interfaces/mq_open/25-2: build: PASS + conformance/interfaces/mq_open/25-2: link: PASS + conformance/interfaces/mq_open/27-1: build: FAILED: Compiler output: + conformance/interfaces/mq_open/27-1.c: In function ‘main’: + conformance/interfaces/mq_open/27-1.c:27: error: ‘PATH_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_open/27-1.c:27: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_open/27-1.c:27: error: for each function it appears in.) + cc1: warnings being treated as errors + conformance/interfaces/mq_open/27-1.c:27: error: unused variable ‘qname’ + conformance/interfaces/mq_open/27-2: build: PASS + conformance/interfaces/mq_open/27-2: link: PASS + conformance/interfaces/mq_open/28-1: build: PASS + conformance/interfaces/mq_open/28-1: link: PASS + conformance/interfaces/mq_open/29-1: build: PASS + conformance/interfaces/mq_open/29-1: link: PASS + conformance/interfaces/mq_open/3-1: build: PASS + conformance/interfaces/mq_open/3-1: link: PASS + conformance/interfaces/mq_open/30-1: build: PASS + conformance/interfaces/mq_open/30-1: link: PASS + conformance/interfaces/mq_open/4-1: build: PASS + conformance/interfaces/mq_open/4-1: link: PASS + conformance/interfaces/mq_open/7-1: build: PASS + conformance/interfaces/mq_open/7-1: link: PASS + conformance/interfaces/mq_open/7-2: build: PASS + conformance/interfaces/mq_open/7-2: link: PASS + conformance/interfaces/mq_open/7-3: build: PASS + conformance/interfaces/mq_open/7-3: link: PASS + conformance/interfaces/mq_open/8-1: build: PASS + conformance/interfaces/mq_open/8-1: link: PASS + conformance/interfaces/mq_open/8-2: build: PASS + conformance/interfaces/mq_open/8-2: link: PASS + conformance/interfaces/mq_open/9-1: build: PASS + conformance/interfaces/mq_open/9-1: link: PASS + conformance/interfaces/mq_open/9-2: build: PASS + conformance/interfaces/mq_open/9-2: link: PASS + conformance/interfaces/mq_open/speculative/2-2: build: PASS + conformance/interfaces/mq_open/speculative/2-2: link: PASS + conformance/interfaces/mq_open/speculative/2-3: build: PASS + conformance/interfaces/mq_open/speculative/2-3: link: PASS + conformance/interfaces/mq_open/speculative/26-1: build: PASS + conformance/interfaces/mq_open/speculative/26-1: link: PASS + conformance/interfaces/mq_open/speculative/6-1: build: PASS + conformance/interfaces/mq_open/speculative/6-1: link: PASS + conformance/interfaces/mq_receive/1-1: build: PASS + conformance/interfaces/mq_receive/1-1: link: PASS + conformance/interfaces/mq_receive/10-1: build: PASS + conformance/interfaces/mq_receive/10-1: link: PASS + conformance/interfaces/mq_receive/11-1: build: PASS + conformance/interfaces/mq_receive/11-1: link: PASS + conformance/interfaces/mq_receive/11-2: build: PASS + conformance/interfaces/mq_receive/11-2: link: PASS + conformance/interfaces/mq_receive/12-1: build: PASS + conformance/interfaces/mq_receive/12-1: link: PASS + conformance/interfaces/mq_receive/13-1: build: PASS + conformance/interfaces/mq_receive/13-1: link: PASS + conformance/interfaces/mq_receive/2-1: build: PASS + conformance/interfaces/mq_receive/2-1: link: PASS + conformance/interfaces/mq_receive/5-1: build: PASS + conformance/interfaces/mq_receive/5-1: link: PASS + conformance/interfaces/mq_receive/7-1: build: PASS + conformance/interfaces/mq_receive/7-1: link: PASS + conformance/interfaces/mq_receive/8-1: build: PASS + conformance/interfaces/mq_receive/8-1: link: PASS + conformance/interfaces/mq_send/1-1: build: PASS + conformance/interfaces/mq_send/1-1: link: PASS + conformance/interfaces/mq_send/10-1: build: PASS + conformance/interfaces/mq_send/10-1: link: PASS + conformance/interfaces/mq_send/11-1: build: PASS + conformance/interfaces/mq_send/11-1: link: PASS + conformance/interfaces/mq_send/11-2: build: PASS + conformance/interfaces/mq_send/11-2: link: PASS + conformance/interfaces/mq_send/12-1: build: PASS + conformance/interfaces/mq_send/12-1: link: PASS + conformance/interfaces/mq_send/13-1: build: FAILED: Compiler output: + conformance/interfaces/mq_send/13-1.c:30: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function) + conformance/interfaces/mq_send/14-1: build: PASS + conformance/interfaces/mq_send/14-1: link: PASS + conformance/interfaces/mq_send/2-1: build: PASS + conformance/interfaces/mq_send/2-1: link: PASS + conformance/interfaces/mq_send/3-1: build: PASS + conformance/interfaces/mq_send/3-1: link: PASS + conformance/interfaces/mq_send/3-2: build: PASS + conformance/interfaces/mq_send/3-2: link: PASS + conformance/interfaces/mq_send/4-1: build: FAILED: Compiler output: + conformance/interfaces/mq_send/4-1.c: In function ‘main’: + conformance/interfaces/mq_send/4-1.c:41: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_send/4-1.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_send/4-1.c:41: error: for each function it appears in.) + conformance/interfaces/mq_send/4-2: build: FAILED: Compiler output: + conformance/interfaces/mq_send/4-2.c: In function ‘main’: + conformance/interfaces/mq_send/4-2.c:41: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_send/4-2.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_send/4-2.c:41: error: for each function it appears in.) + conformance/interfaces/mq_send/4-3: build: FAILED: Compiler output: + conformance/interfaces/mq_send/4-3.c: In function ‘main’: + conformance/interfaces/mq_send/4-3.c:51: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_send/4-3.c:51: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_send/4-3.c:51: error: for each function it appears in.) + conformance/interfaces/mq_send/5-1: build: PASS + conformance/interfaces/mq_send/5-1: link: PASS + conformance/interfaces/mq_send/5-2: build: PASS + conformance/interfaces/mq_send/5-2: link: PASS + conformance/interfaces/mq_send/6-1: build: PASS + conformance/interfaces/mq_send/6-1: link: PASS + conformance/interfaces/mq_send/7-1: build: FAILED: Compiler output: + conformance/interfaces/mq_send/7-1.c: In function ‘main’: + conformance/interfaces/mq_send/7-1.c:60: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_send/7-1.c:60: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_send/7-1.c:60: error: for each function it appears in.) + conformance/interfaces/mq_send/8-1: build: PASS + conformance/interfaces/mq_send/8-1: link: PASS + conformance/interfaces/mq_send/9-1: build: PASS + conformance/interfaces/mq_send/9-1: link: PASS + conformance/interfaces/mq_setattr/1-1: build: PASS + conformance/interfaces/mq_setattr/1-1: link: PASS + conformance/interfaces/mq_setattr/1-2: build: PASS + conformance/interfaces/mq_setattr/1-2: link: PASS + conformance/interfaces/mq_setattr/2-1: build: PASS + conformance/interfaces/mq_setattr/2-1: link: PASS + conformance/interfaces/mq_setattr/5-1: build: PASS + conformance/interfaces/mq_setattr/5-1: link: PASS + conformance/interfaces/mq_timedreceive/1-1: build: PASS + conformance/interfaces/mq_timedreceive/1-1: link: PASS + conformance/interfaces/mq_timedreceive/10-1: build: PASS + conformance/interfaces/mq_timedreceive/10-1: link: PASS + conformance/interfaces/mq_timedreceive/10-2: build: PASS + conformance/interfaces/mq_timedreceive/10-2: link: PASS + conformance/interfaces/mq_timedreceive/11-1: build: PASS + conformance/interfaces/mq_timedreceive/11-1: link: PASS + conformance/interfaces/mq_timedreceive/13-1: build: PASS + conformance/interfaces/mq_timedreceive/13-1: link: PASS + conformance/interfaces/mq_timedreceive/14-1: build: PASS + conformance/interfaces/mq_timedreceive/14-1: link: PASS + conformance/interfaces/mq_timedreceive/15-1: build: PASS + conformance/interfaces/mq_timedreceive/15-1: link: PASS + conformance/interfaces/mq_timedreceive/17-1: build: PASS + conformance/interfaces/mq_timedreceive/17-1: link: PASS + conformance/interfaces/mq_timedreceive/17-2: build: PASS + conformance/interfaces/mq_timedreceive/17-2: link: PASS + conformance/interfaces/mq_timedreceive/17-3: build: PASS + conformance/interfaces/mq_timedreceive/17-3: link: PASS + conformance/interfaces/mq_timedreceive/18-1: build: PASS + conformance/interfaces/mq_timedreceive/18-1: link: PASS + conformance/interfaces/mq_timedreceive/18-2: build: PASS + conformance/interfaces/mq_timedreceive/18-2: link: PASS + conformance/interfaces/mq_timedreceive/2-1: build: PASS + conformance/interfaces/mq_timedreceive/2-1: link: PASS + conformance/interfaces/mq_timedreceive/5-1: build: PASS + conformance/interfaces/mq_timedreceive/5-1: link: PASS + conformance/interfaces/mq_timedreceive/5-2: build: PASS + conformance/interfaces/mq_timedreceive/5-2: link: PASS + conformance/interfaces/mq_timedreceive/5-3: build: PASS + conformance/interfaces/mq_timedreceive/5-3: link: PASS + conformance/interfaces/mq_timedreceive/7-1: build: PASS + conformance/interfaces/mq_timedreceive/7-1: link: PASS + conformance/interfaces/mq_timedreceive/8-1: build: PASS + conformance/interfaces/mq_timedreceive/8-1: link: PASS + conformance/interfaces/mq_timedreceive/speculative/10-2: build: PASS + conformance/interfaces/mq_timedreceive/speculative/10-2: link: PASS + conformance/interfaces/mq_timedsend/1-1: build: PASS + conformance/interfaces/mq_timedsend/1-1: link: PASS + conformance/interfaces/mq_timedsend/10-1: build: PASS + conformance/interfaces/mq_timedsend/10-1: link: PASS + conformance/interfaces/mq_timedsend/11-1: build: PASS + conformance/interfaces/mq_timedsend/11-1: link: PASS + conformance/interfaces/mq_timedsend/11-2: build: PASS + conformance/interfaces/mq_timedsend/11-2: link: PASS + conformance/interfaces/mq_timedsend/12-1: build: PASS + conformance/interfaces/mq_timedsend/12-1: link: PASS + conformance/interfaces/mq_timedsend/13-1: build: FAILED: Compiler output: + conformance/interfaces/mq_timedsend/13-1.c:31: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function) + conformance/interfaces/mq_timedsend/14-1: build: PASS + conformance/interfaces/mq_timedsend/14-1: link: PASS + conformance/interfaces/mq_timedsend/15-1: build: PASS + conformance/interfaces/mq_timedsend/15-1: link: PASS + conformance/interfaces/mq_timedsend/16-1: build: PASS + conformance/interfaces/mq_timedsend/16-1: link: PASS + conformance/interfaces/mq_timedsend/17-1: build: PASS + conformance/interfaces/mq_timedsend/17-1: link: PASS + conformance/interfaces/mq_timedsend/18-1: build: PASS + conformance/interfaces/mq_timedsend/18-1: link: PASS + conformance/interfaces/mq_timedsend/19-1: build: PASS + conformance/interfaces/mq_timedsend/19-1: link: PASS + conformance/interfaces/mq_timedsend/2-1: build: PASS + conformance/interfaces/mq_timedsend/2-1: link: PASS + conformance/interfaces/mq_timedsend/20-1: build: PASS + conformance/interfaces/mq_timedsend/20-1: link: PASS + conformance/interfaces/mq_timedsend/3-1: build: PASS + conformance/interfaces/mq_timedsend/3-1: link: PASS + conformance/interfaces/mq_timedsend/3-2: build: PASS + conformance/interfaces/mq_timedsend/3-2: link: PASS + conformance/interfaces/mq_timedsend/4-1: build: FAILED: Compiler output: + conformance/interfaces/mq_timedsend/4-1.c: In function ‘main’: + conformance/interfaces/mq_timedsend/4-1.c:45: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_timedsend/4-1.c:45: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_timedsend/4-1.c:45: error: for each function it appears in.) + conformance/interfaces/mq_timedsend/4-2: build: FAILED: Compiler output: + conformance/interfaces/mq_timedsend/4-2.c: In function ‘main’: + conformance/interfaces/mq_timedsend/4-2.c:45: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_timedsend/4-2.c:45: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_timedsend/4-2.c:45: error: for each function it appears in.) + conformance/interfaces/mq_timedsend/4-3: build: FAILED: Compiler output: + conformance/interfaces/mq_timedsend/4-3.c: In function ‘main’: + conformance/interfaces/mq_timedsend/4-3.c:55: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) + conformance/interfaces/mq_timedsend/4-3.c:55: error: (Each undeclared identifier is reported only once + conformance/interfaces/mq_timedsend/4-3.c:55: error: for each function it appears in.) + conformance/interfaces/mq_timedsend/5-1: build: PASS + conformance/interfaces/mq_timedsend/5-1: link: PASS + conformance/interfaces/mq_timedsend/5-2: build: PASS + conformance/interfaces/mq_timedsend/5-2: link: PASS + conformance/interfaces/mq_timedsend/5-3: build: PASS + conformance/interfaces/mq_timedsend/5-3: link: PASS + conformance/interfaces/mq_timedsend/6-1: build: PASS + conformance/interfaces/mq_timedsend/6-1: link: PASS + conformance/interfaces/mq_timedsend/7-1: build: PASS + conformance/interfaces/mq_timedsend/7-1: link: PASS + conformance/interfaces/mq_timedsend/8-1: build: PASS + conformance/interfaces/mq_timedsend/8-1: link: PASS + conformance/interfaces/mq_timedsend/9-1: build: PASS + conformance/interfaces/mq_timedsend/9-1: link: PASS + conformance/interfaces/mq_timedsend/speculative/18-2: build: PASS + conformance/interfaces/mq_timedsend/speculative/18-2: link: PASS + conformance/interfaces/mq_unlink/1-1: build: PASS + conformance/interfaces/mq_unlink/1-1: link: PASS + conformance/interfaces/mq_unlink/2-1: build: PASS + conformance/interfaces/mq_unlink/2-1: link: PASS + conformance/interfaces/mq_unlink/2-2: build: PASS + conformance/interfaces/mq_unlink/2-2: link: PASS + conformance/interfaces/mq_unlink/2-3: build: PASS + conformance/interfaces/mq_unlink/2-3: link: PASS + conformance/interfaces/mq_unlink/7-1: build: PASS + conformance/interfaces/mq_unlink/7-1: link: PASS + conformance/interfaces/mq_unlink/speculative/7-2: build: PASS + conformance/interfaces/mq_unlink/speculative/7-2: link: PASS + conformance/interfaces/munlock/10-1: build: PASS + conformance/interfaces/munlock/10-1: link: PASS + conformance/interfaces/munlock/11-1: build: PASS + conformance/interfaces/munlock/11-1: link: PASS + conformance/interfaces/munlock/7-1: build: PASS + conformance/interfaces/munlock/7-1: link: PASS + conformance/interfaces/munlockall/5-1: build: PASS + conformance/interfaces/munlockall/5-1: link: PASS + conformance/interfaces/munmap/1-1: build: PASS + conformance/interfaces/munmap/1-1: link: PASS + conformance/interfaces/munmap/1-2: build: PASS + conformance/interfaces/munmap/1-2: link: PASS + conformance/interfaces/munmap/2-1: build: PASS + conformance/interfaces/munmap/2-1: link: PASS + conformance/interfaces/munmap/3-1: build: PASS + conformance/interfaces/munmap/3-1: link: PASS + conformance/interfaces/munmap/4-1: build: PASS + conformance/interfaces/munmap/4-1: link: PASS + conformance/interfaces/munmap/8-1: build: PASS + conformance/interfaces/munmap/8-1: link: PASS + conformance/interfaces/munmap/9-1: build: PASS + conformance/interfaces/munmap/9-1: link: PASS + conformance/interfaces/nanosleep/10000-1: build: PASS + conformance/interfaces/nanosleep/10000-1: link: PASS + conformance/interfaces/nanosleep/1-1: build: PASS + conformance/interfaces/nanosleep/1-1: link: PASS + conformance/interfaces/nanosleep/1-2: build: PASS + conformance/interfaces/nanosleep/1-2: link: PASS + conformance/interfaces/nanosleep/1-3: build: PASS + conformance/interfaces/nanosleep/1-3: link: PASS + conformance/interfaces/nanosleep/2-1: build: PASS + conformance/interfaces/nanosleep/2-1: link: PASS + conformance/interfaces/nanosleep/3-1: build: PASS + conformance/interfaces/nanosleep/3-1: link: PASS + conformance/interfaces/nanosleep/3-2: build: PASS + conformance/interfaces/nanosleep/3-2: link: PASS + conformance/interfaces/nanosleep/5-1: build: PASS + conformance/interfaces/nanosleep/5-1: link: PASS + conformance/interfaces/nanosleep/5-2: build: PASS + conformance/interfaces/nanosleep/5-2: link: PASS + conformance/interfaces/nanosleep/6-1: build: PASS + conformance/interfaces/nanosleep/6-1: link: PASS + conformance/interfaces/nanosleep/7-1: build: PASS + conformance/interfaces/nanosleep/7-1: link: PASS + conformance/interfaces/nanosleep/7-2: build: PASS + conformance/interfaces/nanosleep/7-2: link: PASS + conformance/interfaces/pthread_atfork/1-1: build: PASS + conformance/interfaces/pthread_atfork/1-1: link: PASS + conformance/interfaces/pthread_atfork/1-2: build: PASS + conformance/interfaces/pthread_atfork/1-2: link: PASS + conformance/interfaces/pthread_atfork/2-1: build: PASS + conformance/interfaces/pthread_atfork/2-1: link: PASS + conformance/interfaces/pthread_atfork/2-2: build: PASS + conformance/interfaces/pthread_atfork/2-2: link: PASS + conformance/interfaces/pthread_atfork/3-2: build: PASS + conformance/interfaces/pthread_atfork/3-2: link: PASS + conformance/interfaces/pthread_atfork/3-3: build: PASS + conformance/interfaces/pthread_atfork/3-3: link: PASS + conformance/interfaces/pthread_atfork/4-1: build: PASS + conformance/interfaces/pthread_atfork/4-1: link: PASS + conformance/interfaces/pthread_attr_destroy/1-1: build: PASS + conformance/interfaces/pthread_attr_destroy/1-1: link: PASS + conformance/interfaces/pthread_attr_destroy/2-1: build: PASS + conformance/interfaces/pthread_attr_destroy/2-1: link: PASS + conformance/interfaces/pthread_attr_destroy/3-1: build: PASS + conformance/interfaces/pthread_attr_destroy/3-1: link: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-1: build: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-1: link: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-2: build: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-2: link: PASS + conformance/interfaces/pthread_attr_getinheritsched/1-1: build: PASS + conformance/interfaces/pthread_attr_getinheritsched/1-1: link: PASS + conformance/interfaces/pthread_attr_getschedparam/1-1: build: PASS + conformance/interfaces/pthread_attr_getschedparam/1-1: link: PASS + conformance/interfaces/pthread_attr_getschedpolicy/2-1: build: PASS + conformance/interfaces/pthread_attr_getschedpolicy/2-1: link: PASS + conformance/interfaces/pthread_attr_getscope/1-1: build: PASS + conformance/interfaces/pthread_attr_getscope/1-1: link: PASS + conformance/interfaces/pthread_attr_getstack/1-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_getstack/1-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: for each function it appears in.) + conformance/interfaces/pthread_attr_getstacksize/1-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_getstacksize/1-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: for each function it appears in.) + conformance/interfaces/pthread_attr_init/1-1: build: PASS + conformance/interfaces/pthread_attr_init/1-1: link: PASS + conformance/interfaces/pthread_attr_init/2-1: build: PASS + conformance/interfaces/pthread_attr_init/2-1: link: PASS + conformance/interfaces/pthread_attr_init/3-1: build: PASS + conformance/interfaces/pthread_attr_init/3-1: link: PASS + conformance/interfaces/pthread_attr_init/4-1: build: PASS + conformance/interfaces/pthread_attr_init/4-1: link: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-1: build: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-1: link: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-2: build: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-2: link: PASS + conformance/interfaces/pthread_attr_setdetachstate/2-1: build: PASS + conformance/interfaces/pthread_attr_setdetachstate/2-1: link: PASS + conformance/interfaces/pthread_attr_setdetachstate/4-1: build: PASS + conformance/interfaces/pthread_attr_setdetachstate/4-1: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/1-1: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/1-1: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-1: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-1: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-2: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-2: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-3: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-3: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-4: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-4: link: PASS + conformance/interfaces/pthread_attr_setinheritsched/4-1: build: PASS + conformance/interfaces/pthread_attr_setinheritsched/4-1: link: PASS + conformance/interfaces/pthread_attr_setschedparam/1-1: build: PASS + conformance/interfaces/pthread_attr_setschedparam/1-1: link: PASS + conformance/interfaces/pthread_attr_setschedparam/1-2: build: PASS + conformance/interfaces/pthread_attr_setschedparam/1-2: link: PASS + conformance/interfaces/pthread_attr_setschedparam/1-3: build: PASS + conformance/interfaces/pthread_attr_setschedparam/1-3: link: PASS + conformance/interfaces/pthread_attr_setschedparam/1-4: build: PASS + conformance/interfaces/pthread_attr_setschedparam/1-4: link: PASS + conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: build: PASS + conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: link: PASS + conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: build: PASS + conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: link: PASS + conformance/interfaces/pthread_attr_setschedpolicy/1-1: build: PASS + conformance/interfaces/pthread_attr_setschedpolicy/1-1: link: PASS + conformance/interfaces/pthread_attr_setschedpolicy/4-1: build: PASS + conformance/interfaces/pthread_attr_setschedpolicy/4-1: link: PASS + conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: build: PASS + conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: link: PASS + conformance/interfaces/pthread_attr_setscope/1-1: build: PASS + conformance/interfaces/pthread_attr_setscope/1-1: link: PASS + conformance/interfaces/pthread_attr_setscope/4-1: build: PASS + conformance/interfaces/pthread_attr_setscope/4-1: link: PASS + conformance/interfaces/pthread_attr_setscope/5-1: build: PASS + conformance/interfaces/pthread_attr_setscope/5-1: link: PASS + conformance/interfaces/pthread_attr_setstack/1-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstack/1-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstack/2-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstack/2-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstack/4-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstack/4-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstack/6-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstack/6-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstack/7-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstack/7-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstacksize/1-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstacksize/1-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstacksize/2-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstacksize/2-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: for each function it appears in.) + conformance/interfaces/pthread_attr_setstacksize/4-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_attr_setstacksize/4-1.c: In function ‘main’: + conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) + conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: (Each undeclared identifier is reported only once + conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: for each function it appears in.) + conformance/interfaces/pthread_barrier_destroy/1-1: build: PASS + conformance/interfaces/pthread_barrier_destroy/1-1: link: PASS + conformance/interfaces/pthread_barrier_destroy/2-1: build: PASS + conformance/interfaces/pthread_barrier_destroy/2-1: link: PASS + conformance/interfaces/pthread_barrier_init/1-1: build: PASS + conformance/interfaces/pthread_barrier_init/1-1: link: PASS + conformance/interfaces/pthread_barrier_init/3-1: build: PASS + conformance/interfaces/pthread_barrier_init/3-1: link: PASS + conformance/interfaces/pthread_barrier_init/4-1: build: PASS + conformance/interfaces/pthread_barrier_init/4-1: link: PASS + conformance/interfaces/pthread_barrier_wait/1-1: build: PASS + conformance/interfaces/pthread_barrier_wait/1-1: link: PASS + conformance/interfaces/pthread_barrier_wait/2-1: build: PASS + conformance/interfaces/pthread_barrier_wait/2-1: link: PASS + conformance/interfaces/pthread_barrier_wait/3-1: build: PASS + conformance/interfaces/pthread_barrier_wait/3-1: link: PASS + conformance/interfaces/pthread_barrier_wait/3-2: build: PASS + conformance/interfaces/pthread_barrier_wait/3-2: link: PASS + conformance/interfaces/pthread_barrier_wait/6-1: build: PASS + conformance/interfaces/pthread_barrier_wait/6-1: link: PASS + conformance/interfaces/pthread_barrierattr_destroy/1-1: build: PASS + conformance/interfaces/pthread_barrierattr_destroy/1-1: link: PASS + conformance/interfaces/pthread_barrierattr_getpshared/1-1: build: PASS + conformance/interfaces/pthread_barrierattr_getpshared/1-1: link: PASS + conformance/interfaces/pthread_barrierattr_getpshared/2-1: build: PASS + conformance/interfaces/pthread_barrierattr_getpshared/2-1: link: PASS + conformance/interfaces/pthread_barrierattr_init/1-1: build: PASS + conformance/interfaces/pthread_barrierattr_init/1-1: link: PASS + conformance/interfaces/pthread_barrierattr_init/2-1: build: PASS + conformance/interfaces/pthread_barrierattr_init/2-1: link: PASS + conformance/interfaces/pthread_barrierattr_setpshared/1-1: build: PASS + conformance/interfaces/pthread_barrierattr_setpshared/1-1: link: PASS + conformance/interfaces/pthread_barrierattr_setpshared/2-1: build: PASS + conformance/interfaces/pthread_barrierattr_setpshared/2-1: link: PASS + conformance/interfaces/pthread_cancel/1-1: build: PASS + conformance/interfaces/pthread_cancel/1-1: link: PASS + conformance/interfaces/pthread_cancel/1-2: build: PASS + conformance/interfaces/pthread_cancel/1-2: link: PASS + conformance/interfaces/pthread_cancel/1-3: build: PASS + conformance/interfaces/pthread_cancel/1-3: link: PASS + conformance/interfaces/pthread_cancel/2-1: build: PASS + conformance/interfaces/pthread_cancel/2-1: link: PASS + conformance/interfaces/pthread_cancel/2-2: build: PASS + conformance/interfaces/pthread_cancel/2-2: link: PASS + conformance/interfaces/pthread_cancel/2-3: build: PASS + conformance/interfaces/pthread_cancel/2-3: link: PASS + conformance/interfaces/pthread_cancel/3-1: build: PASS + conformance/interfaces/pthread_cancel/3-1: link: PASS + conformance/interfaces/pthread_cancel/4-1: build: PASS + conformance/interfaces/pthread_cancel/4-1: link: PASS + conformance/interfaces/pthread_cancel/5-1: build: PASS + conformance/interfaces/pthread_cancel/5-1: link: PASS + conformance/interfaces/pthread_cancel/5-2: build: PASS + conformance/interfaces/pthread_cancel/5-2: link: PASS + conformance/interfaces/pthread_cleanup_pop/1-1: build: PASS + conformance/interfaces/pthread_cleanup_pop/1-1: link: PASS + conformance/interfaces/pthread_cleanup_pop/1-2: build: PASS + conformance/interfaces/pthread_cleanup_pop/1-2: link: PASS + conformance/interfaces/pthread_cleanup_pop/1-3: build: PASS + conformance/interfaces/pthread_cleanup_pop/1-3: link: PASS + conformance/interfaces/pthread_cleanup_push/1-1: build: PASS + conformance/interfaces/pthread_cleanup_push/1-1: link: PASS + conformance/interfaces/pthread_cleanup_push/1-2: build: PASS + conformance/interfaces/pthread_cleanup_push/1-2: link: PASS + conformance/interfaces/pthread_cleanup_push/1-3: build: PASS + conformance/interfaces/pthread_cleanup_push/1-3: link: PASS + conformance/interfaces/pthread_cond_broadcast/1-1: build: PASS + conformance/interfaces/pthread_cond_broadcast/1-1: link: PASS + conformance/interfaces/pthread_cond_broadcast/1-2: build: PASS + conformance/interfaces/pthread_cond_broadcast/1-2: link: PASS + conformance/interfaces/pthread_cond_broadcast/2-1: build: PASS + conformance/interfaces/pthread_cond_broadcast/2-1: link: PASS + conformance/interfaces/pthread_cond_broadcast/2-2: build: PASS + conformance/interfaces/pthread_cond_broadcast/2-2: link: PASS + conformance/interfaces/pthread_cond_broadcast/2-3: build: PASS + conformance/interfaces/pthread_cond_broadcast/2-3: link: PASS + conformance/interfaces/pthread_cond_broadcast/4-1: build: PASS + conformance/interfaces/pthread_cond_broadcast/4-1: link: PASS + conformance/interfaces/pthread_cond_broadcast/4-2: build: PASS + conformance/interfaces/pthread_cond_broadcast/4-2: link: PASS + conformance/interfaces/pthread_cond_destroy/1-1: build: PASS + conformance/interfaces/pthread_cond_destroy/1-1: link: PASS + conformance/interfaces/pthread_cond_destroy/2-1: build: PASS + conformance/interfaces/pthread_cond_destroy/2-1: link: PASS + conformance/interfaces/pthread_cond_destroy/3-1: build: PASS + conformance/interfaces/pthread_cond_destroy/3-1: link: PASS + conformance/interfaces/pthread_cond_destroy/speculative/4-1: build: PASS + conformance/interfaces/pthread_cond_destroy/speculative/4-1: link: PASS + conformance/interfaces/pthread_cond_init/1-1: build: PASS + conformance/interfaces/pthread_cond_init/1-1: link: PASS + conformance/interfaces/pthread_cond_init/1-2: build: PASS + conformance/interfaces/pthread_cond_init/1-2: link: PASS + conformance/interfaces/pthread_cond_init/1-3: build: PASS + conformance/interfaces/pthread_cond_init/1-3: link: PASS + conformance/interfaces/pthread_cond_init/2-1: build: PASS + conformance/interfaces/pthread_cond_init/2-1: link: PASS + conformance/interfaces/pthread_cond_init/2-2: build: PASS + conformance/interfaces/pthread_cond_init/2-2: link: PASS + conformance/interfaces/pthread_cond_init/3-1: build: PASS + conformance/interfaces/pthread_cond_init/3-1: link: PASS + conformance/interfaces/pthread_cond_init/4-1: build: PASS + conformance/interfaces/pthread_cond_init/4-1: link: PASS + conformance/interfaces/pthread_cond_init/4-2: build: PASS + conformance/interfaces/pthread_cond_init/4-2: link: PASS + conformance/interfaces/pthread_cond_signal/1-1: build: PASS + conformance/interfaces/pthread_cond_signal/1-1: link: PASS + conformance/interfaces/pthread_cond_signal/1-2: build: PASS + conformance/interfaces/pthread_cond_signal/1-2: link: PASS + conformance/interfaces/pthread_cond_signal/2-1: build: PASS + conformance/interfaces/pthread_cond_signal/2-1: link: PASS + conformance/interfaces/pthread_cond_signal/2-2: build: PASS + conformance/interfaces/pthread_cond_signal/2-2: link: PASS + conformance/interfaces/pthread_cond_signal/4-1: build: PASS + conformance/interfaces/pthread_cond_signal/4-1: link: PASS + conformance/interfaces/pthread_cond_signal/4-2: build: PASS + conformance/interfaces/pthread_cond_signal/4-2: link: PASS + conformance/interfaces/pthread_cond_timedwait/1-1: build: PASS + conformance/interfaces/pthread_cond_timedwait/1-1: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-1: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-1: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-2: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-2: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-3: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-3: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-4: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-4: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-5: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-5: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-6: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-6: link: PASS + conformance/interfaces/pthread_cond_timedwait/2-7: build: PASS + conformance/interfaces/pthread_cond_timedwait/2-7: link: PASS + conformance/interfaces/pthread_cond_timedwait/3-1: build: PASS + conformance/interfaces/pthread_cond_timedwait/3-1: link: PASS + conformance/interfaces/pthread_cond_timedwait/4-1: build: PASS + conformance/interfaces/pthread_cond_timedwait/4-1: link: PASS + conformance/interfaces/pthread_cond_timedwait/4-2: build: PASS + conformance/interfaces/pthread_cond_timedwait/4-2: link: PASS + conformance/interfaces/pthread_cond_timedwait/4-3: build: PASS + conformance/interfaces/pthread_cond_timedwait/4-3: link: PASS + conformance/interfaces/pthread_cond_wait/1-1: build: PASS + conformance/interfaces/pthread_cond_wait/1-1: link: PASS + conformance/interfaces/pthread_cond_wait/2-1: build: PASS + conformance/interfaces/pthread_cond_wait/2-1: link: PASS + conformance/interfaces/pthread_cond_wait/2-2: build: PASS + conformance/interfaces/pthread_cond_wait/2-2: link: PASS + conformance/interfaces/pthread_cond_wait/2-3: build: PASS + conformance/interfaces/pthread_cond_wait/2-3: link: PASS + conformance/interfaces/pthread_cond_wait/3-1: build: PASS + conformance/interfaces/pthread_cond_wait/3-1: link: PASS + conformance/interfaces/pthread_cond_wait/4-1: build: PASS + conformance/interfaces/pthread_cond_wait/4-1: link: PASS + conformance/interfaces/pthread_condattr_destroy/1-1: build: PASS + conformance/interfaces/pthread_condattr_destroy/1-1: link: PASS + conformance/interfaces/pthread_condattr_destroy/2-1: build: PASS + conformance/interfaces/pthread_condattr_destroy/2-1: link: PASS + conformance/interfaces/pthread_condattr_destroy/3-1: build: PASS + conformance/interfaces/pthread_condattr_destroy/3-1: link: PASS + conformance/interfaces/pthread_condattr_destroy/4-1: build: PASS + conformance/interfaces/pthread_condattr_destroy/4-1: link: PASS + conformance/interfaces/pthread_condattr_getclock/1-1: build: PASS + conformance/interfaces/pthread_condattr_getclock/1-1: link: PASS + conformance/interfaces/pthread_condattr_getclock/1-2: build: PASS + conformance/interfaces/pthread_condattr_getclock/1-2: link: PASS + conformance/interfaces/pthread_condattr_getpshared/1-1: build: PASS + conformance/interfaces/pthread_condattr_getpshared/1-1: link: PASS + conformance/interfaces/pthread_condattr_getpshared/1-2: build: PASS + conformance/interfaces/pthread_condattr_getpshared/1-2: link: PASS + conformance/interfaces/pthread_condattr_getpshared/2-1: build: PASS + conformance/interfaces/pthread_condattr_getpshared/2-1: link: PASS + conformance/interfaces/pthread_condattr_init/1-1: build: PASS + conformance/interfaces/pthread_condattr_init/1-1: link: PASS + conformance/interfaces/pthread_condattr_init/3-1: build: PASS + conformance/interfaces/pthread_condattr_init/3-1: link: PASS + conformance/interfaces/pthread_condattr_setclock/1-1: build: PASS + conformance/interfaces/pthread_condattr_setclock/1-1: link: PASS + conformance/interfaces/pthread_condattr_setclock/1-2: build: PASS + conformance/interfaces/pthread_condattr_setclock/1-2: link: PASS + conformance/interfaces/pthread_condattr_setclock/1-3: build: PASS + conformance/interfaces/pthread_condattr_setclock/1-3: link: PASS + conformance/interfaces/pthread_condattr_setclock/2-1: build: PASS + conformance/interfaces/pthread_condattr_setclock/2-1: link: PASS + conformance/interfaces/pthread_condattr_setpshared/1-1: build: PASS + conformance/interfaces/pthread_condattr_setpshared/1-1: link: PASS + conformance/interfaces/pthread_condattr_setpshared/1-2: build: PASS + conformance/interfaces/pthread_condattr_setpshared/1-2: link: PASS + conformance/interfaces/pthread_condattr_setpshared/2-1: build: PASS + conformance/interfaces/pthread_condattr_setpshared/2-1: link: PASS + conformance/interfaces/pthread_create/1-1: build: PASS + conformance/interfaces/pthread_create/1-1: link: PASS + conformance/interfaces/pthread_create/1-2: build: PASS + conformance/interfaces/pthread_create/1-2: link: PASS + conformance/interfaces/pthread_create/1-3: build: PASS + conformance/interfaces/pthread_create/1-3: link: PASS + conformance/interfaces/pthread_create/1-4: build: PASS + conformance/interfaces/pthread_create/1-4: link: PASS + conformance/interfaces/pthread_create/1-5: build: PASS + conformance/interfaces/pthread_create/1-5: link: PASS + conformance/interfaces/pthread_create/1-6: build: PASS + conformance/interfaces/pthread_create/1-6: link: PASS + conformance/interfaces/pthread_create/10-1: build: PASS + conformance/interfaces/pthread_create/10-1: link: PASS + conformance/interfaces/pthread_create/11-1: build: PASS + conformance/interfaces/pthread_create/11-1: link: PASS + conformance/interfaces/pthread_create/12-1: build: PASS + conformance/interfaces/pthread_create/12-1: link: PASS + conformance/interfaces/pthread_create/14-1: build: PASS + conformance/interfaces/pthread_create/14-1: link: PASS + conformance/interfaces/pthread_create/15-1: build: PASS + conformance/interfaces/pthread_create/15-1: link: PASS + conformance/interfaces/pthread_create/2-1: build: PASS + conformance/interfaces/pthread_create/2-1: link: PASS + conformance/interfaces/pthread_create/3-1: build: PASS + conformance/interfaces/pthread_create/3-1: link: PASS + conformance/interfaces/pthread_create/3-2: build: PASS + conformance/interfaces/pthread_create/3-2: link: PASS + conformance/interfaces/pthread_create/4-1: build: PASS + conformance/interfaces/pthread_create/4-1: link: PASS + conformance/interfaces/pthread_create/5-1: build: PASS + conformance/interfaces/pthread_create/5-1: link: PASS + conformance/interfaces/pthread_create/5-2: build: PASS + conformance/interfaces/pthread_create/5-2: link: PASS + conformance/interfaces/pthread_create/8-1: build: PASS + conformance/interfaces/pthread_create/8-1: link: PASS + conformance/interfaces/pthread_create/8-2: build: PASS + conformance/interfaces/pthread_create/8-2: link: PASS + conformance/interfaces/pthread_detach/1-1: build: PASS + conformance/interfaces/pthread_detach/1-1: link: PASS + conformance/interfaces/pthread_detach/1-2: build: PASS + conformance/interfaces/pthread_detach/1-2: link: PASS + conformance/interfaces/pthread_detach/2-1: build: PASS + conformance/interfaces/pthread_detach/2-1: link: PASS + conformance/interfaces/pthread_detach/2-2: build: PASS + conformance/interfaces/pthread_detach/2-2: link: PASS + conformance/interfaces/pthread_detach/3-1: build: PASS + conformance/interfaces/pthread_detach/3-1: link: PASS + conformance/interfaces/pthread_detach/4-1: build: PASS + conformance/interfaces/pthread_detach/4-1: link: PASS + conformance/interfaces/pthread_detach/4-2: build: PASS + conformance/interfaces/pthread_detach/4-2: link: PASS + conformance/interfaces/pthread_detach/4-3: build: PASS + conformance/interfaces/pthread_detach/4-3: link: PASS + conformance/interfaces/pthread_equal/1-1: build: PASS + conformance/interfaces/pthread_equal/1-1: link: PASS + conformance/interfaces/pthread_equal/1-2: build: PASS + conformance/interfaces/pthread_equal/1-2: link: PASS + conformance/interfaces/pthread_equal/2-1: build: PASS + conformance/interfaces/pthread_equal/2-1: link: PASS + conformance/interfaces/pthread_exit/1-1: build: PASS + conformance/interfaces/pthread_exit/1-1: link: PASS + conformance/interfaces/pthread_exit/1-2: build: PASS + conformance/interfaces/pthread_exit/1-2: link: PASS + conformance/interfaces/pthread_exit/2-1: build: PASS + conformance/interfaces/pthread_exit/2-1: link: PASS + conformance/interfaces/pthread_exit/2-2: build: PASS + conformance/interfaces/pthread_exit/2-2: link: PASS + conformance/interfaces/pthread_exit/3-1: build: PASS + conformance/interfaces/pthread_exit/3-1: link: PASS + conformance/interfaces/pthread_exit/3-2: build: PASS + conformance/interfaces/pthread_exit/3-2: link: PASS + conformance/interfaces/pthread_exit/4-1: build: PASS + conformance/interfaces/pthread_exit/4-1: link: PASS + conformance/interfaces/pthread_exit/5-1: build: PASS + conformance/interfaces/pthread_exit/5-1: link: PASS + conformance/interfaces/pthread_exit/6-1: build: PASS + conformance/interfaces/pthread_exit/6-1: link: PASS + conformance/interfaces/pthread_exit/6-2: build: PASS + conformance/interfaces/pthread_exit/6-2: link: PASS + conformance/interfaces/pthread_getcpuclockid/1-1: build: PASS + conformance/interfaces/pthread_getcpuclockid/1-1: link: PASS + conformance/interfaces/pthread_getcpuclockid/speculative/3-1: build: PASS + conformance/interfaces/pthread_getcpuclockid/speculative/3-1: link: PASS + conformance/interfaces/pthread_getschedparam/1-1: build: PASS + conformance/interfaces/pthread_getschedparam/1-1: link: PASS + conformance/interfaces/pthread_getschedparam/1-2: build: PASS + conformance/interfaces/pthread_getschedparam/1-2: link: PASS + conformance/interfaces/pthread_getschedparam/1-3: build: PASS + conformance/interfaces/pthread_getschedparam/1-3: link: PASS + conformance/interfaces/pthread_getschedparam/4-1: build: PASS + conformance/interfaces/pthread_getschedparam/4-1: link: PASS + conformance/interfaces/pthread_getspecific/1-1: build: PASS + conformance/interfaces/pthread_getspecific/1-1: link: PASS + conformance/interfaces/pthread_getspecific/3-1: build: PASS + conformance/interfaces/pthread_getspecific/3-1: link: PASS + conformance/interfaces/pthread_join/1-1: build: PASS + conformance/interfaces/pthread_join/1-1: link: PASS + conformance/interfaces/pthread_join/1-2: build: PASS + conformance/interfaces/pthread_join/1-2: link: PASS + conformance/interfaces/pthread_join/2-1: build: PASS + conformance/interfaces/pthread_join/2-1: link: PASS + conformance/interfaces/pthread_join/3-1: build: PASS + conformance/interfaces/pthread_join/3-1: link: PASS + conformance/interfaces/pthread_join/4-1: build: PASS + conformance/interfaces/pthread_join/4-1: link: PASS + conformance/interfaces/pthread_join/5-1: build: PASS + conformance/interfaces/pthread_join/5-1: link: PASS + conformance/interfaces/pthread_join/6-2: build: PASS + conformance/interfaces/pthread_join/6-2: link: PASS + conformance/interfaces/pthread_join/6-3: build: PASS + conformance/interfaces/pthread_join/6-3: link: PASS + conformance/interfaces/pthread_join/speculative/6-1: build: PASS + conformance/interfaces/pthread_join/speculative/6-1: link: PASS + conformance/interfaces/pthread_key_create/1-1: build: PASS + conformance/interfaces/pthread_key_create/1-1: link: PASS + conformance/interfaces/pthread_key_create/1-2: build: PASS + conformance/interfaces/pthread_key_create/1-2: link: PASS + conformance/interfaces/pthread_key_create/2-1: build: PASS + conformance/interfaces/pthread_key_create/2-1: link: PASS + conformance/interfaces/pthread_key_create/3-1: build: PASS + conformance/interfaces/pthread_key_create/3-1: link: PASS + conformance/interfaces/pthread_key_create/speculative/5-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_key_create/speculative/5-1.c:37: error: ‘PTHREAD_KEYS_MAX’ undeclared here (not in a function) + conformance/interfaces/pthread_key_delete/1-1: build: PASS + conformance/interfaces/pthread_key_delete/1-1: link: PASS + conformance/interfaces/pthread_key_delete/1-2: build: PASS + conformance/interfaces/pthread_key_delete/1-2: link: PASS + conformance/interfaces/pthread_key_delete/2-1: build: PASS + conformance/interfaces/pthread_key_delete/2-1: link: PASS + conformance/interfaces/pthread_kill/1-1: build: PASS + conformance/interfaces/pthread_kill/1-1: link: PASS + conformance/interfaces/pthread_kill/1-2: build: PASS + conformance/interfaces/pthread_kill/1-2: link: PASS + conformance/interfaces/pthread_kill/2-1: build: PASS + conformance/interfaces/pthread_kill/2-1: link: PASS + conformance/interfaces/pthread_kill/3-1: build: PASS + conformance/interfaces/pthread_kill/3-1: link: PASS + conformance/interfaces/pthread_kill/6-1: build: PASS + conformance/interfaces/pthread_kill/6-1: link: PASS + conformance/interfaces/pthread_kill/7-1: build: PASS + conformance/interfaces/pthread_kill/7-1: link: PASS + conformance/interfaces/pthread_kill/8-1: build: PASS + conformance/interfaces/pthread_kill/8-1: link: PASS + conformance/interfaces/pthread_mutex_destroy/1-1: build: PASS + conformance/interfaces/pthread_mutex_destroy/1-1: link: PASS + conformance/interfaces/pthread_mutex_destroy/2-1: build: PASS + conformance/interfaces/pthread_mutex_destroy/2-1: link: PASS + conformance/interfaces/pthread_mutex_destroy/2-2: build: PASS + conformance/interfaces/pthread_mutex_destroy/2-2: link: PASS + conformance/interfaces/pthread_mutex_destroy/3-1: build: PASS + conformance/interfaces/pthread_mutex_destroy/3-1: link: PASS + conformance/interfaces/pthread_mutex_destroy/5-1: build: PASS + conformance/interfaces/pthread_mutex_destroy/5-1: link: PASS + conformance/interfaces/pthread_mutex_destroy/5-2: build: PASS + conformance/interfaces/pthread_mutex_destroy/5-2: link: PASS + conformance/interfaces/pthread_mutex_destroy/speculative/4-2: build: PASS + conformance/interfaces/pthread_mutex_destroy/speculative/4-2: link: PASS + conformance/interfaces/pthread_mutex_getprioceiling/1-1: build: PASS + conformance/interfaces/pthread_mutex_getprioceiling/1-1: link: PASS + conformance/interfaces/pthread_mutex_init/1-1: build: PASS + conformance/interfaces/pthread_mutex_init/1-1: link: PASS + conformance/interfaces/pthread_mutex_init/1-2: build: PASS + conformance/interfaces/pthread_mutex_init/1-2: link: PASS + conformance/interfaces/pthread_mutex_init/2-1: build: PASS + conformance/interfaces/pthread_mutex_init/2-1: link: PASS + conformance/interfaces/pthread_mutex_init/3-1: build: PASS + conformance/interfaces/pthread_mutex_init/3-1: link: PASS + conformance/interfaces/pthread_mutex_init/3-2: build: PASS + conformance/interfaces/pthread_mutex_init/3-2: link: PASS + conformance/interfaces/pthread_mutex_init/4-1: build: PASS + conformance/interfaces/pthread_mutex_init/4-1: link: PASS + conformance/interfaces/pthread_mutex_init/5-1: build: PASS + conformance/interfaces/pthread_mutex_init/5-1: link: PASS + conformance/interfaces/pthread_mutex_init/5-3: build: PASS + conformance/interfaces/pthread_mutex_init/5-3: link: PASS + conformance/interfaces/pthread_mutex_init/speculative/5-2: build: PASS + conformance/interfaces/pthread_mutex_init/speculative/5-2: link: PASS + conformance/interfaces/pthread_mutex_lock/1-1: build: PASS + conformance/interfaces/pthread_mutex_lock/1-1: link: PASS + conformance/interfaces/pthread_mutex_lock/2-1: build: PASS + conformance/interfaces/pthread_mutex_lock/2-1: link: PASS + conformance/interfaces/pthread_mutex_lock/3-1: build: PASS + conformance/interfaces/pthread_mutex_lock/3-1: link: PASS + conformance/interfaces/pthread_mutex_lock/4-1: build: PASS + conformance/interfaces/pthread_mutex_lock/4-1: link: PASS + conformance/interfaces/pthread_mutex_lock/5-1: build: PASS + conformance/interfaces/pthread_mutex_lock/5-1: link: PASS + conformance/interfaces/pthread_mutex_timedlock/1-1: build: PASS + conformance/interfaces/pthread_mutex_timedlock/1-1: link: PASS + conformance/interfaces/pthread_mutex_timedlock/2-1: build: PASS + conformance/interfaces/pthread_mutex_timedlock/2-1: link: PASS + conformance/interfaces/pthread_mutex_timedlock/4-1: build: PASS + conformance/interfaces/pthread_mutex_timedlock/4-1: link: PASS + conformance/interfaces/pthread_mutex_timedlock/5-1: build: PASS + conformance/interfaces/pthread_mutex_timedlock/5-1: link: PASS + conformance/interfaces/pthread_mutex_timedlock/5-2: build: PASS + conformance/interfaces/pthread_mutex_timedlock/5-2: link: PASS + conformance/interfaces/pthread_mutex_timedlock/5-3: build: PASS + conformance/interfaces/pthread_mutex_timedlock/5-3: link: PASS + conformance/interfaces/pthread_mutex_trylock/1-1: build: PASS + conformance/interfaces/pthread_mutex_trylock/1-1: link: PASS + conformance/interfaces/pthread_mutex_trylock/1-2: build: PASS + conformance/interfaces/pthread_mutex_trylock/1-2: link: PASS + conformance/interfaces/pthread_mutex_trylock/2-1: build: PASS + conformance/interfaces/pthread_mutex_trylock/2-1: link: PASS + conformance/interfaces/pthread_mutex_trylock/3-1: build: PASS + conformance/interfaces/pthread_mutex_trylock/3-1: link: PASS + conformance/interfaces/pthread_mutex_trylock/4-1: build: PASS + conformance/interfaces/pthread_mutex_trylock/4-1: link: PASS + conformance/interfaces/pthread_mutex_trylock/4-2: build: PASS + conformance/interfaces/pthread_mutex_trylock/4-2: link: PASS + conformance/interfaces/pthread_mutex_trylock/4-3: build: PASS + conformance/interfaces/pthread_mutex_trylock/4-3: link: PASS + conformance/interfaces/pthread_mutex_unlock/1-1: build: PASS + conformance/interfaces/pthread_mutex_unlock/1-1: link: PASS + conformance/interfaces/pthread_mutex_unlock/2-1: build: PASS + conformance/interfaces/pthread_mutex_unlock/2-1: link: PASS + conformance/interfaces/pthread_mutex_unlock/3-1: build: PASS + conformance/interfaces/pthread_mutex_unlock/3-1: link: PASS + conformance/interfaces/pthread_mutex_unlock/5-1: build: PASS + conformance/interfaces/pthread_mutex_unlock/5-1: link: PASS + conformance/interfaces/pthread_mutex_unlock/5-2: build: PASS + conformance/interfaces/pthread_mutex_unlock/5-2: link: PASS + conformance/interfaces/pthread_mutexattr_destroy/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_destroy/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_destroy/2-1: build: PASS + conformance/interfaces/pthread_mutexattr_destroy/2-1: link: PASS + conformance/interfaces/pthread_mutexattr_destroy/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_destroy/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_destroy/4-1: build: PASS + conformance/interfaces/pthread_mutexattr_destroy/4-1: link: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: build: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: link: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_getprotocol/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_getprotocol/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_getprotocol/1-2: build: PASS + conformance/interfaces/pthread_mutexattr_getprotocol/1-2: link: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-2: build: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-2: link: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-3: build: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-3: link: PASS + conformance/interfaces/pthread_mutexattr_getpshared/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_getpshared/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-2: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-2: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-3: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-3: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-4: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-4: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-5: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-5: link: PASS + conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_init/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_init/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_init/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_init/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: build: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: link: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-2: build: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-2: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/1-2: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/1-2: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-1: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-1: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-2: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-2: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_setpshared/3-2: build: PASS + conformance/interfaces/pthread_mutexattr_setpshared/3-2: link: PASS + conformance/interfaces/pthread_mutexattr_settype/1-1: build: PASS + conformance/interfaces/pthread_mutexattr_settype/1-1: link: PASS + conformance/interfaces/pthread_mutexattr_settype/2-1: build: PASS + conformance/interfaces/pthread_mutexattr_settype/2-1: link: PASS + conformance/interfaces/pthread_mutexattr_settype/3-1: build: PASS + conformance/interfaces/pthread_mutexattr_settype/3-1: link: PASS + conformance/interfaces/pthread_mutexattr_settype/3-2: build: PASS + conformance/interfaces/pthread_mutexattr_settype/3-2: link: PASS + conformance/interfaces/pthread_mutexattr_settype/3-3: build: PASS + conformance/interfaces/pthread_mutexattr_settype/3-3: link: PASS + conformance/interfaces/pthread_mutexattr_settype/3-4: build: PASS + conformance/interfaces/pthread_mutexattr_settype/3-4: link: PASS + conformance/interfaces/pthread_mutexattr_settype/7-1: build: PASS + conformance/interfaces/pthread_mutexattr_settype/7-1: link: PASS + conformance/interfaces/pthread_once/1-1: build: PASS + conformance/interfaces/pthread_once/1-1: link: PASS + conformance/interfaces/pthread_once/1-2: build: PASS + conformance/interfaces/pthread_once/1-2: link: PASS + conformance/interfaces/pthread_once/1-3: build: PASS + conformance/interfaces/pthread_once/1-3: link: PASS + conformance/interfaces/pthread_once/2-1: build: PASS + conformance/interfaces/pthread_once/2-1: link: PASS + conformance/interfaces/pthread_once/3-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_once/3-1.c: In function ‘main’: + conformance/interfaces/pthread_once/3-1.c:71: error: expected expression before ‘{’ token + conformance/interfaces/pthread_once/4-1: build: PASS + conformance/interfaces/pthread_once/4-1: link: SKIP + conformance/interfaces/pthread_once/6-1: build: FAILED: Compiler output: + conformance/interfaces/pthread_once/6-1.c: In function ‘test’: + conformance/interfaces/pthread_once/6-1.c:199: error: expected expression before ‘{’ token + conformance/interfaces/pthread_rwlock_destroy/1-1: build: PASS + conformance/interfaces/pthread_rwlock_destroy/1-1: link: PASS + conformance/interfaces/pthread_rwlock_destroy/3-1: build: PASS + conformance/interfaces/pthread_rwlock_destroy/3-1: link: PASS + conformance/interfaces/pthread_rwlock_init/1-1: build: PASS + conformance/interfaces/pthread_rwlock_init/1-1: link: PASS + conformance/interfaces/pthread_rwlock_init/2-1: build: PASS + conformance/interfaces/pthread_rwlock_init/2-1: link: PASS + conformance/interfaces/pthread_rwlock_init/3-1: build: PASS + conformance/interfaces/pthread_rwlock_init/3-1: link: PASS + conformance/interfaces/pthread_rwlock_init/6-1: build: PASS + conformance/interfaces/pthread_rwlock_init/6-1: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-1: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-1: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-2: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-2: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-3: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-3: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/4-1: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/4-1: link: PASS + conformance/interfaces/pthread_rwlock_rdlock/5-1: build: PASS + conformance/interfaces/pthread_rwlock_rdlock/5-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/2-1: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/2-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/3-1: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/3-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/5-1: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/5-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-1: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-1: link: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-2: build: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-2: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/2-1: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/2-1: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/3-1: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/3-1: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/5-1: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/5-1: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-1: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-1: link: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-2: build: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-2: link: PASS + conformance/interfaces/pthread_rwlock_tryrdlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_tryrdlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_trywrlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_trywrlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: build: PASS + conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: link: PASS + conformance/interfaces/pthread_rwlock_unlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_unlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_unlock/2-1: build: PASS + conformance/interfaces/pthread_rwlock_unlock/2-1: link: PASS + conformance/interfaces/pthread_rwlock_unlock/3-1: build: PASS + conformance/interfaces/pthread_rwlock_unlock/3-1: link: PASS + conformance/interfaces/pthread_rwlock_unlock/4-1: build: PASS + conformance/interfaces/pthread_rwlock_unlock/4-1: link: PASS + conformance/interfaces/pthread_rwlock_unlock/4-2: build: PASS + conformance/interfaces/pthread_rwlock_unlock/4-2: link: PASS + conformance/interfaces/pthread_rwlock_wrlock/1-1: build: PASS + conformance/interfaces/pthread_rwlock_wrlock/1-1: link: PASS + conformance/interfaces/pthread_rwlock_wrlock/2-1: build: PASS + conformance/interfaces/pthread_rwlock_wrlock/2-1: link: PASS + conformance/interfaces/pthread_rwlock_wrlock/3-1: build: PASS + conformance/interfaces/pthread_rwlock_wrlock/3-1: link: PASS + conformance/interfaces/pthread_rwlockattr_destroy/1-1: build: PASS + conformance/interfaces/pthread_rwlockattr_destroy/1-1: link: PASS + conformance/interfaces/pthread_rwlockattr_destroy/2-1: build: PASS + conformance/interfaces/pthread_rwlockattr_destroy/2-1: link: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/1-1: build: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/1-1: link: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/2-1: build: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/2-1: link: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/4-1: build: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/4-1: link: PASS + conformance/interfaces/pthread_rwlockattr_init/1-1: build: PASS + conformance/interfaces/pthread_rwlockattr_init/1-1: link: PASS + conformance/interfaces/pthread_rwlockattr_init/2-1: build: PASS + conformance/interfaces/pthread_rwlockattr_init/2-1: link: PASS + conformance/interfaces/pthread_rwlockattr_setpshared/1-1: build: PASS + conformance/interfaces/pthread_rwlockattr_setpshared/1-1: link: PASS + conformance/interfaces/pthread_self/1-1: build: PASS + conformance/interfaces/pthread_self/1-1: link: PASS + conformance/interfaces/pthread_setcancelstate/1-1: build: PASS + conformance/interfaces/pthread_setcancelstate/1-1: link: PASS + conformance/interfaces/pthread_setcancelstate/1-2: build: PASS + conformance/interfaces/pthread_setcancelstate/1-2: link: PASS + conformance/interfaces/pthread_setcancelstate/2-1: build: PASS + conformance/interfaces/pthread_setcancelstate/2-1: link: PASS + conformance/interfaces/pthread_setcancelstate/3-1: build: PASS + conformance/interfaces/pthread_setcancelstate/3-1: link: PASS + conformance/interfaces/pthread_setcanceltype/1-1: build: PASS + conformance/interfaces/pthread_setcanceltype/1-1: link: PASS + conformance/interfaces/pthread_setcanceltype/1-2: build: PASS + conformance/interfaces/pthread_setcanceltype/1-2: link: PASS + conformance/interfaces/pthread_setcanceltype/2-1: build: PASS + conformance/interfaces/pthread_setcanceltype/2-1: link: PASS + conformance/interfaces/pthread_setschedparam/1-1: build: PASS + conformance/interfaces/pthread_setschedparam/1-1: link: PASS + conformance/interfaces/pthread_setschedparam/1-2: build: PASS + conformance/interfaces/pthread_setschedparam/1-2: link: PASS + conformance/interfaces/pthread_setschedparam/4-1: build: PASS + conformance/interfaces/pthread_setschedparam/4-1: link: PASS + conformance/interfaces/pthread_setschedparam/5-1: build: PASS + conformance/interfaces/pthread_setschedparam/5-1: link: PASS + conformance/interfaces/pthread_setschedprio/1-1: build: PASS + conformance/interfaces/pthread_setschedprio/1-1: link: PASS + conformance/interfaces/pthread_setspecific/1-1: build: PASS + conformance/interfaces/pthread_setspecific/1-1: link: PASS + conformance/interfaces/pthread_setspecific/1-2: build: PASS + conformance/interfaces/pthread_setspecific/1-2: link: PASS + conformance/interfaces/pthread_sigmask/10-1: build: PASS + conformance/interfaces/pthread_sigmask/10-1: link: PASS + conformance/interfaces/pthread_sigmask/12-1: build: PASS + conformance/interfaces/pthread_sigmask/12-1: link: PASS + conformance/interfaces/pthread_sigmask/14-1: build: PASS + conformance/interfaces/pthread_sigmask/14-1: link: PASS + conformance/interfaces/pthread_sigmask/15-1: build: PASS + conformance/interfaces/pthread_sigmask/15-1: link: PASS + conformance/interfaces/pthread_sigmask/16-1: build: PASS + conformance/interfaces/pthread_sigmask/16-1: link: PASS + conformance/interfaces/pthread_sigmask/18-1: build: PASS + conformance/interfaces/pthread_sigmask/18-1: link: PASS + conformance/interfaces/pthread_sigmask/4-1: build: PASS + conformance/interfaces/pthread_sigmask/4-1: link: PASS + conformance/interfaces/pthread_sigmask/5-1: build: PASS + conformance/interfaces/pthread_sigmask/5-1: link: PASS + conformance/interfaces/pthread_sigmask/6-1: build: PASS + conformance/interfaces/pthread_sigmask/6-1: link: PASS + conformance/interfaces/pthread_sigmask/7-1: build: PASS + conformance/interfaces/pthread_sigmask/7-1: link: PASS + conformance/interfaces/pthread_sigmask/8-1: build: PASS + conformance/interfaces/pthread_sigmask/8-1: link: PASS + conformance/interfaces/pthread_sigmask/8-2: build: PASS + conformance/interfaces/pthread_sigmask/8-2: link: PASS + conformance/interfaces/pthread_sigmask/8-3: build: PASS + conformance/interfaces/pthread_sigmask/8-3: link: PASS + conformance/interfaces/pthread_sigmask/9-1: build: PASS + conformance/interfaces/pthread_sigmask/9-1: link: PASS + conformance/interfaces/pthread_spin_destroy/1-1: build: PASS + conformance/interfaces/pthread_spin_destroy/1-1: link: PASS + conformance/interfaces/pthread_spin_destroy/3-1: build: PASS + conformance/interfaces/pthread_spin_destroy/3-1: link: PASS + conformance/interfaces/pthread_spin_init/1-1: build: PASS + conformance/interfaces/pthread_spin_init/1-1: link: PASS + conformance/interfaces/pthread_spin_init/2-1: build: PASS + conformance/interfaces/pthread_spin_init/2-1: link: PASS + conformance/interfaces/pthread_spin_init/2-2: build: PASS + conformance/interfaces/pthread_spin_init/2-2: link: PASS + conformance/interfaces/pthread_spin_init/4-1: build: PASS + conformance/interfaces/pthread_spin_init/4-1: link: PASS + conformance/interfaces/pthread_spin_lock/1-1: build: PASS + conformance/interfaces/pthread_spin_lock/1-1: link: PASS + conformance/interfaces/pthread_spin_lock/1-2: build: PASS + conformance/interfaces/pthread_spin_lock/1-2: link: PASS + conformance/interfaces/pthread_spin_lock/3-1: build: PASS + conformance/interfaces/pthread_spin_lock/3-1: link: PASS + conformance/interfaces/pthread_spin_lock/3-2: build: PASS + conformance/interfaces/pthread_spin_lock/3-2: link: PASS + conformance/interfaces/pthread_spin_trylock/1-1: build: PASS + conformance/interfaces/pthread_spin_trylock/1-1: link: PASS + conformance/interfaces/pthread_spin_trylock/4-1: build: PASS + conformance/interfaces/pthread_spin_trylock/4-1: link: PASS + conformance/interfaces/pthread_spin_unlock/1-1: build: PASS + conformance/interfaces/pthread_spin_unlock/1-1: link: PASS + conformance/interfaces/pthread_spin_unlock/1-2: build: PASS + conformance/interfaces/pthread_spin_unlock/1-2: link: PASS + conformance/interfaces/pthread_spin_unlock/3-1: build: PASS + conformance/interfaces/pthread_spin_unlock/3-1: link: PASS + conformance/interfaces/pthread_testcancel/1-1: build: PASS + conformance/interfaces/pthread_testcancel/1-1: link: PASS + conformance/interfaces/pthread_testcancel/2-1: build: PASS + conformance/interfaces/pthread_testcancel/2-1: link: PASS + conformance/interfaces/raise/10000-1: build: PASS + conformance/interfaces/raise/10000-1: link: PASS + conformance/interfaces/raise/1-1: build: PASS + conformance/interfaces/raise/1-1: link: PASS + conformance/interfaces/raise/1-2: build: PASS + conformance/interfaces/raise/1-2: link: PASS + conformance/interfaces/raise/2-1: build: PASS + conformance/interfaces/raise/2-1: link: PASS + conformance/interfaces/raise/4-1: build: PASS + conformance/interfaces/raise/4-1: link: PASS + conformance/interfaces/raise/6-1: build: PASS + conformance/interfaces/raise/6-1: link: PASS + conformance/interfaces/raise/7-1: build: PASS + conformance/interfaces/raise/7-1: link: PASS + conformance/interfaces/sched_get_priority_max/1-1: build: PASS + conformance/interfaces/sched_get_priority_max/1-1: link: PASS + conformance/interfaces/sched_get_priority_max/1-2: build: PASS + conformance/interfaces/sched_get_priority_max/1-2: link: PASS + conformance/interfaces/sched_get_priority_max/1-3: build: PASS + conformance/interfaces/sched_get_priority_max/1-3: link: PASS + conformance/interfaces/sched_get_priority_max/1-4: build: PASS + conformance/interfaces/sched_get_priority_max/1-4: link: PASS + conformance/interfaces/sched_get_priority_max/2-1: build: PASS + conformance/interfaces/sched_get_priority_max/2-1: link: PASS + conformance/interfaces/sched_get_priority_min/1-1: build: PASS + conformance/interfaces/sched_get_priority_min/1-1: link: PASS + conformance/interfaces/sched_get_priority_min/1-2: build: PASS + conformance/interfaces/sched_get_priority_min/1-2: link: PASS + conformance/interfaces/sched_get_priority_min/1-3: build: PASS + conformance/interfaces/sched_get_priority_min/1-3: link: PASS + conformance/interfaces/sched_get_priority_min/1-4: build: PASS + conformance/interfaces/sched_get_priority_min/1-4: link: PASS + conformance/interfaces/sched_get_priority_min/2-1: build: PASS + conformance/interfaces/sched_get_priority_min/2-1: link: PASS + conformance/interfaces/sched_getparam/1-1: build: PASS + conformance/interfaces/sched_getparam/1-1: link: PASS + conformance/interfaces/sched_getparam/2-1: build: PASS + conformance/interfaces/sched_getparam/2-1: link: PASS + conformance/interfaces/sched_getparam/3-1: build: PASS + conformance/interfaces/sched_getparam/3-1: link: PASS + conformance/interfaces/sched_getparam/4-1: build: PASS + conformance/interfaces/sched_getparam/4-1: link: PASS + conformance/interfaces/sched_getparam/6-1: build: PASS + conformance/interfaces/sched_getparam/6-1: link: PASS + conformance/interfaces/sched_getparam/speculative/7-1: build: PASS + conformance/interfaces/sched_getparam/speculative/7-1: link: PASS + conformance/interfaces/sched_getscheduler/1-1: build: PASS + conformance/interfaces/sched_getscheduler/1-1: link: PASS + conformance/interfaces/sched_getscheduler/2-1: build: PASS + conformance/interfaces/sched_getscheduler/2-1: link: PASS + conformance/interfaces/sched_getscheduler/3-1: build: PASS + conformance/interfaces/sched_getscheduler/3-1: link: PASS + conformance/interfaces/sched_getscheduler/4-1: build: PASS + conformance/interfaces/sched_getscheduler/4-1: link: PASS + conformance/interfaces/sched_getscheduler/5-1: build: PASS + conformance/interfaces/sched_getscheduler/5-1: link: PASS + conformance/interfaces/sched_getscheduler/7-1: build: PASS + conformance/interfaces/sched_getscheduler/7-1: link: PASS + conformance/interfaces/sched_rr_get_interval/1-1: build: PASS + conformance/interfaces/sched_rr_get_interval/1-1: link: PASS + conformance/interfaces/sched_rr_get_interval/2-1: build: PASS + conformance/interfaces/sched_rr_get_interval/2-1: link: PASS + conformance/interfaces/sched_rr_get_interval/3-1: build: PASS + conformance/interfaces/sched_rr_get_interval/3-1: link: PASS + conformance/interfaces/sched_rr_get_interval/speculative/5-1: build: PASS + conformance/interfaces/sched_rr_get_interval/speculative/5-1: link: PASS + conformance/interfaces/sched_setparam/1-1: build: PASS + conformance/interfaces/sched_setparam/1-1: link: PASS + conformance/interfaces/sched_setparam/10-1: build: PASS + conformance/interfaces/sched_setparam/10-1: link: PASS + conformance/interfaces/sched_setparam/12-1: build: PASS + conformance/interfaces/sched_setparam/12-1: link: PASS + conformance/interfaces/sched_setparam/13-1: build: PASS + conformance/interfaces/sched_setparam/13-1: link: PASS + conformance/interfaces/sched_setparam/14-1: build: PASS + conformance/interfaces/sched_setparam/14-1: link: PASS + conformance/interfaces/sched_setparam/15-1: build: PASS + conformance/interfaces/sched_setparam/15-1: link: PASS + conformance/interfaces/sched_setparam/16-1: build: PASS + conformance/interfaces/sched_setparam/16-1: link: PASS + conformance/interfaces/sched_setparam/17-1: build: PASS + conformance/interfaces/sched_setparam/17-1: link: PASS + conformance/interfaces/sched_setparam/18-1: build: PASS + conformance/interfaces/sched_setparam/18-1: link: PASS + conformance/interfaces/sched_setparam/19-1: build: PASS + conformance/interfaces/sched_setparam/19-1: link: PASS + conformance/interfaces/sched_setparam/2-1: build: PASS + conformance/interfaces/sched_setparam/2-1: link: PASS + conformance/interfaces/sched_setparam/2-2: build: PASS + conformance/interfaces/sched_setparam/2-2: link: PASS + conformance/interfaces/sched_setparam/20-1: build: PASS + conformance/interfaces/sched_setparam/20-1: link: PASS + conformance/interfaces/sched_setparam/21-1: build: PASS + conformance/interfaces/sched_setparam/21-1: link: PASS + conformance/interfaces/sched_setparam/21-2: build: PASS + conformance/interfaces/sched_setparam/21-2: link: PASS + conformance/interfaces/sched_setparam/22-1: build: PASS + conformance/interfaces/sched_setparam/22-1: link: PASS + conformance/interfaces/sched_setparam/23-1: build: PASS + conformance/interfaces/sched_setparam/23-1: link: PASS + conformance/interfaces/sched_setparam/23-2: build: PASS + conformance/interfaces/sched_setparam/23-2: link: PASS + conformance/interfaces/sched_setparam/23-3: build: PASS + conformance/interfaces/sched_setparam/23-3: link: PASS + conformance/interfaces/sched_setparam/23-4: build: PASS + conformance/interfaces/sched_setparam/23-4: link: PASS + conformance/interfaces/sched_setparam/23-5: build: PASS + conformance/interfaces/sched_setparam/23-5: link: PASS + conformance/interfaces/sched_setparam/23-6: build: PASS + conformance/interfaces/sched_setparam/23-6: link: PASS + conformance/interfaces/sched_setparam/23-7: build: PASS + conformance/interfaces/sched_setparam/23-7: link: PASS + conformance/interfaces/sched_setparam/25-1: build: PASS + conformance/interfaces/sched_setparam/25-1: link: PASS + conformance/interfaces/sched_setparam/25-2: build: PASS + conformance/interfaces/sched_setparam/25-2: link: PASS + conformance/interfaces/sched_setparam/25-3: build: PASS + conformance/interfaces/sched_setparam/25-3: link: SKIP + conformance/interfaces/sched_setparam/25-4: build: PASS + conformance/interfaces/sched_setparam/25-4: link: SKIP + conformance/interfaces/sched_setparam/26-1: build: PASS + conformance/interfaces/sched_setparam/26-1: link: PASS + conformance/interfaces/sched_setparam/27-1: build: PASS + conformance/interfaces/sched_setparam/27-1: link: PASS + conformance/interfaces/sched_setparam/3-1: build: PASS + conformance/interfaces/sched_setparam/3-1: link: PASS + conformance/interfaces/sched_setparam/5-1: build: PASS + conformance/interfaces/sched_setparam/5-1: link: PASS + conformance/interfaces/sched_setparam/6-1: build: PASS + conformance/interfaces/sched_setparam/6-1: link: PASS + conformance/interfaces/sched_setparam/7-1: build: PASS + conformance/interfaces/sched_setparam/7-1: link: PASS + conformance/interfaces/sched_setparam/8-1: build: PASS + conformance/interfaces/sched_setparam/8-1: link: PASS + conformance/interfaces/sched_setparam/9-1: build: PASS + conformance/interfaces/sched_setparam/9-1: link: PASS + conformance/interfaces/sched_setscheduler/1-1: build: PASS + conformance/interfaces/sched_setscheduler/1-1: link: PASS + conformance/interfaces/sched_setscheduler/10-1: build: PASS + conformance/interfaces/sched_setscheduler/10-1: link: PASS + conformance/interfaces/sched_setscheduler/11-1: build: PASS + conformance/interfaces/sched_setscheduler/11-1: link: PASS + conformance/interfaces/sched_setscheduler/12-1: build: PASS + conformance/interfaces/sched_setscheduler/12-1: link: PASS + conformance/interfaces/sched_setscheduler/13-1: build: PASS + conformance/interfaces/sched_setscheduler/13-1: link: PASS + conformance/interfaces/sched_setscheduler/14-1: build: PASS + conformance/interfaces/sched_setscheduler/14-1: link: PASS + conformance/interfaces/sched_setscheduler/15-1: build: PASS + conformance/interfaces/sched_setscheduler/15-1: link: PASS + conformance/interfaces/sched_setscheduler/15-2: build: PASS + conformance/interfaces/sched_setscheduler/15-2: link: PASS + conformance/interfaces/sched_setscheduler/16-1: build: PASS + conformance/interfaces/sched_setscheduler/16-1: link: PASS + conformance/interfaces/sched_setscheduler/17-1: build: PASS + conformance/interfaces/sched_setscheduler/17-1: link: PASS + conformance/interfaces/sched_setscheduler/17-2: build: PASS + conformance/interfaces/sched_setscheduler/17-2: link: PASS + conformance/interfaces/sched_setscheduler/17-3: build: PASS + conformance/interfaces/sched_setscheduler/17-3: link: PASS + conformance/interfaces/sched_setscheduler/17-4: build: PASS + conformance/interfaces/sched_setscheduler/17-4: link: PASS + conformance/interfaces/sched_setscheduler/17-5: build: PASS + conformance/interfaces/sched_setscheduler/17-5: link: PASS + conformance/interfaces/sched_setscheduler/17-6: build: PASS + conformance/interfaces/sched_setscheduler/17-6: link: PASS + conformance/interfaces/sched_setscheduler/17-7: build: PASS + conformance/interfaces/sched_setscheduler/17-7: link: PASS + conformance/interfaces/sched_setscheduler/19-1: build: PASS + conformance/interfaces/sched_setscheduler/19-1: link: PASS + conformance/interfaces/sched_setscheduler/19-2: build: PASS + conformance/interfaces/sched_setscheduler/19-2: link: PASS + conformance/interfaces/sched_setscheduler/19-3: build: PASS + conformance/interfaces/sched_setscheduler/19-3: link: PASS + conformance/interfaces/sched_setscheduler/19-4: build: PASS + conformance/interfaces/sched_setscheduler/19-4: link: PASS + conformance/interfaces/sched_setscheduler/19-5: build: PASS + conformance/interfaces/sched_setscheduler/19-5: link: PASS + conformance/interfaces/sched_setscheduler/2-1: build: PASS + conformance/interfaces/sched_setscheduler/2-1: link: PASS + conformance/interfaces/sched_setscheduler/20-1: build: PASS + conformance/interfaces/sched_setscheduler/20-1: link: PASS + conformance/interfaces/sched_setscheduler/21-1: build: PASS + conformance/interfaces/sched_setscheduler/21-1: link: PASS + conformance/interfaces/sched_setscheduler/22-1: build: PASS + conformance/interfaces/sched_setscheduler/22-1: link: PASS + conformance/interfaces/sched_setscheduler/22-2: build: PASS + conformance/interfaces/sched_setscheduler/22-2: link: PASS + conformance/interfaces/sched_setscheduler/4-1: build: PASS + conformance/interfaces/sched_setscheduler/4-1: link: PASS + conformance/interfaces/sched_setscheduler/5-1: build: PASS + conformance/interfaces/sched_setscheduler/5-1: link: PASS + conformance/interfaces/sched_setscheduler/6-1: build: PASS + conformance/interfaces/sched_setscheduler/6-1: link: PASS + conformance/interfaces/sched_setscheduler/7-1: build: PASS + conformance/interfaces/sched_setscheduler/7-1: link: PASS + conformance/interfaces/sched_setscheduler/9-1: build: PASS + conformance/interfaces/sched_setscheduler/9-1: link: PASS + conformance/interfaces/sched_yield/1-1: build: FAILED: Compiler output: + cc1: warnings being treated as errors + conformance/interfaces/sched_yield/1-1.c: In function ‘set_process_affinity’: + conformance/interfaces/sched_yield/1-1.c:87: error: implicit declaration of function ‘__CPU_ZERO_S’ + conformance/interfaces/sched_yield/1-1.c:89: error: implicit declaration of function ‘__CPU_SET_S’ + conformance/interfaces/sched_yield/1-1.c: In function ‘set_thread_affinity’: + conformance/interfaces/sched_yield/1-1.c:119: error: implicit declaration of function ‘pthread_setaffinity_np’ + conformance/interfaces/sched_yield/1-1.c: In function ‘runner’: + conformance/interfaces/sched_yield/1-1.c:136: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’ + conformance/interfaces/sched_yield/1-1.c: In function ‘busy_thread’: + conformance/interfaces/sched_yield/1-1.c:159: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’ + conformance/interfaces/sched_yield/2-1: build: PASS + conformance/interfaces/sched_yield/2-1: link: PASS + conformance/interfaces/sem_close/1-1: build: PASS + conformance/interfaces/sem_close/1-1: link: PASS + conformance/interfaces/sem_close/2-1: build: PASS + conformance/interfaces/sem_close/2-1: link: PASS + conformance/interfaces/sem_close/3-1: build: PASS + conformance/interfaces/sem_close/3-1: link: PASS + conformance/interfaces/sem_close/3-2: build: PASS + conformance/interfaces/sem_close/3-2: link: PASS + conformance/interfaces/sem_destroy/3-1: build: PASS + conformance/interfaces/sem_destroy/3-1: link: PASS + conformance/interfaces/sem_destroy/4-1: build: PASS + conformance/interfaces/sem_destroy/4-1: link: PASS + conformance/interfaces/sem_getvalue/1-1: build: PASS + conformance/interfaces/sem_getvalue/1-1: link: PASS + conformance/interfaces/sem_getvalue/2-1: build: PASS + conformance/interfaces/sem_getvalue/2-1: link: PASS + conformance/interfaces/sem_getvalue/2-2: build: PASS + conformance/interfaces/sem_getvalue/2-2: link: PASS + conformance/interfaces/sem_getvalue/4-1: build: PASS + conformance/interfaces/sem_getvalue/4-1: link: PASS + conformance/interfaces/sem_getvalue/5-1: build: PASS + conformance/interfaces/sem_getvalue/5-1: link: PASS + conformance/interfaces/sem_init/1-1: build: PASS + conformance/interfaces/sem_init/1-1: link: PASS + conformance/interfaces/sem_init/2-1: build: PASS + conformance/interfaces/sem_init/2-1: link: PASS + conformance/interfaces/sem_init/2-2: build: PASS + conformance/interfaces/sem_init/2-2: link: PASS + conformance/interfaces/sem_init/3-1: build: PASS + conformance/interfaces/sem_init/3-1: link: PASS + conformance/interfaces/sem_init/3-2: build: PASS + conformance/interfaces/sem_init/3-2: link: PASS + conformance/interfaces/sem_init/3-3: build: PASS + conformance/interfaces/sem_init/3-3: link: PASS + conformance/interfaces/sem_init/5-1: build: PASS + conformance/interfaces/sem_init/5-1: link: PASS + conformance/interfaces/sem_init/5-2: build: PASS + conformance/interfaces/sem_init/5-2: link: PASS + conformance/interfaces/sem_init/6-1: build: FAILED: Compiler output: + conformance/interfaces/sem_init/6-1.c: In function ‘main’: + conformance/interfaces/sem_init/6-1.c:29: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function) + conformance/interfaces/sem_init/6-1.c:29: error: (Each undeclared identifier is reported only once + conformance/interfaces/sem_init/6-1.c:29: error: for each function it appears in.) + conformance/interfaces/sem_init/7-1: build: PASS + conformance/interfaces/sem_init/7-1: link: PASS + conformance/interfaces/sem_open/1-1: build: PASS + conformance/interfaces/sem_open/1-1: link: PASS + conformance/interfaces/sem_open/1-2: build: PASS + conformance/interfaces/sem_open/1-2: link: PASS + conformance/interfaces/sem_open/1-3: build: PASS + conformance/interfaces/sem_open/1-3: link: PASS + conformance/interfaces/sem_open/1-4: build: PASS + conformance/interfaces/sem_open/1-4: link: PASS + conformance/interfaces/sem_open/10-1: build: PASS + conformance/interfaces/sem_open/10-1: link: PASS + conformance/interfaces/sem_open/15-1: build: PASS + conformance/interfaces/sem_open/15-1: link: PASS + conformance/interfaces/sem_open/2-1: build: PASS + conformance/interfaces/sem_open/2-1: link: PASS + conformance/interfaces/sem_open/2-2: build: PASS + conformance/interfaces/sem_open/2-2: link: PASS + conformance/interfaces/sem_open/3-1: build: PASS + conformance/interfaces/sem_open/3-1: link: PASS + conformance/interfaces/sem_open/4-1: build: PASS + conformance/interfaces/sem_open/4-1: link: PASS + conformance/interfaces/sem_open/5-1: build: FAILED: Compiler output: + conformance/interfaces/sem_open/5-1.c: In function ‘main’: + conformance/interfaces/sem_open/5-1.c:32: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function) + conformance/interfaces/sem_open/5-1.c:32: error: (Each undeclared identifier is reported only once + conformance/interfaces/sem_open/5-1.c:32: error: for each function it appears in.) + conformance/interfaces/sem_open/6-1: build: PASS + conformance/interfaces/sem_open/6-1: link: PASS + conformance/interfaces/sem_post/1-1: build: PASS + conformance/interfaces/sem_post/1-1: link: PASS + conformance/interfaces/sem_post/1-2: build: PASS + conformance/interfaces/sem_post/1-2: link: PASS + conformance/interfaces/sem_post/2-1: build: PASS + conformance/interfaces/sem_post/2-1: link: PASS + conformance/interfaces/sem_post/4-1: build: PASS + conformance/interfaces/sem_post/4-1: link: PASS + conformance/interfaces/sem_post/5-1: build: PASS + conformance/interfaces/sem_post/5-1: link: PASS + conformance/interfaces/sem_post/6-1: build: PASS + conformance/interfaces/sem_post/6-1: link: PASS + conformance/interfaces/sem_post/8-1: build: PASS + conformance/interfaces/sem_post/8-1: link: PASS + conformance/interfaces/sem_timedwait/1-1: build: PASS + conformance/interfaces/sem_timedwait/1-1: link: PASS + conformance/interfaces/sem_timedwait/10-1: build: PASS + conformance/interfaces/sem_timedwait/10-1: link: PASS + conformance/interfaces/sem_timedwait/11-1: build: PASS + conformance/interfaces/sem_timedwait/11-1: link: PASS + conformance/interfaces/sem_timedwait/2-1: build: PASS + conformance/interfaces/sem_timedwait/2-1: link: PASS + conformance/interfaces/sem_timedwait/2-2: build: PASS + conformance/interfaces/sem_timedwait/2-2: link: PASS + conformance/interfaces/sem_timedwait/3-1: build: PASS + conformance/interfaces/sem_timedwait/3-1: link: PASS + conformance/interfaces/sem_timedwait/4-1: build: PASS + conformance/interfaces/sem_timedwait/4-1: link: PASS + conformance/interfaces/sem_timedwait/6-1: build: PASS + conformance/interfaces/sem_timedwait/6-1: link: PASS + conformance/interfaces/sem_timedwait/6-2: build: PASS + conformance/interfaces/sem_timedwait/6-2: link: PASS + conformance/interfaces/sem_timedwait/7-1: build: PASS + conformance/interfaces/sem_timedwait/7-1: link: PASS + conformance/interfaces/sem_timedwait/9-1: build: PASS + conformance/interfaces/sem_timedwait/9-1: link: PASS + conformance/interfaces/sem_unlink/1-1: build: PASS + conformance/interfaces/sem_unlink/1-1: link: PASS + conformance/interfaces/sem_unlink/2-1: build: PASS + conformance/interfaces/sem_unlink/2-1: link: PASS + conformance/interfaces/sem_unlink/2-2: build: PASS + conformance/interfaces/sem_unlink/2-2: link: PASS + conformance/interfaces/sem_unlink/3-1: build: PASS + conformance/interfaces/sem_unlink/3-1: link: PASS + conformance/interfaces/sem_unlink/4-1: build: PASS + conformance/interfaces/sem_unlink/4-1: link: PASS + conformance/interfaces/sem_unlink/4-2: build: PASS + conformance/interfaces/sem_unlink/4-2: link: PASS + conformance/interfaces/sem_unlink/5-1: build: PASS + conformance/interfaces/sem_unlink/5-1: link: PASS + conformance/interfaces/sem_unlink/6-1: build: PASS + conformance/interfaces/sem_unlink/6-1: link: PASS + conformance/interfaces/sem_unlink/7-1: build: PASS + conformance/interfaces/sem_unlink/7-1: link: PASS + conformance/interfaces/sem_unlink/9-1: build: PASS + conformance/interfaces/sem_unlink/9-1: link: PASS + conformance/interfaces/sem_wait/1-1: build: PASS + conformance/interfaces/sem_wait/1-1: link: PASS + conformance/interfaces/sem_wait/1-2: build: PASS + conformance/interfaces/sem_wait/1-2: link: PASS + conformance/interfaces/sem_wait/11-1: build: PASS + conformance/interfaces/sem_wait/11-1: link: PASS + conformance/interfaces/sem_wait/12-1: build: PASS + conformance/interfaces/sem_wait/12-1: link: PASS + conformance/interfaces/sem_wait/13-1: build: PASS + conformance/interfaces/sem_wait/13-1: link: PASS + conformance/interfaces/sem_wait/3-1: build: PASS + conformance/interfaces/sem_wait/3-1: link: PASS + conformance/interfaces/sem_wait/5-1: build: PASS + conformance/interfaces/sem_wait/5-1: link: PASS + conformance/interfaces/sem_wait/7-1: build: PASS + conformance/interfaces/sem_wait/7-1: link: PASS + conformance/interfaces/shm_open/1-1: build: PASS + conformance/interfaces/shm_open/1-1: link: PASS + conformance/interfaces/shm_open/10-1: build: PASS + conformance/interfaces/shm_open/10-1: link: PASS + conformance/interfaces/shm_open/11-1: build: PASS + conformance/interfaces/shm_open/11-1: link: PASS + conformance/interfaces/shm_open/12-1: build: PASS + conformance/interfaces/shm_open/12-1: link: PASS + conformance/interfaces/shm_open/13-1: build: PASS + conformance/interfaces/shm_open/13-1: link: PASS + conformance/interfaces/shm_open/14-2: build: PASS + conformance/interfaces/shm_open/14-2: link: PASS + conformance/interfaces/shm_open/15-1: build: PASS + conformance/interfaces/shm_open/15-1: link: PASS + conformance/interfaces/shm_open/16-1: build: PASS + conformance/interfaces/shm_open/16-1: link: PASS + conformance/interfaces/shm_open/17-1: build: PASS + conformance/interfaces/shm_open/17-1: link: PASS + conformance/interfaces/shm_open/18-1: build: PASS + conformance/interfaces/shm_open/18-1: link: PASS + conformance/interfaces/shm_open/19-1: build: PASS + conformance/interfaces/shm_open/19-1: link: PASS + conformance/interfaces/shm_open/2-1: build: PASS + conformance/interfaces/shm_open/2-1: link: PASS + conformance/interfaces/shm_open/20-1: build: PASS + conformance/interfaces/shm_open/20-1: link: PASS + conformance/interfaces/shm_open/20-2: build: PASS + conformance/interfaces/shm_open/20-2: link: PASS + conformance/interfaces/shm_open/20-3: build: PASS + conformance/interfaces/shm_open/20-3: link: PASS + conformance/interfaces/shm_open/21-1: build: PASS + conformance/interfaces/shm_open/21-1: link: PASS + conformance/interfaces/shm_open/22-1: build: PASS + conformance/interfaces/shm_open/22-1: link: PASS + conformance/interfaces/shm_open/23-1: build: PASS + conformance/interfaces/shm_open/23-1: link: PASS + conformance/interfaces/shm_open/24-1: build: PASS + conformance/interfaces/shm_open/24-1: link: PASS + conformance/interfaces/shm_open/25-1: build: PASS + conformance/interfaces/shm_open/25-1: link: PASS + conformance/interfaces/shm_open/26-1: build: PASS + conformance/interfaces/shm_open/26-1: link: PASS + conformance/interfaces/shm_open/26-2: build: PASS + conformance/interfaces/shm_open/26-2: link: PASS + conformance/interfaces/shm_open/27-1: build: PASS + conformance/interfaces/shm_open/27-1: link: PASS + conformance/interfaces/shm_open/28-1: build: PASS + conformance/interfaces/shm_open/28-1: link: PASS + conformance/interfaces/shm_open/28-2: build: PASS + conformance/interfaces/shm_open/28-2: link: PASS + conformance/interfaces/shm_open/28-3: build: PASS + conformance/interfaces/shm_open/28-3: link: PASS + conformance/interfaces/shm_open/29-1: build: PASS + conformance/interfaces/shm_open/29-1: link: PASS + conformance/interfaces/shm_open/3-1: build: PASS + conformance/interfaces/shm_open/3-1: link: PASS + conformance/interfaces/shm_open/32-1: build: PASS + conformance/interfaces/shm_open/32-1: link: PASS + conformance/interfaces/shm_open/34-1: build: PASS + conformance/interfaces/shm_open/34-1: link: PASS + conformance/interfaces/shm_open/36-1: build: PASS + conformance/interfaces/shm_open/36-1: link: PASS + conformance/interfaces/shm_open/37-1: build: PASS + conformance/interfaces/shm_open/37-1: link: PASS + conformance/interfaces/shm_open/38-1: build: PASS + conformance/interfaces/shm_open/38-1: link: PASS + conformance/interfaces/shm_open/39-1: build: PASS + conformance/interfaces/shm_open/39-1: link: PASS + conformance/interfaces/shm_open/39-2: build: PASS + conformance/interfaces/shm_open/39-2: link: PASS + conformance/interfaces/shm_open/41-1: build: PASS + conformance/interfaces/shm_open/41-1: link: PASS + conformance/interfaces/shm_open/42-1: build: PASS + conformance/interfaces/shm_open/42-1: link: PASS + conformance/interfaces/shm_open/5-1: build: PASS + conformance/interfaces/shm_open/5-1: link: PASS + conformance/interfaces/shm_open/6-1: build: PASS + conformance/interfaces/shm_open/6-1: link: PASS + conformance/interfaces/shm_open/7-1: build: PASS + conformance/interfaces/shm_open/7-1: link: PASS + conformance/interfaces/shm_open/8-1: build: PASS + conformance/interfaces/shm_open/8-1: link: PASS + conformance/interfaces/shm_open/9-1: build: PASS + conformance/interfaces/shm_open/9-1: link: PASS + conformance/interfaces/shm_unlink/1-1: build: PASS + conformance/interfaces/shm_unlink/1-1: link: PASS + conformance/interfaces/shm_unlink/10-1: build: PASS + conformance/interfaces/shm_unlink/10-1: link: PASS + conformance/interfaces/shm_unlink/10-2: build: PASS + conformance/interfaces/shm_unlink/10-2: link: PASS + conformance/interfaces/shm_unlink/11-1: build: PASS + conformance/interfaces/shm_unlink/11-1: link: PASS + conformance/interfaces/shm_unlink/2-1: build: PASS + conformance/interfaces/shm_unlink/2-1: link: PASS + conformance/interfaces/shm_unlink/3-1: build: PASS + conformance/interfaces/shm_unlink/3-1: link: PASS + conformance/interfaces/shm_unlink/5-1: build: PASS + conformance/interfaces/shm_unlink/5-1: link: PASS + conformance/interfaces/shm_unlink/6-1: build: PASS + conformance/interfaces/shm_unlink/6-1: link: PASS + conformance/interfaces/shm_unlink/8-1: build: PASS + conformance/interfaces/shm_unlink/8-1: link: PASS + conformance/interfaces/shm_unlink/9-1: build: PASS + conformance/interfaces/shm_unlink/9-1: link: PASS + conformance/interfaces/sigaction/8-16: build: PASS + conformance/interfaces/sigaction/8-16: link: PASS + conformance/interfaces/sigaction/1-1: build: PASS + conformance/interfaces/sigaction/1-1: link: PASS + conformance/interfaces/sigaction/1-10: build: PASS + conformance/interfaces/sigaction/1-10: link: PASS + conformance/interfaces/sigaction/1-11: build: PASS + conformance/interfaces/sigaction/1-11: link: PASS + conformance/interfaces/sigaction/1-12: build: PASS + conformance/interfaces/sigaction/1-12: link: PASS + conformance/interfaces/sigaction/1-13: build: PASS + conformance/interfaces/sigaction/1-13: link: PASS + conformance/interfaces/sigaction/1-14: build: PASS + conformance/interfaces/sigaction/1-14: link: PASS + conformance/interfaces/sigaction/1-15: build: PASS + conformance/interfaces/sigaction/1-15: link: PASS + conformance/interfaces/sigaction/1-16: build: PASS + conformance/interfaces/sigaction/1-16: link: PASS + conformance/interfaces/sigaction/1-17: build: PASS + conformance/interfaces/sigaction/1-17: link: PASS + conformance/interfaces/sigaction/1-18: build: PASS + conformance/interfaces/sigaction/1-18: link: PASS + conformance/interfaces/sigaction/1-19: build: PASS + conformance/interfaces/sigaction/1-19: link: PASS + conformance/interfaces/sigaction/1-2: build: PASS + conformance/interfaces/sigaction/1-2: link: PASS + conformance/interfaces/sigaction/1-20: build: PASS + conformance/interfaces/sigaction/1-20: link: PASS + conformance/interfaces/sigaction/1-21: build: PASS + conformance/interfaces/sigaction/1-21: link: PASS + conformance/interfaces/sigaction/1-22: build: PASS + conformance/interfaces/sigaction/1-22: link: PASS + conformance/interfaces/sigaction/1-23: build: PASS + conformance/interfaces/sigaction/1-23: link: PASS + conformance/interfaces/sigaction/1-24: build: PASS + conformance/interfaces/sigaction/1-24: link: PASS + conformance/interfaces/sigaction/1-25: build: PASS + conformance/interfaces/sigaction/1-25: link: PASS + conformance/interfaces/sigaction/1-26: build: PASS + conformance/interfaces/sigaction/1-26: link: PASS + conformance/interfaces/sigaction/1-3: build: PASS + conformance/interfaces/sigaction/1-3: link: PASS + conformance/interfaces/sigaction/1-4: build: PASS + conformance/interfaces/sigaction/1-4: link: PASS + conformance/interfaces/sigaction/1-5: build: PASS + conformance/interfaces/sigaction/1-5: link: PASS + conformance/interfaces/sigaction/1-6: build: PASS + conformance/interfaces/sigaction/1-6: link: PASS + conformance/interfaces/sigaction/1-7: build: PASS + conformance/interfaces/sigaction/1-7: link: PASS + conformance/interfaces/sigaction/1-8: build: PASS + conformance/interfaces/sigaction/1-8: link: PASS + conformance/interfaces/sigaction/1-9: build: PASS + conformance/interfaces/sigaction/1-9: link: PASS + conformance/interfaces/sigaction/10-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/10-1.c: In function ‘main’: + conformance/interfaces/sigaction/10-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/10-1.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/10-1.c:41: error: for each function it appears in.) + conformance/interfaces/sigaction/11-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/11-1.c: In function ‘main’: + conformance/interfaces/sigaction/11-1.c:50: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/11-1.c:50: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/11-1.c:50: error: for each function it appears in.) + conformance/interfaces/sigaction/12-1: build: PASS + conformance/interfaces/sigaction/12-1: link: PASS + conformance/interfaces/sigaction/12-10: build: PASS + conformance/interfaces/sigaction/12-10: link: PASS + conformance/interfaces/sigaction/12-11: build: PASS + conformance/interfaces/sigaction/12-11: link: PASS + conformance/interfaces/sigaction/12-12: build: PASS + conformance/interfaces/sigaction/12-12: link: PASS + conformance/interfaces/sigaction/12-13: build: PASS + conformance/interfaces/sigaction/12-13: link: PASS + conformance/interfaces/sigaction/12-14: build: PASS + conformance/interfaces/sigaction/12-14: link: PASS + conformance/interfaces/sigaction/12-15: build: PASS + conformance/interfaces/sigaction/12-15: link: PASS + conformance/interfaces/sigaction/12-16: build: PASS + conformance/interfaces/sigaction/12-16: link: PASS + conformance/interfaces/sigaction/12-17: build: PASS + conformance/interfaces/sigaction/12-17: link: PASS + conformance/interfaces/sigaction/12-18: build: PASS + conformance/interfaces/sigaction/12-18: link: PASS + conformance/interfaces/sigaction/12-19: build: PASS + conformance/interfaces/sigaction/12-19: link: PASS + conformance/interfaces/sigaction/12-2: build: PASS + conformance/interfaces/sigaction/12-2: link: PASS + conformance/interfaces/sigaction/12-20: build: PASS + conformance/interfaces/sigaction/12-20: link: PASS + conformance/interfaces/sigaction/12-21: build: PASS + conformance/interfaces/sigaction/12-21: link: PASS + conformance/interfaces/sigaction/12-22: build: PASS + conformance/interfaces/sigaction/12-22: link: PASS + conformance/interfaces/sigaction/12-23: build: PASS + conformance/interfaces/sigaction/12-23: link: PASS + conformance/interfaces/sigaction/12-24: build: PASS + conformance/interfaces/sigaction/12-24: link: PASS + conformance/interfaces/sigaction/12-25: build: PASS + conformance/interfaces/sigaction/12-25: link: PASS + conformance/interfaces/sigaction/12-26: build: PASS + conformance/interfaces/sigaction/12-26: link: PASS + conformance/interfaces/sigaction/12-27: build: PASS + conformance/interfaces/sigaction/12-27: link: PASS + conformance/interfaces/sigaction/12-28: build: PASS + conformance/interfaces/sigaction/12-28: link: PASS + conformance/interfaces/sigaction/12-29: build: PASS + conformance/interfaces/sigaction/12-29: link: PASS + conformance/interfaces/sigaction/12-3: build: PASS + conformance/interfaces/sigaction/12-3: link: PASS + conformance/interfaces/sigaction/12-30: build: PASS + conformance/interfaces/sigaction/12-30: link: PASS + conformance/interfaces/sigaction/12-31: build: PASS + conformance/interfaces/sigaction/12-31: link: PASS + conformance/interfaces/sigaction/12-32: build: PASS + conformance/interfaces/sigaction/12-32: link: PASS + conformance/interfaces/sigaction/12-33: build: PASS + conformance/interfaces/sigaction/12-33: link: PASS + conformance/interfaces/sigaction/12-34: build: PASS + conformance/interfaces/sigaction/12-34: link: PASS + conformance/interfaces/sigaction/12-35: build: PASS + conformance/interfaces/sigaction/12-35: link: PASS + conformance/interfaces/sigaction/12-36: build: PASS + conformance/interfaces/sigaction/12-36: link: PASS + conformance/interfaces/sigaction/12-37: build: PASS + conformance/interfaces/sigaction/12-37: link: PASS + conformance/interfaces/sigaction/12-38: build: PASS + conformance/interfaces/sigaction/12-38: link: PASS + conformance/interfaces/sigaction/12-39: build: PASS + conformance/interfaces/sigaction/12-39: link: PASS + conformance/interfaces/sigaction/12-4: build: PASS + conformance/interfaces/sigaction/12-4: link: PASS + conformance/interfaces/sigaction/12-40: build: PASS + conformance/interfaces/sigaction/12-40: link: PASS + conformance/interfaces/sigaction/12-41: build: PASS + conformance/interfaces/sigaction/12-41: link: PASS + conformance/interfaces/sigaction/12-42: build: PASS + conformance/interfaces/sigaction/12-42: link: PASS + conformance/interfaces/sigaction/12-43: build: PASS + conformance/interfaces/sigaction/12-43: link: PASS + conformance/interfaces/sigaction/12-44: build: PASS + conformance/interfaces/sigaction/12-44: link: PASS + conformance/interfaces/sigaction/12-45: build: PASS + conformance/interfaces/sigaction/12-45: link: PASS + conformance/interfaces/sigaction/12-46: build: PASS + conformance/interfaces/sigaction/12-46: link: PASS + conformance/interfaces/sigaction/12-47: build: PASS + conformance/interfaces/sigaction/12-47: link: PASS + conformance/interfaces/sigaction/12-48: build: PASS + conformance/interfaces/sigaction/12-48: link: PASS + conformance/interfaces/sigaction/12-49: build: PASS + conformance/interfaces/sigaction/12-49: link: PASS + conformance/interfaces/sigaction/12-5: build: PASS + conformance/interfaces/sigaction/12-5: link: PASS + conformance/interfaces/sigaction/12-50: build: PASS + conformance/interfaces/sigaction/12-50: link: PASS + conformance/interfaces/sigaction/12-51: build: PASS + conformance/interfaces/sigaction/12-51: link: PASS + conformance/interfaces/sigaction/12-52: build: PASS + conformance/interfaces/sigaction/12-52: link: PASS + conformance/interfaces/sigaction/12-6: build: PASS + conformance/interfaces/sigaction/12-6: link: PASS + conformance/interfaces/sigaction/12-7: build: PASS + conformance/interfaces/sigaction/12-7: link: PASS + conformance/interfaces/sigaction/12-8: build: PASS + conformance/interfaces/sigaction/12-8: link: PASS + conformance/interfaces/sigaction/12-9: build: PASS + conformance/interfaces/sigaction/12-9: link: PASS + conformance/interfaces/sigaction/13-1: build: PASS + conformance/interfaces/sigaction/13-1: link: PASS + conformance/interfaces/sigaction/13-10: build: PASS + conformance/interfaces/sigaction/13-10: link: PASS + conformance/interfaces/sigaction/13-11: build: PASS + conformance/interfaces/sigaction/13-11: link: PASS + conformance/interfaces/sigaction/13-12: build: PASS + conformance/interfaces/sigaction/13-12: link: PASS + conformance/interfaces/sigaction/13-13: build: PASS + conformance/interfaces/sigaction/13-13: link: PASS + conformance/interfaces/sigaction/13-14: build: PASS + conformance/interfaces/sigaction/13-14: link: PASS + conformance/interfaces/sigaction/13-15: build: PASS + conformance/interfaces/sigaction/13-15: link: PASS + conformance/interfaces/sigaction/13-16: build: PASS + conformance/interfaces/sigaction/13-16: link: PASS + conformance/interfaces/sigaction/13-17: build: PASS + conformance/interfaces/sigaction/13-17: link: PASS + conformance/interfaces/sigaction/13-18: build: PASS + conformance/interfaces/sigaction/13-18: link: PASS + conformance/interfaces/sigaction/13-19: build: PASS + conformance/interfaces/sigaction/13-19: link: PASS + conformance/interfaces/sigaction/13-2: build: PASS + conformance/interfaces/sigaction/13-2: link: PASS + conformance/interfaces/sigaction/13-20: build: PASS + conformance/interfaces/sigaction/13-20: link: PASS + conformance/interfaces/sigaction/13-21: build: PASS + conformance/interfaces/sigaction/13-21: link: PASS + conformance/interfaces/sigaction/13-22: build: PASS + conformance/interfaces/sigaction/13-22: link: PASS + conformance/interfaces/sigaction/13-23: build: PASS + conformance/interfaces/sigaction/13-23: link: PASS + conformance/interfaces/sigaction/13-24: build: PASS + conformance/interfaces/sigaction/13-24: link: PASS + conformance/interfaces/sigaction/13-25: build: PASS + conformance/interfaces/sigaction/13-25: link: PASS + conformance/interfaces/sigaction/13-26: build: PASS + conformance/interfaces/sigaction/13-26: link: PASS + conformance/interfaces/sigaction/13-3: build: PASS + conformance/interfaces/sigaction/13-3: link: PASS + conformance/interfaces/sigaction/13-4: build: PASS + conformance/interfaces/sigaction/13-4: link: PASS + conformance/interfaces/sigaction/13-5: build: PASS + conformance/interfaces/sigaction/13-5: link: PASS + conformance/interfaces/sigaction/13-6: build: PASS + conformance/interfaces/sigaction/13-6: link: PASS + conformance/interfaces/sigaction/13-7: build: PASS + conformance/interfaces/sigaction/13-7: link: PASS + conformance/interfaces/sigaction/13-8: build: PASS + conformance/interfaces/sigaction/13-8: link: PASS + conformance/interfaces/sigaction/13-9: build: PASS + conformance/interfaces/sigaction/13-9: link: PASS + conformance/interfaces/sigaction/16-1: build: PASS + conformance/interfaces/sigaction/16-1: link: PASS + conformance/interfaces/sigaction/16-10: build: PASS + conformance/interfaces/sigaction/16-10: link: PASS + conformance/interfaces/sigaction/16-11: build: PASS + conformance/interfaces/sigaction/16-11: link: PASS + conformance/interfaces/sigaction/16-12: build: PASS + conformance/interfaces/sigaction/16-12: link: PASS + conformance/interfaces/sigaction/16-13: build: PASS + conformance/interfaces/sigaction/16-13: link: PASS + conformance/interfaces/sigaction/16-14: build: PASS + conformance/interfaces/sigaction/16-14: link: PASS + conformance/interfaces/sigaction/16-15: build: PASS + conformance/interfaces/sigaction/16-15: link: PASS + conformance/interfaces/sigaction/16-16: build: PASS + conformance/interfaces/sigaction/16-16: link: PASS + conformance/interfaces/sigaction/16-17: build: PASS + conformance/interfaces/sigaction/16-17: link: PASS + conformance/interfaces/sigaction/16-18: build: PASS + conformance/interfaces/sigaction/16-18: link: PASS + conformance/interfaces/sigaction/16-19: build: PASS + conformance/interfaces/sigaction/16-19: link: PASS + conformance/interfaces/sigaction/16-2: build: PASS + conformance/interfaces/sigaction/16-2: link: PASS + conformance/interfaces/sigaction/16-20: build: PASS + conformance/interfaces/sigaction/16-20: link: PASS + conformance/interfaces/sigaction/16-21: build: PASS + conformance/interfaces/sigaction/16-21: link: PASS + conformance/interfaces/sigaction/16-22: build: PASS + conformance/interfaces/sigaction/16-22: link: PASS + conformance/interfaces/sigaction/16-23: build: PASS + conformance/interfaces/sigaction/16-23: link: PASS + conformance/interfaces/sigaction/16-24: build: PASS + conformance/interfaces/sigaction/16-24: link: PASS + conformance/interfaces/sigaction/16-25: build: PASS + conformance/interfaces/sigaction/16-25: link: PASS + conformance/interfaces/sigaction/16-26: build: PASS + conformance/interfaces/sigaction/16-26: link: PASS + conformance/interfaces/sigaction/16-3: build: PASS + conformance/interfaces/sigaction/16-3: link: PASS + conformance/interfaces/sigaction/16-4: build: PASS + conformance/interfaces/sigaction/16-4: link: PASS + conformance/interfaces/sigaction/16-5: build: PASS + conformance/interfaces/sigaction/16-5: link: PASS + conformance/interfaces/sigaction/16-6: build: PASS + conformance/interfaces/sigaction/16-6: link: PASS + conformance/interfaces/sigaction/16-7: build: PASS + conformance/interfaces/sigaction/16-7: link: PASS + conformance/interfaces/sigaction/16-8: build: PASS + conformance/interfaces/sigaction/16-8: link: PASS + conformance/interfaces/sigaction/16-9: build: PASS + conformance/interfaces/sigaction/16-9: link: PASS + conformance/interfaces/sigaction/17-1: build: PASS + conformance/interfaces/sigaction/17-1: link: PASS + conformance/interfaces/sigaction/17-10: build: PASS + conformance/interfaces/sigaction/17-10: link: PASS + conformance/interfaces/sigaction/17-11: build: PASS + conformance/interfaces/sigaction/17-11: link: PASS + conformance/interfaces/sigaction/17-12: build: PASS + conformance/interfaces/sigaction/17-12: link: PASS + conformance/interfaces/sigaction/17-13: build: PASS + conformance/interfaces/sigaction/17-13: link: PASS + conformance/interfaces/sigaction/17-14: build: PASS + conformance/interfaces/sigaction/17-14: link: PASS + conformance/interfaces/sigaction/17-15: build: PASS + conformance/interfaces/sigaction/17-15: link: PASS + conformance/interfaces/sigaction/17-16: build: PASS + conformance/interfaces/sigaction/17-16: link: PASS + conformance/interfaces/sigaction/17-17: build: PASS + conformance/interfaces/sigaction/17-17: link: PASS + conformance/interfaces/sigaction/17-18: build: PASS + conformance/interfaces/sigaction/17-18: link: PASS + conformance/interfaces/sigaction/17-19: build: PASS + conformance/interfaces/sigaction/17-19: link: PASS + conformance/interfaces/sigaction/17-2: build: PASS + conformance/interfaces/sigaction/17-2: link: PASS + conformance/interfaces/sigaction/17-20: build: PASS + conformance/interfaces/sigaction/17-20: link: PASS + conformance/interfaces/sigaction/17-21: build: PASS + conformance/interfaces/sigaction/17-21: link: PASS + conformance/interfaces/sigaction/17-22: build: PASS + conformance/interfaces/sigaction/17-22: link: PASS + conformance/interfaces/sigaction/17-23: build: PASS + conformance/interfaces/sigaction/17-23: link: PASS + conformance/interfaces/sigaction/17-24: build: PASS + conformance/interfaces/sigaction/17-24: link: PASS + conformance/interfaces/sigaction/17-25: build: PASS + conformance/interfaces/sigaction/17-25: link: PASS + conformance/interfaces/sigaction/17-26: build: PASS + conformance/interfaces/sigaction/17-26: link: PASS + conformance/interfaces/sigaction/17-3: build: PASS + conformance/interfaces/sigaction/17-3: link: PASS + conformance/interfaces/sigaction/17-4: build: PASS + conformance/interfaces/sigaction/17-4: link: PASS + conformance/interfaces/sigaction/17-5: build: PASS + conformance/interfaces/sigaction/17-5: link: PASS + conformance/interfaces/sigaction/17-6: build: PASS + conformance/interfaces/sigaction/17-6: link: PASS + conformance/interfaces/sigaction/17-7: build: PASS + conformance/interfaces/sigaction/17-7: link: PASS + conformance/interfaces/sigaction/17-8: build: PASS + conformance/interfaces/sigaction/17-8: link: PASS + conformance/interfaces/sigaction/17-9: build: PASS + conformance/interfaces/sigaction/17-9: link: PASS + conformance/interfaces/sigaction/18-1: build: PASS + conformance/interfaces/sigaction/18-1: link: PASS + conformance/interfaces/sigaction/18-10: build: PASS + conformance/interfaces/sigaction/18-10: link: PASS + conformance/interfaces/sigaction/18-11: build: PASS + conformance/interfaces/sigaction/18-11: link: PASS + conformance/interfaces/sigaction/18-12: build: PASS + conformance/interfaces/sigaction/18-12: link: PASS + conformance/interfaces/sigaction/18-13: build: PASS + conformance/interfaces/sigaction/18-13: link: PASS + conformance/interfaces/sigaction/18-14: build: PASS + conformance/interfaces/sigaction/18-14: link: PASS + conformance/interfaces/sigaction/18-15: build: PASS + conformance/interfaces/sigaction/18-15: link: PASS + conformance/interfaces/sigaction/18-16: build: PASS + conformance/interfaces/sigaction/18-16: link: PASS + conformance/interfaces/sigaction/18-17: build: PASS + conformance/interfaces/sigaction/18-17: link: PASS + conformance/interfaces/sigaction/18-18: build: PASS + conformance/interfaces/sigaction/18-18: link: PASS + conformance/interfaces/sigaction/18-19: build: PASS + conformance/interfaces/sigaction/18-19: link: PASS + conformance/interfaces/sigaction/18-2: build: PASS + conformance/interfaces/sigaction/18-2: link: PASS + conformance/interfaces/sigaction/18-20: build: PASS + conformance/interfaces/sigaction/18-20: link: PASS + conformance/interfaces/sigaction/18-21: build: PASS + conformance/interfaces/sigaction/18-21: link: PASS + conformance/interfaces/sigaction/18-22: build: PASS + conformance/interfaces/sigaction/18-22: link: PASS + conformance/interfaces/sigaction/18-23: build: PASS + conformance/interfaces/sigaction/18-23: link: PASS + conformance/interfaces/sigaction/18-24: build: PASS + conformance/interfaces/sigaction/18-24: link: PASS + conformance/interfaces/sigaction/18-25: build: PASS + conformance/interfaces/sigaction/18-25: link: PASS + conformance/interfaces/sigaction/18-26: build: PASS + conformance/interfaces/sigaction/18-26: link: PASS + conformance/interfaces/sigaction/18-3: build: PASS + conformance/interfaces/sigaction/18-3: link: PASS + conformance/interfaces/sigaction/18-4: build: PASS + conformance/interfaces/sigaction/18-4: link: PASS + conformance/interfaces/sigaction/18-5: build: PASS + conformance/interfaces/sigaction/18-5: link: PASS + conformance/interfaces/sigaction/18-6: build: PASS + conformance/interfaces/sigaction/18-6: link: PASS + conformance/interfaces/sigaction/18-7: build: PASS + conformance/interfaces/sigaction/18-7: link: PASS + conformance/interfaces/sigaction/18-8: build: PASS + conformance/interfaces/sigaction/18-8: link: PASS + conformance/interfaces/sigaction/18-9: build: PASS + conformance/interfaces/sigaction/18-9: link: PASS + conformance/interfaces/sigaction/19-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-1.c: In function ‘main’: + conformance/interfaces/sigaction/19-1.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-1.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-1.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-10: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-10.c: In function ‘main’: + conformance/interfaces/sigaction/19-10.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-10.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-10.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-11: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-11.c: In function ‘main’: + conformance/interfaces/sigaction/19-11.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-11.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-11.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-12: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-12.c: In function ‘main’: + conformance/interfaces/sigaction/19-12.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-12.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-12.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-13: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-13.c: In function ‘main’: + conformance/interfaces/sigaction/19-13.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-13.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-13.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-14: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-14.c: In function ‘main’: + conformance/interfaces/sigaction/19-14.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-14.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-14.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-15: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-15.c: In function ‘main’: + conformance/interfaces/sigaction/19-15.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-15.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-15.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-16: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-16.c: In function ‘main’: + conformance/interfaces/sigaction/19-16.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-16.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-16.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-17: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-17.c: In function ‘main’: + conformance/interfaces/sigaction/19-17.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-17.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-17.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-18: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-18.c: In function ‘main’: + conformance/interfaces/sigaction/19-18.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-18.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-18.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-19: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-19.c: In function ‘main’: + conformance/interfaces/sigaction/19-19.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-19.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-19.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-2: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-2.c: In function ‘main’: + conformance/interfaces/sigaction/19-2.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-2.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-2.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-20: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-20.c: In function ‘main’: + conformance/interfaces/sigaction/19-20.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-20.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-20.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-21: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-21.c: In function ‘main’: + conformance/interfaces/sigaction/19-21.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-21.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-21.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-22: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-22.c: In function ‘main’: + conformance/interfaces/sigaction/19-22.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-22.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-22.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-23: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-23.c: In function ‘main’: + conformance/interfaces/sigaction/19-23.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-23.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-23.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-24: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-24.c: In function ‘main’: + conformance/interfaces/sigaction/19-24.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-24.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-24.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-25: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-25.c: In function ‘main’: + conformance/interfaces/sigaction/19-25.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-25.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-25.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-26: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-26.c: In function ‘main’: + conformance/interfaces/sigaction/19-26.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-26.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-26.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-3: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-3.c: In function ‘main’: + conformance/interfaces/sigaction/19-3.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-3.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-3.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-4: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-4.c: In function ‘main’: + conformance/interfaces/sigaction/19-4.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-4.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-4.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-5: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-5.c: In function ‘main’: + conformance/interfaces/sigaction/19-5.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-5.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-5.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-6: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-6.c: In function ‘main’: + conformance/interfaces/sigaction/19-6.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-6.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-6.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-7: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-7.c: In function ‘main’: + conformance/interfaces/sigaction/19-7.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-7.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-7.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-8: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-8.c: In function ‘main’: + conformance/interfaces/sigaction/19-8.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-8.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-8.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/19-9: build: FAILED: Compiler output: + conformance/interfaces/sigaction/19-9.c: In function ‘main’: + conformance/interfaces/sigaction/19-9.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/19-9.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/19-9.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/2-1: build: PASS + conformance/interfaces/sigaction/2-1: link: PASS + conformance/interfaces/sigaction/2-10: build: PASS + conformance/interfaces/sigaction/2-10: link: PASS + conformance/interfaces/sigaction/2-11: build: PASS + conformance/interfaces/sigaction/2-11: link: PASS + conformance/interfaces/sigaction/2-12: build: PASS + conformance/interfaces/sigaction/2-12: link: PASS + conformance/interfaces/sigaction/2-13: build: PASS + conformance/interfaces/sigaction/2-13: link: PASS + conformance/interfaces/sigaction/2-14: build: PASS + conformance/interfaces/sigaction/2-14: link: PASS + conformance/interfaces/sigaction/2-15: build: PASS + conformance/interfaces/sigaction/2-15: link: PASS + conformance/interfaces/sigaction/2-16: build: PASS + conformance/interfaces/sigaction/2-16: link: PASS + conformance/interfaces/sigaction/2-17: build: PASS + conformance/interfaces/sigaction/2-17: link: PASS + conformance/interfaces/sigaction/2-18: build: PASS + conformance/interfaces/sigaction/2-18: link: PASS + conformance/interfaces/sigaction/2-19: build: PASS + conformance/interfaces/sigaction/2-19: link: PASS + conformance/interfaces/sigaction/2-2: build: PASS + conformance/interfaces/sigaction/2-2: link: PASS + conformance/interfaces/sigaction/2-20: build: PASS + conformance/interfaces/sigaction/2-20: link: PASS + conformance/interfaces/sigaction/2-21: build: PASS + conformance/interfaces/sigaction/2-21: link: PASS + conformance/interfaces/sigaction/2-22: build: PASS + conformance/interfaces/sigaction/2-22: link: PASS + conformance/interfaces/sigaction/2-23: build: PASS + conformance/interfaces/sigaction/2-23: link: PASS + conformance/interfaces/sigaction/2-24: build: PASS + conformance/interfaces/sigaction/2-24: link: PASS + conformance/interfaces/sigaction/2-25: build: PASS + conformance/interfaces/sigaction/2-25: link: PASS + conformance/interfaces/sigaction/2-26: build: PASS + conformance/interfaces/sigaction/2-26: link: PASS + conformance/interfaces/sigaction/2-3: build: PASS + conformance/interfaces/sigaction/2-3: link: PASS + conformance/interfaces/sigaction/2-4: build: PASS + conformance/interfaces/sigaction/2-4: link: PASS + conformance/interfaces/sigaction/2-5: build: PASS + conformance/interfaces/sigaction/2-5: link: PASS + conformance/interfaces/sigaction/2-6: build: PASS + conformance/interfaces/sigaction/2-6: link: PASS + conformance/interfaces/sigaction/2-7: build: PASS + conformance/interfaces/sigaction/2-7: link: PASS + conformance/interfaces/sigaction/2-8: build: PASS + conformance/interfaces/sigaction/2-8: link: PASS + conformance/interfaces/sigaction/2-9: build: PASS + conformance/interfaces/sigaction/2-9: link: PASS + conformance/interfaces/sigaction/21-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/21-1.c: In function ‘main’: + conformance/interfaces/sigaction/21-1.c:36: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function) + conformance/interfaces/sigaction/21-1.c:36: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/21-1.c:36: error: for each function it appears in.) + conformance/interfaces/sigaction/22-1: build: PASS + conformance/interfaces/sigaction/22-1: link: PASS + conformance/interfaces/sigaction/22-10: build: PASS + conformance/interfaces/sigaction/22-10: link: PASS + conformance/interfaces/sigaction/22-11: build: PASS + conformance/interfaces/sigaction/22-11: link: PASS + conformance/interfaces/sigaction/22-12: build: PASS + conformance/interfaces/sigaction/22-12: link: PASS + conformance/interfaces/sigaction/22-13: build: PASS + conformance/interfaces/sigaction/22-13: link: PASS + conformance/interfaces/sigaction/22-14: build: PASS + conformance/interfaces/sigaction/22-14: link: PASS + conformance/interfaces/sigaction/22-15: build: PASS + conformance/interfaces/sigaction/22-15: link: PASS + conformance/interfaces/sigaction/22-16: build: PASS + conformance/interfaces/sigaction/22-16: link: PASS + conformance/interfaces/sigaction/22-17: build: PASS + conformance/interfaces/sigaction/22-17: link: PASS + conformance/interfaces/sigaction/22-18: build: PASS + conformance/interfaces/sigaction/22-18: link: PASS + conformance/interfaces/sigaction/22-19: build: PASS + conformance/interfaces/sigaction/22-19: link: PASS + conformance/interfaces/sigaction/22-2: build: PASS + conformance/interfaces/sigaction/22-2: link: PASS + conformance/interfaces/sigaction/22-20: build: PASS + conformance/interfaces/sigaction/22-20: link: PASS + conformance/interfaces/sigaction/22-21: build: PASS + conformance/interfaces/sigaction/22-21: link: PASS + conformance/interfaces/sigaction/22-22: build: PASS + conformance/interfaces/sigaction/22-22: link: PASS + conformance/interfaces/sigaction/22-23: build: PASS + conformance/interfaces/sigaction/22-23: link: PASS + conformance/interfaces/sigaction/22-24: build: PASS + conformance/interfaces/sigaction/22-24: link: PASS + conformance/interfaces/sigaction/22-25: build: PASS + conformance/interfaces/sigaction/22-25: link: PASS + conformance/interfaces/sigaction/22-26: build: PASS + conformance/interfaces/sigaction/22-26: link: PASS + conformance/interfaces/sigaction/22-3: build: PASS + conformance/interfaces/sigaction/22-3: link: PASS + conformance/interfaces/sigaction/22-4: build: PASS + conformance/interfaces/sigaction/22-4: link: PASS + conformance/interfaces/sigaction/22-5: build: PASS + conformance/interfaces/sigaction/22-5: link: PASS + conformance/interfaces/sigaction/22-6: build: PASS + conformance/interfaces/sigaction/22-6: link: PASS + conformance/interfaces/sigaction/22-7: build: PASS + conformance/interfaces/sigaction/22-7: link: PASS + conformance/interfaces/sigaction/22-8: build: PASS + conformance/interfaces/sigaction/22-8: link: PASS + conformance/interfaces/sigaction/22-9: build: PASS + conformance/interfaces/sigaction/22-9: link: PASS + conformance/interfaces/sigaction/23-1: build: PASS + conformance/interfaces/sigaction/23-1: link: PASS + conformance/interfaces/sigaction/23-10: build: PASS + conformance/interfaces/sigaction/23-10: link: PASS + conformance/interfaces/sigaction/23-11: build: PASS + conformance/interfaces/sigaction/23-11: link: PASS + conformance/interfaces/sigaction/23-12: build: PASS + conformance/interfaces/sigaction/23-12: link: PASS + conformance/interfaces/sigaction/23-13: build: PASS + conformance/interfaces/sigaction/23-13: link: PASS + conformance/interfaces/sigaction/23-14: build: PASS + conformance/interfaces/sigaction/23-14: link: PASS + conformance/interfaces/sigaction/23-15: build: PASS + conformance/interfaces/sigaction/23-15: link: PASS + conformance/interfaces/sigaction/23-16: build: PASS + conformance/interfaces/sigaction/23-16: link: PASS + conformance/interfaces/sigaction/23-17: build: PASS + conformance/interfaces/sigaction/23-17: link: PASS + conformance/interfaces/sigaction/23-18: build: PASS + conformance/interfaces/sigaction/23-18: link: PASS + conformance/interfaces/sigaction/23-19: build: PASS + conformance/interfaces/sigaction/23-19: link: PASS + conformance/interfaces/sigaction/23-2: build: PASS + conformance/interfaces/sigaction/23-2: link: PASS + conformance/interfaces/sigaction/23-20: build: PASS + conformance/interfaces/sigaction/23-20: link: PASS + conformance/interfaces/sigaction/23-21: build: PASS + conformance/interfaces/sigaction/23-21: link: PASS + conformance/interfaces/sigaction/23-22: build: PASS + conformance/interfaces/sigaction/23-22: link: PASS + conformance/interfaces/sigaction/23-23: build: PASS + conformance/interfaces/sigaction/23-23: link: PASS + conformance/interfaces/sigaction/23-24: build: PASS + conformance/interfaces/sigaction/23-24: link: PASS + conformance/interfaces/sigaction/23-25: build: PASS + conformance/interfaces/sigaction/23-25: link: PASS + conformance/interfaces/sigaction/23-26: build: PASS + conformance/interfaces/sigaction/23-26: link: PASS + conformance/interfaces/sigaction/23-3: build: PASS + conformance/interfaces/sigaction/23-3: link: PASS + conformance/interfaces/sigaction/23-4: build: PASS + conformance/interfaces/sigaction/23-4: link: PASS + conformance/interfaces/sigaction/23-5: build: PASS + conformance/interfaces/sigaction/23-5: link: PASS + conformance/interfaces/sigaction/23-6: build: PASS + conformance/interfaces/sigaction/23-6: link: PASS + conformance/interfaces/sigaction/23-7: build: PASS + conformance/interfaces/sigaction/23-7: link: PASS + conformance/interfaces/sigaction/23-8: build: PASS + conformance/interfaces/sigaction/23-8: link: PASS + conformance/interfaces/sigaction/23-9: build: PASS + conformance/interfaces/sigaction/23-9: link: PASS + conformance/interfaces/sigaction/25-1: build: PASS + conformance/interfaces/sigaction/25-1: link: PASS + conformance/interfaces/sigaction/25-10: build: PASS + conformance/interfaces/sigaction/25-10: link: PASS + conformance/interfaces/sigaction/25-11: build: PASS + conformance/interfaces/sigaction/25-11: link: PASS + conformance/interfaces/sigaction/25-12: build: PASS + conformance/interfaces/sigaction/25-12: link: PASS + conformance/interfaces/sigaction/25-13: build: PASS + conformance/interfaces/sigaction/25-13: link: PASS + conformance/interfaces/sigaction/25-14: build: PASS + conformance/interfaces/sigaction/25-14: link: PASS + conformance/interfaces/sigaction/25-15: build: PASS + conformance/interfaces/sigaction/25-15: link: PASS + conformance/interfaces/sigaction/25-16: build: PASS + conformance/interfaces/sigaction/25-16: link: PASS + conformance/interfaces/sigaction/25-17: build: PASS + conformance/interfaces/sigaction/25-17: link: PASS + conformance/interfaces/sigaction/25-18: build: PASS + conformance/interfaces/sigaction/25-18: link: PASS + conformance/interfaces/sigaction/25-19: build: PASS + conformance/interfaces/sigaction/25-19: link: PASS + conformance/interfaces/sigaction/25-2: build: PASS + conformance/interfaces/sigaction/25-2: link: PASS + conformance/interfaces/sigaction/25-20: build: PASS + conformance/interfaces/sigaction/25-20: link: PASS + conformance/interfaces/sigaction/25-21: build: PASS + conformance/interfaces/sigaction/25-21: link: PASS + conformance/interfaces/sigaction/25-22: build: PASS + conformance/interfaces/sigaction/25-22: link: PASS + conformance/interfaces/sigaction/25-23: build: PASS + conformance/interfaces/sigaction/25-23: link: PASS + conformance/interfaces/sigaction/25-24: build: PASS + conformance/interfaces/sigaction/25-24: link: PASS + conformance/interfaces/sigaction/25-25: build: PASS + conformance/interfaces/sigaction/25-25: link: PASS + conformance/interfaces/sigaction/25-26: build: PASS + conformance/interfaces/sigaction/25-26: link: PASS + conformance/interfaces/sigaction/25-3: build: PASS + conformance/interfaces/sigaction/25-3: link: PASS + conformance/interfaces/sigaction/25-4: build: PASS + conformance/interfaces/sigaction/25-4: link: PASS + conformance/interfaces/sigaction/25-5: build: PASS + conformance/interfaces/sigaction/25-5: link: PASS + conformance/interfaces/sigaction/25-6: build: PASS + conformance/interfaces/sigaction/25-6: link: PASS + conformance/interfaces/sigaction/25-7: build: PASS + conformance/interfaces/sigaction/25-7: link: PASS + conformance/interfaces/sigaction/25-8: build: PASS + conformance/interfaces/sigaction/25-8: link: PASS + conformance/interfaces/sigaction/25-9: build: PASS + conformance/interfaces/sigaction/25-9: link: PASS + conformance/interfaces/sigaction/28-1: build: PASS + conformance/interfaces/sigaction/28-1: link: PASS + conformance/interfaces/sigaction/28-10: build: PASS + conformance/interfaces/sigaction/28-10: link: PASS + conformance/interfaces/sigaction/28-11: build: PASS + conformance/interfaces/sigaction/28-11: link: PASS + conformance/interfaces/sigaction/28-12: build: PASS + conformance/interfaces/sigaction/28-12: link: PASS + conformance/interfaces/sigaction/28-13: build: PASS + conformance/interfaces/sigaction/28-13: link: PASS + conformance/interfaces/sigaction/28-14: build: PASS + conformance/interfaces/sigaction/28-14: link: PASS + conformance/interfaces/sigaction/28-15: build: PASS + conformance/interfaces/sigaction/28-15: link: PASS + conformance/interfaces/sigaction/28-16: build: PASS + conformance/interfaces/sigaction/28-16: link: PASS + conformance/interfaces/sigaction/28-17: build: PASS + conformance/interfaces/sigaction/28-17: link: PASS + conformance/interfaces/sigaction/28-18: build: PASS + conformance/interfaces/sigaction/28-18: link: PASS + conformance/interfaces/sigaction/28-19: build: PASS + conformance/interfaces/sigaction/28-19: link: PASS + conformance/interfaces/sigaction/28-2: build: PASS + conformance/interfaces/sigaction/28-2: link: PASS + conformance/interfaces/sigaction/28-20: build: PASS + conformance/interfaces/sigaction/28-20: link: PASS + conformance/interfaces/sigaction/28-21: build: PASS + conformance/interfaces/sigaction/28-21: link: PASS + conformance/interfaces/sigaction/28-22: build: PASS + conformance/interfaces/sigaction/28-22: link: PASS + conformance/interfaces/sigaction/28-23: build: PASS + conformance/interfaces/sigaction/28-23: link: PASS + conformance/interfaces/sigaction/28-24: build: PASS + conformance/interfaces/sigaction/28-24: link: PASS + conformance/interfaces/sigaction/28-25: build: PASS + conformance/interfaces/sigaction/28-25: link: PASS + conformance/interfaces/sigaction/28-26: build: PASS + conformance/interfaces/sigaction/28-26: link: PASS + conformance/interfaces/sigaction/28-3: build: PASS + conformance/interfaces/sigaction/28-3: link: PASS + conformance/interfaces/sigaction/28-4: build: PASS + conformance/interfaces/sigaction/28-4: link: PASS + conformance/interfaces/sigaction/28-5: build: PASS + conformance/interfaces/sigaction/28-5: link: PASS + conformance/interfaces/sigaction/28-6: build: PASS + conformance/interfaces/sigaction/28-6: link: PASS + conformance/interfaces/sigaction/28-7: build: PASS + conformance/interfaces/sigaction/28-7: link: PASS + conformance/interfaces/sigaction/28-8: build: PASS + conformance/interfaces/sigaction/28-8: link: PASS + conformance/interfaces/sigaction/28-9: build: PASS + conformance/interfaces/sigaction/28-9: link: PASS + conformance/interfaces/sigaction/29-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/29-1.c: In function ‘handler’: + conformance/interfaces/sigaction/29-1.c:95: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigaction/29-1.c:95: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/29-1.c:95: error: for each function it appears in.) + conformance/interfaces/sigaction/29-1.c: In function ‘main’: + conformance/interfaces/sigaction/29-1.c:133: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/29-1.c:145: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigaction/3-1: build: PASS + conformance/interfaces/sigaction/3-1: link: PASS + conformance/interfaces/sigaction/3-10: build: PASS + conformance/interfaces/sigaction/3-10: link: PASS + conformance/interfaces/sigaction/3-11: build: PASS + conformance/interfaces/sigaction/3-11: link: PASS + conformance/interfaces/sigaction/3-12: build: PASS + conformance/interfaces/sigaction/3-12: link: PASS + conformance/interfaces/sigaction/3-13: build: PASS + conformance/interfaces/sigaction/3-13: link: PASS + conformance/interfaces/sigaction/3-14: build: PASS + conformance/interfaces/sigaction/3-14: link: PASS + conformance/interfaces/sigaction/3-15: build: PASS + conformance/interfaces/sigaction/3-15: link: PASS + conformance/interfaces/sigaction/3-16: build: PASS + conformance/interfaces/sigaction/3-16: link: PASS + conformance/interfaces/sigaction/3-17: build: PASS + conformance/interfaces/sigaction/3-17: link: PASS + conformance/interfaces/sigaction/3-18: build: PASS + conformance/interfaces/sigaction/3-18: link: PASS + conformance/interfaces/sigaction/3-19: build: PASS + conformance/interfaces/sigaction/3-19: link: PASS + conformance/interfaces/sigaction/3-2: build: PASS + conformance/interfaces/sigaction/3-2: link: PASS + conformance/interfaces/sigaction/3-20: build: PASS + conformance/interfaces/sigaction/3-20: link: PASS + conformance/interfaces/sigaction/3-21: build: PASS + conformance/interfaces/sigaction/3-21: link: PASS + conformance/interfaces/sigaction/3-22: build: PASS + conformance/interfaces/sigaction/3-22: link: PASS + conformance/interfaces/sigaction/3-23: build: PASS + conformance/interfaces/sigaction/3-23: link: PASS + conformance/interfaces/sigaction/3-24: build: PASS + conformance/interfaces/sigaction/3-24: link: PASS + conformance/interfaces/sigaction/3-25: build: PASS + conformance/interfaces/sigaction/3-25: link: PASS + conformance/interfaces/sigaction/3-26: build: PASS + conformance/interfaces/sigaction/3-26: link: PASS + conformance/interfaces/sigaction/3-3: build: PASS + conformance/interfaces/sigaction/3-3: link: PASS + conformance/interfaces/sigaction/3-4: build: PASS + conformance/interfaces/sigaction/3-4: link: PASS + conformance/interfaces/sigaction/3-5: build: PASS + conformance/interfaces/sigaction/3-5: link: PASS + conformance/interfaces/sigaction/3-6: build: PASS + conformance/interfaces/sigaction/3-6: link: PASS + conformance/interfaces/sigaction/3-7: build: PASS + conformance/interfaces/sigaction/3-7: link: PASS + conformance/interfaces/sigaction/3-8: build: PASS + conformance/interfaces/sigaction/3-8: link: PASS + conformance/interfaces/sigaction/3-9: build: PASS + conformance/interfaces/sigaction/3-9: link: PASS + conformance/interfaces/sigaction/30-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/30-1.c: In function ‘main’: + conformance/interfaces/sigaction/30-1.c:117: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigaction/30-1.c:117: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/30-1.c:117: error: for each function it appears in.) + conformance/interfaces/sigaction/4-1: build: PASS + conformance/interfaces/sigaction/4-1: link: PASS + conformance/interfaces/sigaction/4-10: build: PASS + conformance/interfaces/sigaction/4-10: link: PASS + conformance/interfaces/sigaction/4-100: build: PASS + conformance/interfaces/sigaction/4-100: link: PASS + conformance/interfaces/sigaction/4-101: build: PASS + conformance/interfaces/sigaction/4-101: link: PASS + conformance/interfaces/sigaction/4-102: build: PASS + conformance/interfaces/sigaction/4-102: link: PASS + conformance/interfaces/sigaction/4-103: build: PASS + conformance/interfaces/sigaction/4-103: link: PASS + conformance/interfaces/sigaction/4-104: build: PASS + conformance/interfaces/sigaction/4-104: link: PASS + conformance/interfaces/sigaction/4-11: build: PASS + conformance/interfaces/sigaction/4-11: link: PASS + conformance/interfaces/sigaction/4-12: build: PASS + conformance/interfaces/sigaction/4-12: link: PASS + conformance/interfaces/sigaction/4-13: build: PASS + conformance/interfaces/sigaction/4-13: link: PASS + conformance/interfaces/sigaction/4-14: build: PASS + conformance/interfaces/sigaction/4-14: link: PASS + conformance/interfaces/sigaction/4-15: build: PASS + conformance/interfaces/sigaction/4-15: link: PASS + conformance/interfaces/sigaction/4-16: build: PASS + conformance/interfaces/sigaction/4-16: link: PASS + conformance/interfaces/sigaction/4-17: build: PASS + conformance/interfaces/sigaction/4-17: link: PASS + conformance/interfaces/sigaction/4-18: build: PASS + conformance/interfaces/sigaction/4-18: link: PASS + conformance/interfaces/sigaction/4-19: build: PASS + conformance/interfaces/sigaction/4-19: link: PASS + conformance/interfaces/sigaction/4-2: build: PASS + conformance/interfaces/sigaction/4-2: link: PASS + conformance/interfaces/sigaction/4-20: build: PASS + conformance/interfaces/sigaction/4-20: link: PASS + conformance/interfaces/sigaction/4-21: build: PASS + conformance/interfaces/sigaction/4-21: link: PASS + conformance/interfaces/sigaction/4-22: build: PASS + conformance/interfaces/sigaction/4-22: link: PASS + conformance/interfaces/sigaction/4-23: build: PASS + conformance/interfaces/sigaction/4-23: link: PASS + conformance/interfaces/sigaction/4-24: build: PASS + conformance/interfaces/sigaction/4-24: link: PASS + conformance/interfaces/sigaction/4-25: build: PASS + conformance/interfaces/sigaction/4-25: link: PASS + conformance/interfaces/sigaction/4-26: build: PASS + conformance/interfaces/sigaction/4-26: link: PASS + conformance/interfaces/sigaction/4-27: build: PASS + conformance/interfaces/sigaction/4-27: link: PASS + conformance/interfaces/sigaction/4-28: build: PASS + conformance/interfaces/sigaction/4-28: link: PASS + conformance/interfaces/sigaction/4-29: build: PASS + conformance/interfaces/sigaction/4-29: link: PASS + conformance/interfaces/sigaction/4-3: build: PASS + conformance/interfaces/sigaction/4-3: link: PASS + conformance/interfaces/sigaction/4-30: build: PASS + conformance/interfaces/sigaction/4-30: link: PASS + conformance/interfaces/sigaction/4-31: build: PASS + conformance/interfaces/sigaction/4-31: link: PASS + conformance/interfaces/sigaction/4-32: build: PASS + conformance/interfaces/sigaction/4-32: link: PASS + conformance/interfaces/sigaction/4-33: build: PASS + conformance/interfaces/sigaction/4-33: link: PASS + conformance/interfaces/sigaction/4-34: build: PASS + conformance/interfaces/sigaction/4-34: link: PASS + conformance/interfaces/sigaction/4-35: build: PASS + conformance/interfaces/sigaction/4-35: link: PASS + conformance/interfaces/sigaction/4-36: build: PASS + conformance/interfaces/sigaction/4-36: link: PASS + conformance/interfaces/sigaction/4-37: build: PASS + conformance/interfaces/sigaction/4-37: link: PASS + conformance/interfaces/sigaction/4-38: build: PASS + conformance/interfaces/sigaction/4-38: link: PASS + conformance/interfaces/sigaction/4-39: build: PASS + conformance/interfaces/sigaction/4-39: link: PASS + conformance/interfaces/sigaction/4-4: build: PASS + conformance/interfaces/sigaction/4-4: link: PASS + conformance/interfaces/sigaction/4-40: build: PASS + conformance/interfaces/sigaction/4-40: link: PASS + conformance/interfaces/sigaction/4-41: build: PASS + conformance/interfaces/sigaction/4-41: link: PASS + conformance/interfaces/sigaction/4-42: build: PASS + conformance/interfaces/sigaction/4-42: link: PASS + conformance/interfaces/sigaction/4-43: build: PASS + conformance/interfaces/sigaction/4-43: link: PASS + conformance/interfaces/sigaction/4-44: build: PASS + conformance/interfaces/sigaction/4-44: link: PASS + conformance/interfaces/sigaction/4-45: build: PASS + conformance/interfaces/sigaction/4-45: link: PASS + conformance/interfaces/sigaction/4-46: build: PASS + conformance/interfaces/sigaction/4-46: link: PASS + conformance/interfaces/sigaction/4-47: build: PASS + conformance/interfaces/sigaction/4-47: link: PASS + conformance/interfaces/sigaction/4-48: build: PASS + conformance/interfaces/sigaction/4-48: link: PASS + conformance/interfaces/sigaction/4-49: build: PASS + conformance/interfaces/sigaction/4-49: link: PASS + conformance/interfaces/sigaction/4-5: build: PASS + conformance/interfaces/sigaction/4-5: link: PASS + conformance/interfaces/sigaction/4-50: build: PASS + conformance/interfaces/sigaction/4-50: link: PASS + conformance/interfaces/sigaction/4-51: build: PASS + conformance/interfaces/sigaction/4-51: link: PASS + conformance/interfaces/sigaction/4-52: build: PASS + conformance/interfaces/sigaction/4-52: link: PASS + conformance/interfaces/sigaction/4-53: build: PASS + conformance/interfaces/sigaction/4-53: link: PASS + conformance/interfaces/sigaction/4-54: build: PASS + conformance/interfaces/sigaction/4-54: link: PASS + conformance/interfaces/sigaction/4-55: build: PASS + conformance/interfaces/sigaction/4-55: link: PASS + conformance/interfaces/sigaction/4-56: build: PASS + conformance/interfaces/sigaction/4-56: link: PASS + conformance/interfaces/sigaction/4-57: build: PASS + conformance/interfaces/sigaction/4-57: link: PASS + conformance/interfaces/sigaction/4-58: build: PASS + conformance/interfaces/sigaction/4-58: link: PASS + conformance/interfaces/sigaction/4-59: build: PASS + conformance/interfaces/sigaction/4-59: link: PASS + conformance/interfaces/sigaction/4-6: build: PASS + conformance/interfaces/sigaction/4-6: link: PASS + conformance/interfaces/sigaction/4-60: build: PASS + conformance/interfaces/sigaction/4-60: link: PASS + conformance/interfaces/sigaction/4-61: build: PASS + conformance/interfaces/sigaction/4-61: link: PASS + conformance/interfaces/sigaction/4-62: build: PASS + conformance/interfaces/sigaction/4-62: link: PASS + conformance/interfaces/sigaction/4-63: build: PASS + conformance/interfaces/sigaction/4-63: link: PASS + conformance/interfaces/sigaction/4-64: build: PASS + conformance/interfaces/sigaction/4-64: link: PASS + conformance/interfaces/sigaction/4-65: build: PASS + conformance/interfaces/sigaction/4-65: link: PASS + conformance/interfaces/sigaction/4-66: build: PASS + conformance/interfaces/sigaction/4-66: link: PASS + conformance/interfaces/sigaction/4-67: build: PASS + conformance/interfaces/sigaction/4-67: link: PASS + conformance/interfaces/sigaction/4-68: build: PASS + conformance/interfaces/sigaction/4-68: link: PASS + conformance/interfaces/sigaction/4-69: build: PASS + conformance/interfaces/sigaction/4-69: link: PASS + conformance/interfaces/sigaction/4-7: build: PASS + conformance/interfaces/sigaction/4-7: link: PASS + conformance/interfaces/sigaction/4-70: build: PASS + conformance/interfaces/sigaction/4-70: link: PASS + conformance/interfaces/sigaction/4-71: build: PASS + conformance/interfaces/sigaction/4-71: link: PASS + conformance/interfaces/sigaction/4-72: build: PASS + conformance/interfaces/sigaction/4-72: link: PASS + conformance/interfaces/sigaction/4-73: build: PASS + conformance/interfaces/sigaction/4-73: link: PASS + conformance/interfaces/sigaction/4-74: build: PASS + conformance/interfaces/sigaction/4-74: link: PASS + conformance/interfaces/sigaction/4-75: build: PASS + conformance/interfaces/sigaction/4-75: link: PASS + conformance/interfaces/sigaction/4-76: build: PASS + conformance/interfaces/sigaction/4-76: link: PASS + conformance/interfaces/sigaction/4-77: build: PASS + conformance/interfaces/sigaction/4-77: link: PASS + conformance/interfaces/sigaction/4-78: build: PASS + conformance/interfaces/sigaction/4-78: link: PASS + conformance/interfaces/sigaction/4-79: build: PASS + conformance/interfaces/sigaction/4-79: link: PASS + conformance/interfaces/sigaction/4-8: build: PASS + conformance/interfaces/sigaction/4-8: link: PASS + conformance/interfaces/sigaction/4-80: build: PASS + conformance/interfaces/sigaction/4-80: link: PASS + conformance/interfaces/sigaction/4-81: build: PASS + conformance/interfaces/sigaction/4-81: link: PASS + conformance/interfaces/sigaction/4-82: build: PASS + conformance/interfaces/sigaction/4-82: link: PASS + conformance/interfaces/sigaction/4-83: build: PASS + conformance/interfaces/sigaction/4-83: link: PASS + conformance/interfaces/sigaction/4-84: build: PASS + conformance/interfaces/sigaction/4-84: link: PASS + conformance/interfaces/sigaction/4-85: build: PASS + conformance/interfaces/sigaction/4-85: link: PASS + conformance/interfaces/sigaction/4-86: build: PASS + conformance/interfaces/sigaction/4-86: link: PASS + conformance/interfaces/sigaction/4-87: build: PASS + conformance/interfaces/sigaction/4-87: link: PASS + conformance/interfaces/sigaction/4-88: build: PASS + conformance/interfaces/sigaction/4-88: link: PASS + conformance/interfaces/sigaction/4-89: build: PASS + conformance/interfaces/sigaction/4-89: link: PASS + conformance/interfaces/sigaction/4-9: build: PASS + conformance/interfaces/sigaction/4-9: link: PASS + conformance/interfaces/sigaction/4-90: build: PASS + conformance/interfaces/sigaction/4-90: link: PASS + conformance/interfaces/sigaction/4-91: build: PASS + conformance/interfaces/sigaction/4-91: link: PASS + conformance/interfaces/sigaction/4-92: build: PASS + conformance/interfaces/sigaction/4-92: link: PASS + conformance/interfaces/sigaction/4-93: build: PASS + conformance/interfaces/sigaction/4-93: link: PASS + conformance/interfaces/sigaction/4-94: build: PASS + conformance/interfaces/sigaction/4-94: link: PASS + conformance/interfaces/sigaction/4-95: build: PASS + conformance/interfaces/sigaction/4-95: link: PASS + conformance/interfaces/sigaction/4-96: build: PASS + conformance/interfaces/sigaction/4-96: link: PASS + conformance/interfaces/sigaction/4-97: build: PASS + conformance/interfaces/sigaction/4-97: link: PASS + conformance/interfaces/sigaction/4-98: build: PASS + conformance/interfaces/sigaction/4-98: link: PASS + conformance/interfaces/sigaction/4-99: build: PASS + conformance/interfaces/sigaction/4-99: link: PASS + conformance/interfaces/sigaction/6-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-1.c: In function ‘main’: + conformance/interfaces/sigaction/6-1.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-1.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-1.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-10: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-10.c: In function ‘main’: + conformance/interfaces/sigaction/6-10.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-10.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-10.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-11: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-11.c: In function ‘main’: + conformance/interfaces/sigaction/6-11.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-11.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-11.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-12: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-12.c: In function ‘main’: + conformance/interfaces/sigaction/6-12.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-12.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-12.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-13: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-13.c: In function ‘main’: + conformance/interfaces/sigaction/6-13.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-13.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-13.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-14: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-14.c: In function ‘main’: + conformance/interfaces/sigaction/6-14.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-14.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-14.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-15: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-15.c: In function ‘main’: + conformance/interfaces/sigaction/6-15.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-15.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-15.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-16: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-16.c: In function ‘main’: + conformance/interfaces/sigaction/6-16.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-16.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-16.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-17: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-17.c: In function ‘main’: + conformance/interfaces/sigaction/6-17.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-17.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-17.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-18: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-18.c: In function ‘main’: + conformance/interfaces/sigaction/6-18.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-18.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-18.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-19: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-19.c: In function ‘main’: + conformance/interfaces/sigaction/6-19.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-19.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-19.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-2: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-2.c: In function ‘main’: + conformance/interfaces/sigaction/6-2.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-2.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-2.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-20: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-20.c: In function ‘main’: + conformance/interfaces/sigaction/6-20.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-20.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-20.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-21: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-21.c: In function ‘main’: + conformance/interfaces/sigaction/6-21.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-21.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-21.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-22: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-22.c: In function ‘main’: + conformance/interfaces/sigaction/6-22.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-22.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-22.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-23: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-23.c: In function ‘main’: + conformance/interfaces/sigaction/6-23.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-23.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-23.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-24: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-24.c: In function ‘main’: + conformance/interfaces/sigaction/6-24.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-24.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-24.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-25: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-25.c: In function ‘main’: + conformance/interfaces/sigaction/6-25.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-25.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-25.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-26: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-26.c: In function ‘main’: + conformance/interfaces/sigaction/6-26.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-26.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-26.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-3: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-3.c: In function ‘main’: + conformance/interfaces/sigaction/6-3.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-3.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-3.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-4: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-4.c: In function ‘main’: + conformance/interfaces/sigaction/6-4.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-4.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-4.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-5: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-5.c: In function ‘main’: + conformance/interfaces/sigaction/6-5.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-5.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-5.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-6: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-6.c: In function ‘main’: + conformance/interfaces/sigaction/6-6.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-6.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-6.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-7: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-7.c: In function ‘main’: + conformance/interfaces/sigaction/6-7.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-7.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-7.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-8: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-8.c: In function ‘main’: + conformance/interfaces/sigaction/6-8.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-8.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-8.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/6-9: build: FAILED: Compiler output: + conformance/interfaces/sigaction/6-9.c: In function ‘main’: + conformance/interfaces/sigaction/6-9.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/6-9.c:34: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/6-9.c:34: error: for each function it appears in.) + conformance/interfaces/sigaction/8-1: build: PASS + conformance/interfaces/sigaction/8-1: link: PASS + conformance/interfaces/sigaction/8-10: build: PASS + conformance/interfaces/sigaction/8-10: link: PASS + conformance/interfaces/sigaction/8-11: build: PASS + conformance/interfaces/sigaction/8-11: link: PASS + conformance/interfaces/sigaction/8-12: build: PASS + conformance/interfaces/sigaction/8-12: link: PASS + conformance/interfaces/sigaction/8-13: build: PASS + conformance/interfaces/sigaction/8-13: link: PASS + conformance/interfaces/sigaction/8-14: build: PASS + conformance/interfaces/sigaction/8-14: link: PASS + conformance/interfaces/sigaction/8-15: build: PASS + conformance/interfaces/sigaction/8-15: link: PASS + conformance/interfaces/sigaction/8-17: build: PASS + conformance/interfaces/sigaction/8-17: link: PASS + conformance/interfaces/sigaction/8-18: build: PASS + conformance/interfaces/sigaction/8-18: link: PASS + conformance/interfaces/sigaction/8-19: build: PASS + conformance/interfaces/sigaction/8-19: link: PASS + conformance/interfaces/sigaction/8-2: build: PASS + conformance/interfaces/sigaction/8-2: link: PASS + conformance/interfaces/sigaction/8-20: build: PASS + conformance/interfaces/sigaction/8-20: link: PASS + conformance/interfaces/sigaction/8-21: build: PASS + conformance/interfaces/sigaction/8-21: link: PASS + conformance/interfaces/sigaction/8-22: build: PASS + conformance/interfaces/sigaction/8-22: link: PASS + conformance/interfaces/sigaction/8-23: build: PASS + conformance/interfaces/sigaction/8-23: link: PASS + conformance/interfaces/sigaction/8-24: build: PASS + conformance/interfaces/sigaction/8-24: link: PASS + conformance/interfaces/sigaction/8-25: build: PASS + conformance/interfaces/sigaction/8-25: link: PASS + conformance/interfaces/sigaction/8-26: build: PASS + conformance/interfaces/sigaction/8-26: link: PASS + conformance/interfaces/sigaction/8-3: build: PASS + conformance/interfaces/sigaction/8-3: link: PASS + conformance/interfaces/sigaction/8-4: build: PASS + conformance/interfaces/sigaction/8-4: link: PASS + conformance/interfaces/sigaction/8-5: build: PASS + conformance/interfaces/sigaction/8-5: link: PASS + conformance/interfaces/sigaction/8-6: build: PASS + conformance/interfaces/sigaction/8-6: link: PASS + conformance/interfaces/sigaction/8-7: build: PASS + conformance/interfaces/sigaction/8-7: link: PASS + conformance/interfaces/sigaction/8-8: build: PASS + conformance/interfaces/sigaction/8-8: link: PASS + conformance/interfaces/sigaction/8-9: build: PASS + conformance/interfaces/sigaction/8-9: link: PASS + conformance/interfaces/sigaction/9-1: build: FAILED: Compiler output: + conformance/interfaces/sigaction/9-1.c: In function ‘main’: + conformance/interfaces/sigaction/9-1.c:49: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigaction/9-1.c:49: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigaction/9-1.c:49: error: for each function it appears in.) + conformance/interfaces/sigaddset/1-3: build: PASS + conformance/interfaces/sigaddset/1-3: link: PASS + conformance/interfaces/sigaddset/2-1: build: PASS + conformance/interfaces/sigaddset/2-1: link: PASS + conformance/interfaces/sigaddset/1-core-buildonly: build: PASS + conformance/interfaces/sigaddset/1-core-buildonly: link: PASS + conformance/interfaces/sigaddset/4-core-buildonly: build: PASS + conformance/interfaces/sigaddset/4-core-buildonly: link: PASS + conformance/interfaces/sigaltstack/1-1: build: PASS + conformance/interfaces/sigaltstack/1-1: link: PASS + conformance/interfaces/sigaltstack/10-1: build: PASS + conformance/interfaces/sigaltstack/10-1: link: PASS + conformance/interfaces/sigaltstack/11-1: build: PASS + conformance/interfaces/sigaltstack/11-1: link: PASS + conformance/interfaces/sigaltstack/12-1: build: PASS + conformance/interfaces/sigaltstack/12-1: link: PASS + conformance/interfaces/sigaltstack/2-1: build: PASS + conformance/interfaces/sigaltstack/2-1: link: PASS + conformance/interfaces/sigaltstack/3-1: build: PASS + conformance/interfaces/sigaltstack/3-1: link: PASS + conformance/interfaces/sigaltstack/5-1: build: PASS + conformance/interfaces/sigaltstack/5-1: link: PASS + conformance/interfaces/sigaltstack/6-1: build: PASS + conformance/interfaces/sigaltstack/6-1: link: PASS + conformance/interfaces/sigaltstack/7-1: build: PASS + conformance/interfaces/sigaltstack/7-1: link: PASS + conformance/interfaces/sigaltstack/8-1: build: PASS + conformance/interfaces/sigaltstack/8-1: link: PASS + conformance/interfaces/sigaltstack/9-1: build: PASS + conformance/interfaces/sigaltstack/9-1: link: PASS + conformance/interfaces/sigaltstack/9-buildonly: build: PASS + conformance/interfaces/sigaltstack/9-buildonly: link: PASS + conformance/interfaces/sigdelset/1-3: build: PASS + conformance/interfaces/sigdelset/1-3: link: PASS + conformance/interfaces/sigdelset/1-4: build: PASS + conformance/interfaces/sigdelset/1-4: link: PASS + conformance/interfaces/sigdelset/2-1: build: PASS + conformance/interfaces/sigdelset/2-1: link: PASS + conformance/interfaces/sigdelset/1-core-buildonly: build: PASS + conformance/interfaces/sigdelset/1-core-buildonly: link: PASS + conformance/interfaces/sigdelset/4-core-buildonly: build: PASS + conformance/interfaces/sigdelset/4-core-buildonly: link: PASS + conformance/interfaces/sigemptyset/1-1: build: PASS + conformance/interfaces/sigemptyset/1-1: link: PASS + conformance/interfaces/sigemptyset/2-1: build: PASS + conformance/interfaces/sigemptyset/2-1: link: PASS + conformance/interfaces/sigfillset/1-1: build: PASS + conformance/interfaces/sigfillset/1-1: link: PASS + conformance/interfaces/sigfillset/2-1: build: PASS + conformance/interfaces/sigfillset/2-1: link: PASS + conformance/interfaces/sighold/1-1: build: PASS + conformance/interfaces/sighold/1-1: link: PASS + conformance/interfaces/sighold/2-1: build: PASS + conformance/interfaces/sighold/2-1: link: PASS + conformance/interfaces/sighold/3-core-buildonly: build: PASS + conformance/interfaces/sighold/3-core-buildonly: link: PASS + conformance/interfaces/sigignore/1-1: build: PASS + conformance/interfaces/sigignore/1-1: link: PASS + conformance/interfaces/sigignore/4-1: build: PASS + conformance/interfaces/sigignore/4-1: link: PASS + conformance/interfaces/sigignore/6-1: build: PASS + conformance/interfaces/sigignore/6-1: link: PASS + conformance/interfaces/sigignore/6-2: build: PASS + conformance/interfaces/sigignore/6-2: link: PASS + conformance/interfaces/sigignore/5-core-buildonly: build: PASS + conformance/interfaces/sigignore/5-core-buildonly: link: PASS + conformance/interfaces/sigismember/3-1: build: PASS + conformance/interfaces/sigismember/3-1: link: PASS + conformance/interfaces/sigismember/4-1: build: PASS + conformance/interfaces/sigismember/4-1: link: PASS + conformance/interfaces/sigismember/5-core-buildonly: build: PASS + conformance/interfaces/sigismember/5-core-buildonly: link: PASS + conformance/interfaces/signal/1-1: build: PASS + conformance/interfaces/signal/1-1: link: PASS + conformance/interfaces/signal/2-1: build: PASS + conformance/interfaces/signal/2-1: link: PASS + conformance/interfaces/signal/3-1: build: PASS + conformance/interfaces/signal/3-1: link: PASS + conformance/interfaces/signal/5-1: build: PASS + conformance/interfaces/signal/5-1: link: PASS + conformance/interfaces/signal/6-1: build: PASS + conformance/interfaces/signal/6-1: link: PASS + conformance/interfaces/signal/7-1: build: PASS + conformance/interfaces/signal/7-1: link: PASS + conformance/interfaces/sigpause/1-1: build: PASS + conformance/interfaces/sigpause/1-1: link: PASS + conformance/interfaces/sigpause/1-2: build: PASS + conformance/interfaces/sigpause/1-2: link: PASS + conformance/interfaces/sigpause/2-1: build: PASS + conformance/interfaces/sigpause/2-1: link: PASS + conformance/interfaces/sigpause/3-1: build: PASS + conformance/interfaces/sigpause/3-1: link: PASS + conformance/interfaces/sigpause/4-1: build: PASS + conformance/interfaces/sigpause/4-1: link: PASS + conformance/interfaces/sigpending/1-1: build: PASS + conformance/interfaces/sigpending/1-1: link: PASS + conformance/interfaces/sigpending/1-2: build: PASS + conformance/interfaces/sigpending/1-2: link: PASS + conformance/interfaces/sigpending/1-3: build: PASS + conformance/interfaces/sigpending/1-3: link: PASS + conformance/interfaces/sigpending/2-1: build: PASS + conformance/interfaces/sigpending/2-1: link: PASS + conformance/interfaces/sigprocmask/10-1: build: PASS + conformance/interfaces/sigprocmask/10-1: link: PASS + conformance/interfaces/sigprocmask/12-1: build: PASS + conformance/interfaces/sigprocmask/12-1: link: PASS + conformance/interfaces/sigprocmask/15-1: build: PASS + conformance/interfaces/sigprocmask/15-1: link: PASS + conformance/interfaces/sigprocmask/4-1: build: PASS + conformance/interfaces/sigprocmask/4-1: link: PASS + conformance/interfaces/sigprocmask/5-1: build: PASS + conformance/interfaces/sigprocmask/5-1: link: PASS + conformance/interfaces/sigprocmask/17-core-buildonly: build: PASS + conformance/interfaces/sigprocmask/17-core-buildonly: link: PASS + conformance/interfaces/sigprocmask/6-1: build: PASS + conformance/interfaces/sigprocmask/6-1: link: PASS + conformance/interfaces/sigprocmask/7-1: build: PASS + conformance/interfaces/sigprocmask/7-1: link: PASS + conformance/interfaces/sigprocmask/8-1: build: PASS + conformance/interfaces/sigprocmask/8-1: link: PASS + conformance/interfaces/sigprocmask/8-2: build: PASS + conformance/interfaces/sigprocmask/8-2: link: PASS + conformance/interfaces/sigprocmask/8-3: build: PASS + conformance/interfaces/sigprocmask/8-3: link: PASS + conformance/interfaces/sigprocmask/9-1: build: PASS + conformance/interfaces/sigprocmask/9-1: link: PASS + conformance/interfaces/sigqueue/1-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/1-1.c: In function ‘myhandler’: + conformance/interfaces/sigqueue/1-1.c:33: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/1-1.c:33: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/1-1.c:33: error: for each function it appears in.) + conformance/interfaces/sigqueue/1-1.c: In function ‘main’: + conformance/interfaces/sigqueue/1-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/1-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/10-1: build: PASS + conformance/interfaces/sigqueue/10-1: link: PASS + conformance/interfaces/sigqueue/11-1: build: PASS + conformance/interfaces/sigqueue/11-1: link: PASS + conformance/interfaces/sigqueue/12-1: build: PASS + conformance/interfaces/sigqueue/12-1: link: PASS + conformance/interfaces/sigqueue/2-1: build: PASS + conformance/interfaces/sigqueue/2-1: link: PASS + conformance/interfaces/sigqueue/2-2: build: PASS + conformance/interfaces/sigqueue/2-2: link: PASS + conformance/interfaces/sigqueue/3-1: build: PASS + conformance/interfaces/sigqueue/3-1: link: PASS + conformance/interfaces/sigqueue/4-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/4-1.c: In function ‘main’: + conformance/interfaces/sigqueue/4-1.c:45: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/4-1.c:45: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/4-1.c:45: error: for each function it appears in.) + conformance/interfaces/sigqueue/4-1.c:48: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/5-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/5-1.c: In function ‘main’: + conformance/interfaces/sigqueue/5-1.c:48: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/5-1.c:48: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/5-1.c:48: error: for each function it appears in.) + conformance/interfaces/sigqueue/6-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/6-1.c: In function ‘main’: + conformance/interfaces/sigqueue/6-1.c:55: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/6-1.c:55: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/6-1.c:55: error: for each function it appears in.) + conformance/interfaces/sigqueue/6-1.c:58: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/7-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/7-1.c: In function ‘main’: + conformance/interfaces/sigqueue/7-1.c:52: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/7-1.c:52: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/7-1.c:52: error: for each function it appears in.) + conformance/interfaces/sigqueue/7-1.c:58: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigqueue/7-1.c:58: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/8-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/8-1.c: In function ‘main’: + conformance/interfaces/sigqueue/8-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/8-1.c:46: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/8-1.c:46: error: for each function it appears in.) + conformance/interfaces/sigqueue/8-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigqueue/9-1: build: FAILED: Compiler output: + conformance/interfaces/sigqueue/9-1.c: In function ‘main’: + conformance/interfaces/sigqueue/9-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigqueue/9-1.c:46: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigqueue/9-1.c:46: error: for each function it appears in.) + conformance/interfaces/sigqueue/9-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigrelse/1-1: build: PASS + conformance/interfaces/sigrelse/1-1: link: PASS + conformance/interfaces/sigrelse/2-1: build: PASS + conformance/interfaces/sigrelse/2-1: link: PASS + conformance/interfaces/sigrelse/3-core-buildonly: build: PASS + conformance/interfaces/sigrelse/3-core-buildonly: link: PASS + conformance/interfaces/sigset/1-1: build: PASS + conformance/interfaces/sigset/1-1: link: PASS + conformance/interfaces/sigset/10-1: build: PASS + conformance/interfaces/sigset/10-1: link: PASS + conformance/interfaces/sigset/2-1: build: PASS + conformance/interfaces/sigset/2-1: link: PASS + conformance/interfaces/sigset/3-1: build: PASS + conformance/interfaces/sigset/3-1: link: PASS + conformance/interfaces/sigset/4-1: build: PASS + conformance/interfaces/sigset/4-1: link: PASS + conformance/interfaces/sigset/5-1: build: PASS + conformance/interfaces/sigset/5-1: link: PASS + conformance/interfaces/sigset/6-1: build: PASS + conformance/interfaces/sigset/6-1: link: PASS + conformance/interfaces/sigset/7-1: build: PASS + conformance/interfaces/sigset/7-1: link: PASS + conformance/interfaces/sigset/8-1: build: PASS + conformance/interfaces/sigset/8-1: link: PASS + conformance/interfaces/sigset/9-1: build: PASS + conformance/interfaces/sigset/9-1: link: PASS + conformance/interfaces/sigsuspend/1-1: build: PASS + conformance/interfaces/sigsuspend/1-1: link: PASS + conformance/interfaces/sigsuspend/3-1: build: PASS + conformance/interfaces/sigsuspend/3-1: link: PASS + conformance/interfaces/sigsuspend/4-1: build: PASS + conformance/interfaces/sigsuspend/4-1: link: PASS + conformance/interfaces/sigsuspend/6-1: build: PASS + conformance/interfaces/sigsuspend/6-1: link: PASS + conformance/interfaces/sigtimedwait/1-1: build: PASS + conformance/interfaces/sigtimedwait/1-1: link: PASS + conformance/interfaces/sigtimedwait/2-1: build: PASS + conformance/interfaces/sigtimedwait/2-1: link: PASS + conformance/interfaces/sigtimedwait/4-1: build: PASS + conformance/interfaces/sigtimedwait/4-1: link: PASS + conformance/interfaces/sigtimedwait/5-1: build: PASS + conformance/interfaces/sigtimedwait/5-1: link: PASS + conformance/interfaces/sigtimedwait/6-1: build: PASS + conformance/interfaces/sigtimedwait/6-1: link: PASS + conformance/interfaces/sigwait/1-1: build: PASS + conformance/interfaces/sigwait/1-1: link: PASS + conformance/interfaces/sigwait/2-1: build: FAILED: Compiler output: + conformance/interfaces/sigwait/2-1.c: In function ‘main’: + conformance/interfaces/sigwait/2-1.c:45: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigwait/2-1.c:45: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwait/2-1.c:45: error: for each function it appears in.) + conformance/interfaces/sigwait/3-1: build: PASS + conformance/interfaces/sigwait/3-1: link: PASS + conformance/interfaces/sigwait/4-1: build: PASS + conformance/interfaces/sigwait/4-1: link: PASS + conformance/interfaces/sigwait/6-1: build: PASS + conformance/interfaces/sigwait/6-1: link: PASS + conformance/interfaces/sigwait/6-2: build: PASS + conformance/interfaces/sigwait/6-2: link: PASS + conformance/interfaces/sigwait/7-1: build: FAILED: Compiler output: + conformance/interfaces/sigwait/7-1.c: In function ‘main’: + conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigwait/7-1.c:114: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwait/7-1.c:114: error: for each function it appears in.) + conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigwait/8-1: build: PASS + conformance/interfaces/sigwait/8-1: link: PASS + conformance/interfaces/sigwaitinfo/1-1: build: PASS + conformance/interfaces/sigwaitinfo/1-1: link: PASS + conformance/interfaces/sigwaitinfo/2-1: build: FAILED: Compiler output: + conformance/interfaces/sigwaitinfo/2-1.c: In function ‘main’: + conformance/interfaces/sigwaitinfo/2-1.c:44: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/2-1.c:44: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwaitinfo/2-1.c:44: error: for each function it appears in.) + conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMAX’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/3-1: build: PASS + conformance/interfaces/sigwaitinfo/3-1: link: PASS + conformance/interfaces/sigwaitinfo/5-1: build: FAILED: Compiler output: + conformance/interfaces/sigwaitinfo/5-1.c: In function ‘main’: + conformance/interfaces/sigwaitinfo/5-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/5-1.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwaitinfo/5-1.c:41: error: for each function it appears in.) + conformance/interfaces/sigwaitinfo/6-1: build: FAILED: Compiler output: + conformance/interfaces/sigwaitinfo/6-1.c: In function ‘main’: + conformance/interfaces/sigwaitinfo/6-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/6-1.c:41: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwaitinfo/6-1.c:41: error: for each function it appears in.) + conformance/interfaces/sigwaitinfo/7-1: build: FAILED: Compiler output: + conformance/interfaces/sigwaitinfo/7-1.c: In function ‘main’: + conformance/interfaces/sigwaitinfo/7-1.c:48: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/7-1.c:48: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwaitinfo/7-1.c:48: error: for each function it appears in.) + conformance/interfaces/sigwaitinfo/7-1.c:51: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/8-1: build: FAILED: Compiler output: + conformance/interfaces/sigwaitinfo/8-1.c: In function ‘main’: + conformance/interfaces/sigwaitinfo/8-1.c:47: error: ‘SA_SIGINFO’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/8-1.c:47: error: (Each undeclared identifier is reported only once + conformance/interfaces/sigwaitinfo/8-1.c:47: error: for each function it appears in.) + conformance/interfaces/sigwaitinfo/8-1.c:50: error: ‘SIGRTMIN’ undeclared (first use in this function) + conformance/interfaces/sigwaitinfo/9-1: build: PASS + conformance/interfaces/sigwaitinfo/9-1: link: PASS + conformance/interfaces/strftime/1-1: build: PASS + conformance/interfaces/strftime/1-1: link: PASS + conformance/interfaces/strftime/2-1: build: PASS + conformance/interfaces/strftime/2-1: link: PASS + conformance/interfaces/strftime/3-1: build: PASS + conformance/interfaces/strftime/3-1: link: PASS + conformance/interfaces/time/1-1: build: PASS + conformance/interfaces/time/1-1: link: PASS + conformance/interfaces/timer_create/1-1: build: PASS + conformance/interfaces/timer_create/1-1: link: PASS + conformance/interfaces/timer_create/10-1: build: PASS + conformance/interfaces/timer_create/10-1: link: PASS + conformance/interfaces/timer_create/11-1: build: PASS + conformance/interfaces/timer_create/11-1: link: PASS + conformance/interfaces/timer_create/16-1: build: PASS + conformance/interfaces/timer_create/16-1: link: PASS + conformance/interfaces/timer_create/3-1: build: PASS + conformance/interfaces/timer_create/3-1: link: PASS + conformance/interfaces/timer_create/7-1: build: PASS + conformance/interfaces/timer_create/7-1: link: PASS + conformance/interfaces/timer_create/8-1: build: PASS + conformance/interfaces/timer_create/8-1: link: PASS + conformance/interfaces/timer_create/9-1: build: PASS + conformance/interfaces/timer_create/9-1: link: PASS + conformance/interfaces/timer_create/speculative/15-1: build: PASS + conformance/interfaces/timer_create/speculative/15-1: link: PASS + conformance/interfaces/timer_create/speculative/2-1: build: PASS + conformance/interfaces/timer_create/speculative/2-1: link: PASS + conformance/interfaces/timer_create/speculative/5-1: build: PASS + conformance/interfaces/timer_create/speculative/5-1: link: PASS + conformance/interfaces/timer_delete/1-1: build: PASS + conformance/interfaces/timer_delete/1-1: link: PASS + conformance/interfaces/timer_delete/1-2: build: PASS + conformance/interfaces/timer_delete/1-2: link: PASS + conformance/interfaces/timer_delete/speculative/5-1: build: PASS + conformance/interfaces/timer_delete/speculative/5-1: link: PASS + conformance/interfaces/timer_delete/speculative/5-2: build: PASS + conformance/interfaces/timer_delete/speculative/5-2: link: PASS + conformance/interfaces/timer_getoverrun/1-1: build: PASS + conformance/interfaces/timer_getoverrun/1-1: link: PASS + conformance/interfaces/timer_getoverrun/2-1: build: PASS + conformance/interfaces/timer_getoverrun/2-1: link: PASS + conformance/interfaces/timer_getoverrun/2-2: build: PASS + conformance/interfaces/timer_getoverrun/2-2: link: PASS + conformance/interfaces/timer_getoverrun/2-3: build: PASS + conformance/interfaces/timer_getoverrun/2-3: link: PASS + conformance/interfaces/timer_getoverrun/3-1: build: PASS + conformance/interfaces/timer_getoverrun/3-1: link: PASS + conformance/interfaces/timer_getoverrun/speculative/6-1: build: PASS + conformance/interfaces/timer_getoverrun/speculative/6-1: link: PASS + conformance/interfaces/timer_getoverrun/speculative/6-2: build: PASS + conformance/interfaces/timer_getoverrun/speculative/6-2: link: PASS + conformance/interfaces/timer_getoverrun/speculative/6-3: build: PASS + conformance/interfaces/timer_getoverrun/speculative/6-3: link: PASS + conformance/interfaces/timer_gettime/1-1: build: PASS + conformance/interfaces/timer_gettime/1-1: link: PASS + conformance/interfaces/timer_gettime/1-2: build: PASS + conformance/interfaces/timer_gettime/1-2: link: PASS + conformance/interfaces/timer_gettime/1-3: build: PASS + conformance/interfaces/timer_gettime/1-3: link: PASS + conformance/interfaces/timer_gettime/1-4: build: PASS + conformance/interfaces/timer_gettime/1-4: link: PASS + conformance/interfaces/timer_gettime/2-1: build: PASS + conformance/interfaces/timer_gettime/2-1: link: PASS + conformance/interfaces/timer_gettime/2-2: build: PASS + conformance/interfaces/timer_gettime/2-2: link: PASS + conformance/interfaces/timer_gettime/3-1: build: PASS + conformance/interfaces/timer_gettime/3-1: link: PASS + conformance/interfaces/timer_gettime/speculative/6-1: build: PASS + conformance/interfaces/timer_gettime/speculative/6-1: link: PASS + conformance/interfaces/timer_gettime/speculative/6-2: build: PASS + conformance/interfaces/timer_gettime/speculative/6-2: link: PASS + conformance/interfaces/timer_gettime/speculative/6-3: build: PASS + conformance/interfaces/timer_gettime/speculative/6-3: link: PASS + conformance/interfaces/timer_settime/1-1: build: PASS + conformance/interfaces/timer_settime/1-1: link: PASS + conformance/interfaces/timer_settime/1-2: build: PASS + conformance/interfaces/timer_settime/1-2: link: PASS + conformance/interfaces/timer_settime/13-1: build: PASS + conformance/interfaces/timer_settime/13-1: link: PASS + conformance/interfaces/timer_settime/2-1: build: PASS + conformance/interfaces/timer_settime/2-1: link: PASS + conformance/interfaces/timer_settime/3-1: build: PASS + conformance/interfaces/timer_settime/3-1: link: PASS + conformance/interfaces/timer_settime/3-2: build: PASS + conformance/interfaces/timer_settime/3-2: link: PASS + conformance/interfaces/timer_settime/3-3: build: PASS + conformance/interfaces/timer_settime/3-3: link: PASS + conformance/interfaces/timer_settime/5-1: build: PASS + conformance/interfaces/timer_settime/5-1: link: PASS + conformance/interfaces/timer_settime/5-2: build: PASS + conformance/interfaces/timer_settime/5-2: link: PASS + conformance/interfaces/timer_settime/5-3: build: PASS + conformance/interfaces/timer_settime/5-3: link: PASS + conformance/interfaces/timer_settime/6-1: build: PASS + conformance/interfaces/timer_settime/6-1: link: PASS + conformance/interfaces/timer_settime/8-1: build: PASS + conformance/interfaces/timer_settime/8-1: link: PASS + conformance/interfaces/timer_settime/8-2: build: PASS + conformance/interfaces/timer_settime/8-2: link: PASS + conformance/interfaces/timer_settime/8-3: build: PASS + conformance/interfaces/timer_settime/8-3: link: PASS + conformance/interfaces/timer_settime/8-4: build: PASS + conformance/interfaces/timer_settime/8-4: link: PASS + conformance/interfaces/timer_settime/9-1: build: PASS + conformance/interfaces/timer_settime/9-1: link: PASS + conformance/interfaces/timer_settime/9-2: build: PASS + conformance/interfaces/timer_settime/9-2: link: PASS + conformance/interfaces/timer_settime/speculative/12-1: build: PASS + conformance/interfaces/timer_settime/speculative/12-1: link: PASS + conformance/interfaces/timer_settime/speculative/12-2: build: PASS + conformance/interfaces/timer_settime/speculative/12-2: link: PASS + conformance/interfaces/timer_settime/speculative/12-3: build: PASS + conformance/interfaces/timer_settime/speculative/12-3: link: PASS + functional/threads/schedule/1-1: build: PASS + functional/threads/schedule/1-1: link: PASS + functional/threads/schedule/1-2: build: PASS + functional/threads/schedule/1-2: link: PASS + conformance/behavior/WIFEXITED/1-1: execution: PASS + conformance/behavior/WIFEXITED/1-2: execution: PASS + conformance/behavior/WIFEXITED/1-3: execution: PASS + conformance/behavior/timers/1-1: execution: PASS + conformance/behavior/timers/2-1: execution: PASS + conformance/definitions/aio_h/2-1: execution: PASS + conformance/definitions/aio_h/4-1: execution: PASS + conformance/definitions/errno_h/3-2: execution: PASS + conformance/definitions/errno_h/4-1: execution: PASS + conformance/definitions/mqueue_h/1-1: execution: UNTESTED: Output: + Not Implemented! + conformance/definitions/mqueue_h/10-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/11-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/2-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/3-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/4-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/5-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/6-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/7-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/8-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/mqueue_h/9-1: execution: UNTESTED: Output: + Test not implemented! + conformance/definitions/sched_h/10-1: execution: PASS + conformance/definitions/signal_h/13-1: execution: PASS + conformance/interfaces/aio_cancel/1-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/10-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/2-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/4-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/6-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/7-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/8-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_cancel/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_error/1-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_error/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_error/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/12-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/14-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/4-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/4-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/8-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/8-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/8-3: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/8-4: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_fsync/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/1-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/10-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/11-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/11-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/3-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/4-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/7-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/8-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_read/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_return/1-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_return/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_return/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_return/3-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_return/4-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_suspend/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_suspend/4-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_suspend/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/1-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/1-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/2-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/3-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/6-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/7-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/8-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/8-2: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/aio_write/9-2: execution: UNSUPPORTED: Output: + conformance/interfaces/asctime/1-1: execution: PASS + conformance/interfaces/clock/1-1: execution: PASS + conformance/interfaces/clock/2-1: execution: PASS + conformance/interfaces/clock/4-1: execution: PASS + conformance/interfaces/clock_getcpuclockid/1-1: execution: UNSUPPORTED: Output: + _POSIX_CPUTIME unsupported + conformance/interfaces/clock_getcpuclockid/2-1: execution: UNSUPPORTED: Output: + _POSIX_CPUTIME unsupported + conformance/interfaces/clock_getres/1-1: execution: PASS + conformance/interfaces/clock_getres/2-1: execution: PASS + conformance/interfaces/clock_getres/3-1: execution: FAILED: Output: + clock_getres() failed + Test FAILED + conformance/interfaces/clock_getres/4-1: execution: PASS + conformance/interfaces/clock_getres/5-1: execution: PASS + conformance/interfaces/clock_getres/6-1: execution: PASS + conformance/interfaces/clock_getres/6-2: execution: PASS + conformance/interfaces/clock_getres/7-1: execution: UNSUPPORTED: Output: + _POSIX_CPUTIME not supported + conformance/interfaces/clock_getres/8-1: execution: UNSUPPORTED: Output: + _POSIX_THREAD_CPUTIME not supported + conformance/interfaces/clock_gettime/1-1: execution: PASS + conformance/interfaces/clock_gettime/1-2: execution: PASS + conformance/interfaces/clock_gettime/2-1: execution: PASS + conformance/interfaces/clock_gettime/3-1: execution: UNSUPPORTED: Output: + CLOCK_MONOTONIC unsupported + conformance/interfaces/clock_gettime/4-1: execution: UNSUPPORTED: Output: + _POSIX_CPUTIME unsupported + conformance/interfaces/clock_gettime/6-1: execution: PASS + conformance/interfaces/clock_gettime/7-1: execution: PASS + conformance/interfaces/clock_gettime/8-1: execution: PASS + conformance/interfaces/clock_gettime/8-2: execution: PASS + conformance/interfaces/clock_nanosleep/1-1: execution: PASS + conformance/interfaces/clock_nanosleep/1-2: execution: PASS + conformance/interfaces/clock_nanosleep/1-3: execution: PASS + conformance/interfaces/clock_nanosleep/1-4: execution: PASS + conformance/interfaces/clock_nanosleep/1-5: execution: PASS + conformance/interfaces/clock_nanosleep/10-1: execution: FAILED: Output: + In handler + errno != EINTR + Test FAILED + conformance/interfaces/clock_nanosleep/11-1: execution: PASS + conformance/interfaces/clock_nanosleep/13-1: execution: PASS + conformance/interfaces/clock_nanosleep/15-1: execution: PASS + conformance/interfaces/clock_nanosleep/2-1: execution: PASS + conformance/interfaces/clock_nanosleep/2-2: execution: PASS + conformance/interfaces/clock_nanosleep/2-3: execution: PASS + conformance/interfaces/clock_nanosleep/3-1: execution: PASS + conformance/interfaces/clock_nanosleep/4-1: execution: PASS + conformance/interfaces/clock_nanosleep/5-1: execution: PASS + conformance/interfaces/clock_nanosleep/6-1: execution: PASS + conformance/interfaces/clock_nanosleep/8-1: execution: PASS + conformance/interfaces/clock_nanosleep/9-1: execution: FAILED: Output: + In handler + clock_nanosleep() did not return EINTR + Child did not exit normally. + Test FAILED + conformance/interfaces/clock_settime/1-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/15-1: execution: PASS + conformance/interfaces/clock_settime/16-1: execution: PASS + conformance/interfaces/clock_settime/17-1: execution: PASS + conformance/interfaces/clock_settime/17-2: execution: PASS + conformance/interfaces/clock_settime/18-1: execution: PASS + conformance/interfaces/clock_settime/19-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/20-1: execution: PASS + conformance/interfaces/clock_settime/3-1: execution: PASS + conformance/interfaces/clock_settime/4-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/4-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/clock_settime/5-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/5-2: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/6-1: execution: PASS + conformance/interfaces/clock_settime/7-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/7-2: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/8-1: execution: UNTESTED: Output: + Run this test as ROOT, not as a Regular User + conformance/interfaces/clock_settime/speculative/4-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/clock_settime/speculative/4-4: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/ctime/1-1: execution: PASS + conformance/interfaces/difftime/1-1: execution: PASS + conformance/interfaces/difftime/2-1: execution: PASS + conformance/interfaces/fork/1-1: execution: UNRESOLVED: Output: + [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore) + [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore) + conformance/interfaces/fork/11-1: execution: INTERRUPTED: Output: + conformance/interfaces/fork/12-1: execution: FAILED: Output: + [09:57:13]SIGUSR1 and SIGUSR2 are pending, we can fork + [09:57:13]SIGUSR1 and SIGUSR2 are blocked in child + [09:57:13]Test conformance/interfaces/fork/12-1.c FAILED: The new process was created with SIGUSR1 pending + [09:57:13]SIGUSR1 and SIGUSR2 are pending, we can fork + [09:57:13]Test conformance/interfaces/fork/12-1.c FAILED: Child exited abnormally + conformance/interfaces/fork/13-1: execution: UNRESOLVED: Output: + [09:57:14]Test conformance/interfaces/fork/13-1.c unresolved: got 1073741902 (Function not implemented) on line 117 (Failed to set interval timer for ITIMER_VIRTUAL) + conformance/interfaces/fork/14-1: execution: UNRESOLVED: Output: + [09:57:14]Test conformance/interfaces/fork/14-1.c unresolved: got 1073741869 (Operation not supported) on line 100 (Failed to create the named semaphore) + conformance/interfaces/fork/16-1: execution: PASS + conformance/interfaces/fork/17-1: execution: UNRESOLVED: Output: + [09:57:15]Test conformance/interfaces/fork/17-1.c unresolved: got 1073741902 (Function not implemented) on line 103 (Failed to get max priority value) + conformance/interfaces/fork/17-2: execution: UNRESOLVED: Output: + [09:57:15]Test conformance/interfaces/fork/17-2.c unresolved: got 1073741902 (Function not implemented) on line 103 (Failed to get max priority value) + conformance/interfaces/fork/18-1: execution: UNRESOLVED: Output: + [09:57:16]Test conformance/interfaces/fork/18-1.c unresolved: got 1073741902 (Function not implemented) on line 128 (Failed to create a timer) + conformance/interfaces/fork/19-1: execution: UNRESOLVED: Output: + [09:57:16]Test conformance/interfaces/fork/19-1.c unresolved: got 1073741902 (Function not implemented) on line 114 (Failed to create the message queue descriptor) + conformance/interfaces/fork/21-1: execution: UNRESOLVED: Output: + [09:57:17]Test conformance/interfaces/fork/21-1.c unresolved: got 1073741869 (Operation not supported) on line 128 (Failed to open the semaphore) + conformance/interfaces/fork/22-1: execution: UNTESTED: Output: + [09:57:17]File conformance/interfaces/fork/22-1.c cannot test: The testcase needs CPUTIME or THREAD_CPUTIME support + conformance/interfaces/fork/3-1: execution: PASS + conformance/interfaces/fork/4-1: execution: PASS + conformance/interfaces/fork/6-1: execution: PASS + conformance/interfaces/fork/7-1: execution: PASS + conformance/interfaces/fork/8-1: execution: FAILED: Output: + [09:57:20]Test conformance/interfaces/fork/8-1.c FAILED: The process is created with non-zero tms_cutime or tms_cstime + conformance/interfaces/fork/9-1: execution: PASS + conformance/interfaces/fsync/4-1: execution: PASS + conformance/interfaces/fsync/5-1: execution: PASS + conformance/interfaces/fsync/7-1: execution: FAILED: Output: + fsync/7-1.c Test Fail: Expect EINVAL, get: (ipc/mig) bad request message ID + conformance/interfaces/getpid/1-1: execution: PASS + conformance/interfaces/gmtime/1-1: execution: PASS + conformance/interfaces/gmtime/2-1: execution: PASS + conformance/interfaces/kill/1-1: execution: PASS + conformance/interfaces/kill/1-2: execution: PASS + conformance/interfaces/kill/2-1: execution: PASS + conformance/interfaces/kill/2-2: execution: PASS + conformance/interfaces/kill/3-1: execution: PASS + conformance/interfaces/killpg/1-1: execution: PASS + conformance/interfaces/killpg/1-2: execution: PASS + conformance/interfaces/killpg/2-1: execution: PASS + conformance/interfaces/killpg/4-1: execution: PASS + conformance/interfaces/killpg/5-1: execution: PASS + conformance/interfaces/killpg/6-1: execution: PASS + conformance/interfaces/killpg/8-1: execution: PASS + conformance/interfaces/lio_listio/12-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/13-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/18-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/5-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/6-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/8-1: execution: UNSUPPORTED: Output: + conformance/interfaces/lio_listio/9-1: execution: UNSUPPORTED: Output: + conformance/interfaces/localtime/1-1: execution: PASS + conformance/interfaces/mktime/1-1: execution: PASS + conformance/interfaces/mlock/10-1: execution: UNRESOLVED: Output: + You don't have permission to lock your address space. + Try to rerun this test as root. + conformance/interfaces/mlock/2-1: execution: PASS + conformance/interfaces/mlock/4-1: execution: PASS + conformance/interfaces/mlock/5-1: execution: UNRESOLVED: Output: + You don't have permission to lock your address space. + Try to rerun this test as root. + conformance/interfaces/mlock/7-1: execution: PASS + conformance/interfaces/mlock/8-1: execution: UNRESOLVED: Output: + You don't have permission to lock your address space. + Try to rerun this test as root. + conformance/interfaces/mlock/speculative/12-1: execution: PASS + conformance/interfaces/mlockall/13-1: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/mlockall/13-2: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/mlockall/2-1: execution: PASS + conformance/interfaces/mlockall/3-6: execution: UNRESOLVED: Output: + An error occurs when calling mlockall(): Function not implemented + conformance/interfaces/mlockall/3-7: execution: UNRESOLVED: Output: + An error occurs when calling mlockall(): Function not implemented + conformance/interfaces/mlockall/7-1: execution: PASS + conformance/interfaces/mlockall/8-1: execution: UNRESOLVED: Output: + Unexpected error: Function not implemented + conformance/interfaces/mlockall/9-1: execution: PASS + conformance/interfaces/mlockall/speculative/15-1: execution: UNRESOLVED: Output: + Unexpected error: Function not implemented + conformance/interfaces/mmap/1-1: execution: PASS + conformance/interfaces/mmap/1-2: execution: PASS + conformance/interfaces/mmap/10-1: execution: PASS + conformance/interfaces/mmap/11-1: execution: PASS + conformance/interfaces/mmap/11-2: execution: PASS + conformance/interfaces/mmap/11-3: execution: PASS + conformance/interfaces/mmap/11-4: execution: FAILED: Output: + pa: 0x28000 + pa_2: 0x29000 + Test Fail: mmap/11-4.c Modification of the partial page at the end of an object is written out + conformance/interfaces/mmap/11-5: execution: FAILED: Output: + Test Fail: mmap/11-5.c Modification of the partial page at the end of an object is written out + conformance/interfaces/mmap/12-1: execution: PASS + conformance/interfaces/mmap/13-1: execution: FAILED: Output: + Time before write(): 1248767904 + Time before mmap(): 1248767905 + Time before munmap(): 1248767906 + atime1: 1248767904, atime2: 1248767904, atime3: 1248767904 + Test Fail mmap/13-1.c st_atime did not update properly + conformance/interfaces/mmap/14-1: execution: FAILED: Output: + Time before write(): 1248767907 + Time before mmap(): 1248767908 + Time before write reference: 1248767909 + Time before msync(): 1248767910 + ctime1: 1248767909, ctime2: 1248767909 + mtime1: 1248767909, mtime2: 1248767909 + Test Fail mmap/14-1.c st_ctime and st_mtime were not updated properly + conformance/interfaces/mmap/16-1: execution: PASS + conformance/interfaces/mmap/17-1: execution: PASS + conformance/interfaces/mmap/18-1: execution: UNRESOLVED: Output: + mmap/18-1.c Error at mlockall(): Function not implemented + conformance/interfaces/mmap/19-1: execution: PASS + conformance/interfaces/mmap/20-1: execution: PASS + conformance/interfaces/mmap/21-1: execution: FAILED: Output: + Test FAIL + conformance/interfaces/mmap/23-1: execution: PASS + +Kernel panic [[!tag open_issue_gnumach]] (probably at +conformance/interfaces/mmap/24-1): + + Assertion `(object == VM_OBJECT_NULL) || (object->ref_count > 0) || ((object->paging_in_progress != 0) && internal)' failed in file "../gnumach-1-branch-Xen-branch/vm/vm_object.c", line 2087 + Kernel Breakpoint trap, eip 0x20020a77 + Stopped at 0x20020a76: int $3 + db> trace + 0x20020a76(2006abc1,20067354,2006708c,827,2e4e5514) + 0x20020ace(20067354,2006708c,827,2001c900,2e3b54f4) + 0x20035ef2(2e4e5514,1000,0,200194c0,2e3b54f4) + 0x2003929f(2e3b4d64,2fc6ff9c,400,0,1) + 0x200577ea(1,15ff998,400,0,1) + 0x20006838(1,15ff998,400,0,1) + >>>>> user space <<<<< + + $ addr2line -i -f -e /boot/gnumach-xen 0x20020a76 0x20020ace 0x20035ef2 0x2003929f 0x200577ea 0x20006838 + Debugger + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/debug.c:105 + Assert + ??:0 + vm_object_enter + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/vm/vm_object.c:2109 + vm_map + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/vm/vm_user.c:326 + syscall_vm_map + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/ipc_mig.c:657 + mach_call_call + /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/i386/i386/locore.S:1083 -- cgit v1.2.3 From e5e784ac7132f0d8d1a164ff1f88bf43db29d2dd Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 28 Jul 2009 15:34:49 +0200 Subject: open_issues/open_posix_test_suite: Further results. --- open_issues/open_posix_test_suite.mdwn | 1014 +++++++++++++++++++++++++++++++- 1 file changed, 1012 insertions(+), 2 deletions(-) (limited to 'open_issues') diff --git a/open_issues/open_posix_test_suite.mdwn b/open_issues/open_posix_test_suite.mdwn index 63aea961..4a2b786c 100644 --- a/open_issues/open_posix_test_suite.mdwn +++ b/open_issues/open_posix_test_suite.mdwn @@ -4741,8 +4741,7 @@ interrupted using `kill [PID]`. Test FAIL conformance/interfaces/mmap/23-1: execution: PASS -Kernel panic [[!tag open_issue_gnumach]] (probably at -conformance/interfaces/mmap/24-1): +Kernel panic [[!tag open_issue_gnumach]] (at conformance/interfaces/mmap/24-1): Assertion `(object == VM_OBJECT_NULL) || (object->ref_count > 0) || ((object->paging_in_progress != 0) && internal)' failed in file "../gnumach-1-branch-Xen-branch/vm/vm_object.c", line 2087 Kernel Breakpoint trap, eip 0x20020a77 @@ -4769,3 +4768,1014 @@ conformance/interfaces/mmap/24-1): /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/ipc_mig.c:657 mach_call_call /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/i386/i386/locore.S:1083 + +Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: + + [...] + conformance/interfaces/mmap/24-2: execution: INTERRUPTED: Output: + conformance/interfaces/mmap/27-1: execution: UNTESTED: Output: + Test Untested: MAP_FIXED defined + conformance/interfaces/mmap/28-1: execution: FAILED: Output: + Test Fail: mmap/28-1.c Got no error at mmap() + conformance/interfaces/mmap/3-1: execution: PASS + conformance/interfaces/mmap/31-1: execution: FAILED: Output: + Test FAIL: expect EOVERFLOW but get other error: Cannot allocate memory + off: fffff000, len: fffff000 + conformance/interfaces/mmap/5-1: execution: PASS + conformance/interfaces/mmap/6-1: execution: PASS + conformance/interfaces/mmap/6-2: execution: PASS + conformance/interfaces/mmap/6-3: execution: PASS + conformance/interfaces/mmap/6-4: execution: FAILED: Output: + Test Fail: Did not get EACCES as expected + conformance/interfaces/mmap/6-5: execution: PASS + conformance/interfaces/mmap/6-6: execution: FAILED: Output: + Test Fail: Did not get EACCES as expected + conformance/interfaces/mmap/7-1: execution: UNRESOLVED: Output: + mmap/7-1.c Error at msync(): Error in unknown error system: FFFFFFFF + conformance/interfaces/mmap/7-2: execution: UNRESOLVED: Output: + mmap/7-2.c Error at msync(): Error in unknown error system: FFFFFFFF + conformance/interfaces/mmap/7-3: execution: PASS + conformance/interfaces/mmap/7-4: execution: PASS + conformance/interfaces/mmap/9-1: execution: PASS + conformance/interfaces/mq_close/1-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_close/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_close 2-1: mq_open: Function not implemented + unexpected error: mq_close 2-1: read: EOF + conformance/interfaces/mq_close/3-1: execution: UNRESOLVED: Output: + unexpected error: mq_close 3-1: mq_open: Function not implemented + conformance/interfaces/mq_close/3-2: execution: FAILED: Output: + errno != EBADF on invalid descriptor + Test FAILED + conformance/interfaces/mq_close/3-3: execution: FAILED: Output: + errno != EBADF on invalid descriptor + Test FAILED + conformance/interfaces/mq_close/4-1: execution: UNRESOLVED: Output: + unexpected error: mq_close 4-1: mq_open: Function not implemented + conformance/interfaces/mq_close/5-1: execution: UNTESTED: Output: + Functionality of using mqdes after mq_close() and before + mq_open() will not be tested as POSIX says this is undefined. + conformance/interfaces/mq_getattr/1-1: execution: PASS + conformance/interfaces/mq_getattr/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_getattr 2-1: mq_open(): Function not implemented + conformance/interfaces/mq_getattr/2-2: execution: UNRESOLVED: Output: + unexpected error: mq_getattr 2-2: mq_open(): Function not implemented + conformance/interfaces/mq_getattr/3-1: execution: UNRESOLVED: Output: + unexpected error: mq_getattr 3-1: mq_open(): Function not implemented + conformance/interfaces/mq_getattr/4-1: execution: UNRESOLVED: Output: + unexpected error: mq_getattr 4-1: mq_open(): Function not implemented + conformance/interfaces/mq_getattr/5-1: execution: PASS + conformance/interfaces/mq_getattr/6-1: execution: PASS + conformance/interfaces/mq_getattr/speculative/7-1: execution: UNRESOLVED: Output: + unexpected error: mq_getattr 7-1: mq_open(): Function not implemented + conformance/interfaces/mq_notify/1-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 1-1: mq_open: Function not implemented + conformance/interfaces/mq_notify/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 2-1: mq_open: Function not implemented + conformance/interfaces/mq_notify/3-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 3-1: mq_open: Function not implemented + conformance/interfaces/mq_notify/4-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 4-1: mq_open: Function not implemented + conformance/interfaces/mq_notify/5-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 5-1: mq_open: Function not implemented + conformance/interfaces/mq_notify/6-1: execution: PASS + conformance/interfaces/mq_notify/7-1: execution: PASS + conformance/interfaces/mq_notify/8-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 8-1: mq_open(): Function not implemented + conformance/interfaces/mq_notify/9-1: execution: UNRESOLVED: Output: + unexpected error: mq_notify 9-1: mq_open: Function not implemented + conformance/interfaces/mq_open/1-1: execution: FAILED: Output: + mq_open() did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/10-1: execution: UNTESTED: Output: + Will not test the user ID and group ID of a created + message queue as we would need multiple users and + groups on the system to test. + Will not test the file permissions as testing would + be implementation defined. + conformance/interfaces/mq_open/11-1: execution: FAILED: Output: + mq_open() did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/12-1: execution: FAILED: Output: + mq_open() did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/13-1: execution: FAILED: Output: + mq_open() did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/14-1: execution: UNTESTED: Output: + Will not test calling process privileges on name + as POSIX does not define when this error occurs. + conformance/interfaces/mq_open/15-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/16-1: execution: FAILED: Output: + Test FAILED - mq_open() never succeeded + conformance/interfaces/mq_open/17-1: execution: UNTESTED: Output: + Will not test setting O_EXCL without O_CREAT because + results are undefined. + conformance/interfaces/mq_open/18-1: execution: FAILED: Output: + mq_open() did not return success w/O_NONBLOCK set: Function not implemented + Test FAILED + conformance/interfaces/mq_open/19-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/2-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/20-1: execution: FAILED: Output: + mq_open() did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/21-1: execution: PASS + conformance/interfaces/mq_open/22-1: execution: UNTESTED: Output: + Will not test returning EACCESS when privileges are denied + as POSIX does not define when this error occurs. + conformance/interfaces/mq_open/23-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/24-1: execution: UNTESTED: Output: + Will not test mq_open() being interrupted as it is + not possible to predictably interrupt an mq_open(). + conformance/interfaces/mq_open/25-1: execution: UNTESTED: Output: + Will not test mq_open() failing with EINVAL if mq_open() + is not supported for the name parameter as + unsupported names are implementation defined. + conformance/interfaces/mq_open/25-2: execution: FAILED: Output: + errno != EINVAL for mq_maxmsg 0 + errno != EINVAL for mq_maxmsg -1 + errno != EINVAL for mq_maxmsg -2147483648 + errno != EINVAL for mq_msgsize 0 + errno != EINVAL for mq_msgsize -1 + errno != EINVAL for mq_msgsize -2147483648 + Test FAILED + conformance/interfaces/mq_open/27-2: execution: FAILED: Output: + errno != ENAMETOOLONG + Test FAILED + conformance/interfaces/mq_open/28-1: execution: UNTESTED: Output: + Will not test returning with ENFILE if the system has + too many message queues as this is beyond this + test's domain. + conformance/interfaces/mq_open/29-1: execution: FAILED: Output: + errno != ENOENT + Test FAILED + conformance/interfaces/mq_open/3-1: execution: PASS + conformance/interfaces/mq_open/30-1: execution: UNTESTED: Output: + Will not test mq_open() failing with ENOSPC when there + is not enough space to create the message queue + as system space cannot be controlled from this test. + conformance/interfaces/mq_open/4-1: execution: UNTESTED: Output: + Will not test that {OPEN_MAX} file and message queues can + be opened as we cannot determine at run-time if a given + implementation is implemented with a file descriptor. + conformance/interfaces/mq_open/7-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/7-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/7-3: execution: FAILED: Output: + mq_open() for read-only queue did not return success: Function not implemented + Test FAILED + conformance/interfaces/mq_open/8-1: execution: UNRESOLVED: Output: + mq_open() for write-only queue did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/8-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/9-1: execution: UNRESOLVED: Output: + mq_open() did not return success on read-write queue: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/9-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_open/speculative/2-2: execution: PASS + conformance/interfaces/mq_open/speculative/2-3: execution: PASS + conformance/interfaces/mq_open/speculative/26-1: execution: FAILED: Output: + mq_open() failed before expected + errno != EMFILE on > _POSIX_OPEN_MAX or _POSIX_MQ_OPEN_MAX queues + Test FAILED + conformance/interfaces/mq_open/speculative/6-1: execution: PASS + conformance/interfaces/mq_receive/1-1: execution: FAILED: Output: + unexpected error: mq_receive 1-1: mq_open: Function not implemented + unexpected error: mq_receive 1-1: mq_send: Function not implemented + unexpected error: mq_receive 1-1: mq_send: Function not implemented + unexpected error: mq_receive 1-1: mq_receive: Function not implemented + unexpected error: mq_receive 1-1: mq_receive: Function not implemented + unexpected error: mq_receive 1-1: mq_close: Function not implemented + unexpected error: mq_receive 1-1: mq_unlink: Function not implemented + FAIL: mq_receive didn't receive the highest priority message + FAIL: receive priority 134520252 != send priority 2 + FAIL: mq_receive didn't receive the correct message + FAIL: receive priority 134520252 != send priority 1 + Test FAILED + conformance/interfaces/mq_receive/10-1: execution: FAILED: Output: + unexpected error: mq_receive 10-1: mq_open: Function not implemented + unexpected error: mq_receive 10-1: mq_close: Function not implemented + unexpected error: mq_receive 10-1: mq_unlink: Function not implemented + errno != EAGAIN + Test FAILED + conformance/interfaces/mq_receive/11-1: execution: FAILED: Output: + unexpected error: mq_receive 11-1: mq_open(): Function not implemented + unexpected error: mq_receive 11-1: mq_close(): Function not implemented + unexpected error: mq_receive 11-1: mq_unlink(): Function not implemented + errno != EBADF + Test FAILED + conformance/interfaces/mq_receive/11-2: execution: FAILED: Output: + unexpected error: mq_receive 11-2: mq_open(): Function not implemented + unexpected error: mq_receive 11-2: mq_close: Function not implemented + unexpected error: mq_receive 11-2: mq_unlink(): Function not implemented + errno != EBADF + Test FAILED + conformance/interfaces/mq_receive/12-1: execution: FAILED: Output: + unexpected error: mq_receive 12-1: mq_open: Function not implemented + unexpected error: mq_receive 12-1: mq_send: Function not implemented + unexpected error: mq_receive 12-1: mq_close: Function not implemented + unexpected error: mq_receive 12-1: mq_unlink: Function not implemented + errno != EMSGSIZE + Test FAILED + conformance/interfaces/mq_receive/13-1: execution: UNRESOLVED: Output: + unexpected error: mq_receive 13-1: mq_open: Function not implemented + mq_close() did not return success: Function not implemented + mq_unlink() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_receive/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_receive 2-1: mq_open: Function not implemented + unexpected error: mq_receive 2-1: mq_send: Function not implemented + unexpected error: mq_receive 2-1: mq_close: Function not implemented + unexpected error: mq_receive 2-1: mq_unlink: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_receive/4-1: execution: PASS + conformance/interfaces/mq_receive/5-1: execution: FAILED: Output: + unexpected error: mq_receive 5-1: mq_open: Function not implemented + unexpected error: mq_receive 5-1: mq_send: Function not implemented + unexpected error: mq_receive 5-1: mq_receive: Function not implemented + unexpected error: mq_receive 5-1: mq_close: Function not implemented + unexpected error: mq_receive 5-1: mq_unlink: Function not implemented + Test FAILED + conformance/interfaces/mq_receive/7-1: execution: UNRESOLVED: Output: + unexpected error: mq_receive 7-1: mq_open: Function not implemented + unexpected error: mq_receive 7-1: mq_close: Function not implemented + unexpected error: mq_receive 7-1: mq_unlink: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_receive/8-1: execution: FAILED: Output: + unexpected error: mq_receive 8-1: mq_open: Function not implemented + unexpected error: mq_receive 8-1: mq_send: Function not implemented + unexpected error: mq_receive 8-1: mq_send: Function not implemented + unexpected error: mq_receive 8-1: mq_close: Function not implemented + unexpected error: mq_receive 8-1: mq_unlink: Function not implemented + FAIL: mq_receive didn't return the selected message size correctly + FAIL: mq_receive didn't return the selected message size correctly + Test FAILED + conformance/interfaces/mq_receive/9-1: execution: PASS + conformance/interfaces/mq_send/1-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/10-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/11-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/11-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/12-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/14-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/2-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/3-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/3-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/5-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/5-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/6-1: execution: UNTESTED: Output: + Priority Scheduling needed to make a reliable test case + for this instance. Will not be tested. + conformance/interfaces/mq_send/8-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_send/9-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_setattr/1-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_setattr/1-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_setattr/2-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_setattr/3-1: execution: PASS + conformance/interfaces/mq_setattr/4-1: execution: PASS + conformance/interfaces/mq_setattr/5-1: execution: UNRESOLVED: Output: + unexpected error: mq_setattr 5-1: mq_open(): Function not implemented + conformance/interfaces/mq_timedreceive/1-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 1-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_timedreceive: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_timedreceive: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 1-1: mq_unlink: Function not implemented + FAIL: mq_timedreceive didn't receive the highest priority message + FAIL: receive priority 134520424 != send priority 2 + FAIL: mq_timedreceive didn't receive the correct message + FAIL: receive priority 134520424 != send priority 1 + Test FAILED + conformance/interfaces/mq_timedreceive/10-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 10-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 10-1: mq_send: Function not implemented + FAIL: mq_receive fails unexpectly + : Function not implemented + unexpected error: mq_timedreceive 10-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 10-1: mq_unlink: Function not implemented + Test FAILED + conformance/interfaces/mq_timedreceive/10-2: execution: FAILED: Output: + unexpected error: mq_timedreceive 10-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 10-1: mq_send: Function not implemented + Unexpected error at mq_timedreceive: Function not implemented + unexpected error: mq_timedreceive 10-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 10-1: mq_unlink: Function not implemented + Test FAILED + conformance/interfaces/mq_timedreceive/11-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 11-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 11-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 11-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 11-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 11-1: mq_unlink: Function not implemented + FAIL: mq_timedreceive didn't return the selected message size correctly + FAIL: mq_timedreceive didn't return the selected message size correctly + Test FAILED + conformance/interfaces/mq_timedreceive/12-1: execution: PASS + conformance/interfaces/mq_timedreceive/13-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 13-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 13-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 13-1: mq_unlink: Function not implemented + errno != EAGAIN + Test FAILED + conformance/interfaces/mq_timedreceive/14-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 14-1: mq_open(): Function not implemented + unexpected error: mq_timedreceive 14-1: mq_close(): Function not implemented + unexpected error: mq_timedreceive 14-1: mq_unlink(): Function not implemented + errno != EBADF + Test FAILED + conformance/interfaces/mq_timedreceive/15-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 15-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 15-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 15-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 15-1: mq_unlink: Function not implemented + errno != EMSGSIZE + Test FAILED + conformance/interfaces/mq_timedreceive/16-1: execution: PASS + conformance/interfaces/mq_timedreceive/17-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 17-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 17-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 17-1: mq_unlink: Function not implemented + errno != EINVAL + Test FAILED + conformance/interfaces/mq_timedreceive/17-2: execution: FAILED: Output: + unexpected error: mq_timedreceive 17-2: mq_open: Function not implemented + unexpected error: mq_timedreceive 17-2: mq_close: Function not implemented + unexpected error: mq_timedreceive 17-2: mq_unlink: Function not implemented + errno != EINVAL + Test FAILED + conformance/interfaces/mq_timedreceive/17-3: execution: FAILED: Output: + unexpected error: mq_timedreceive 17-3: mq_open: Function not implemented + unexpected error: mq_timedreceive 17-3: mq_close: Function not implemented + unexpected error: mq_timedreceive 17-3: mq_unlink: Function not implemented + errno != EINVAL + Test FAILED + conformance/interfaces/mq_timedreceive/18-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 18-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 18-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 18-1: mq_unlink: Function not implemented + errno != ETIMEDOUT + Test FAILED + conformance/interfaces/mq_timedreceive/18-2: execution: FAILED: Output: + unexpected error: mq_timedreceive 18-2: mq_open: Function not implemented + unexpected error: mq_timedreceive 18-2: mq_close: Function not implemented + unexpected error: mq_timedreceive 18-2: mq_unlink: Function not implemented + errno != ETIMEDOUT + Test FAILED + conformance/interfaces/mq_timedreceive/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_timedreceive 2-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 2-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 2-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 2-1: mq_unlink: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedreceive/4-1: execution: PASS + conformance/interfaces/mq_timedreceive/5-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 5-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 5-1: mq_send: Function not implemented + unexpected error: mq_timedreceive 5-1: mq_timedreceive: Function not implemented + unexpected error: mq_timedreceive 5-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 5-1: mq_unlink: Function not implemented + mq_timedreceive didn't block on waiting + Test FAILED + conformance/interfaces/mq_timedreceive/5-2: execution: FAILED: Output: + unexpected error: mq_timedreceive 5-2: mq_open: Function not implemented + unexpected error: mq_timedreceive 5-2: mq_close: Function not implemented + unexpected error: mq_timedreceive 5-2: mq_unlink: Function not implemented + FAIL: mq_timedreceive didn't block until timout expires + Test FAILED + conformance/interfaces/mq_timedreceive/5-3: execution: UNRESOLVED: Output: + unexpected error: mq_timedreceive 5-3: mq_open: Function not implemented + mq_close() did not return success: Function not implemented + mq_unlink() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedreceive/7-1: execution: UNRESOLVED: Output: + unexpected error: mq_timedreceive 7-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 7-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 7-1: mq_unlink: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedreceive/8-1: execution: FAILED: Output: + unexpected error: mq_timedreceive 8-1: mq_open: Function not implemented + unexpected error: mq_timedreceive 8-1: mq_close: Function not implemented + unexpected error: mq_timedreceive 8-1: mq_unlink: Function not implemented + Using CLOCK_REALTIME + FAIL: mq_timedreceive didn't block until timout expires + Test FAILED + conformance/interfaces/mq_timedreceive/speculative/10-2: execution: UNRESOLVED: Output: + unexpected error: mq_timedreceive 10-2: mq_open: Function not implemented + unexpected error: mq_timedreceive 10-2: mq_send: Function not implemented + unexpected error: mq_timedreceive 10-2: mq_close: Function not implemented + unexpected error: mq_timedreceive 10-2: mq_unlink: Function not implemented + mq_timedreceive() did fail on invalid abs_time + Test UNRESOLVED + conformance/interfaces/mq_timedsend/1-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/10-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/11-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/11-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/12-1: execution: INTERRUPTED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/14-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/15-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedsend/16-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/17-1: execution: UNTESTED: Output: + Will not test timeout resolution. + conformance/interfaces/mq_timedsend/18-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedsend/19-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedsend/2-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/20-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_timedsend/3-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/3-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/5-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/5-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/5-3: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/6-1: execution: UNTESTED: Output: + Priority Scheduling needed to make a reliable test case + for this instance. Will not be tested. + conformance/interfaces/mq_timedsend/7-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/8-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/9-1: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + conformance/interfaces/mq_timedsend/speculative/18-2: execution: UNRESOLVED: Output: + mq_open() did not return success: Function not implemented + Test UNRESOLVED + conformance/interfaces/mq_unlink/1-1: execution: UNRESOLVED: Output: + unexpected error: mq_unlink 1-1: mq_open: Function not implemented + conformance/interfaces/mq_unlink/2-1: execution: UNRESOLVED: Output: + unexpected error: mq_unlink 2-1: mq_open: Function not implemented + unexpected error: mq_unlink 2-1: read: EOF + conformance/interfaces/mq_unlink/2-2: execution: UNRESOLVED: Output: + unexpected error: mq_unlink 2-2: mq_open: Function not implemented + unexpected error: mq_unlink 2-2: read: EOF + conformance/interfaces/mq_unlink/2-3: execution: UNTESTED: Output: + Difficult to detect whether mq_unlink will block until all the reference have been closed + for this instance. Will not be tested. + conformance/interfaces/mq_unlink/3-1: execution: PASS + conformance/interfaces/mq_unlink/4-1: execution: PASS + conformance/interfaces/mq_unlink/7-1: execution: FAILED: Output: + Test FAILED + conformance/interfaces/mq_unlink/speculative/7-2: execution: FAILED: Output: + Test FAILED, error is Function not implemented + conformance/interfaces/munlock/10-1: execution: UNRESOLVED: Output: + Unexpected error: Operation not permitted + conformance/interfaces/munlock/11-1: execution: UNRESOLVED: Output: + Unexpected error: Operation not permitted + conformance/interfaces/munlock/2-1: execution: PASS + conformance/interfaces/munlock/7-1: execution: UNRESOLVED: Output: + You don't have permission to lock your address space. + Try to rerun this test as root. + conformance/interfaces/munlock/9-1: execution: PASS + conformance/interfaces/munlockall/5-1: execution: PASS + conformance/interfaces/munlockall/6-1: execution: PASS + conformance/interfaces/munmap/1-1: execution: PASS + conformance/interfaces/munmap/1-2: execution: PASS + conformance/interfaces/munmap/10-1: execution: PASS + conformance/interfaces/munmap/2-1: execution: PASS + conformance/interfaces/munmap/3-1: execution: FAILED: Output: + Test FAILED: munmap/3-1.c munmap returns: No such file or directory + conformance/interfaces/munmap/4-1: execution: UNRESOLVED: Output: + munmap/4-1.c Error at msync(): Error in unknown error system: FFFFFFFF + conformance/interfaces/munmap/7-1: execution: PASS + conformance/interfaces/munmap/8-1: execution: FAILED: Output: + Test FAILED: Expect EINVAL but get: (os/kern) successful + conformance/interfaces/munmap/9-1: execution: FAILED: Output: + Test Fail: Expect EINVAL while get No such file or directory + conformance/interfaces/nanosleep/10000-1: execution: INTERRUPTED: Output: + conformance/interfaces/nanosleep/1-1: execution: PASS + conformance/interfaces/nanosleep/1-2: execution: PASS + conformance/interfaces/nanosleep/1-3: execution: PASS + conformance/interfaces/nanosleep/2-1: execution: PASS + conformance/interfaces/nanosleep/3-1: execution: PASS + conformance/interfaces/nanosleep/3-2: execution: PASS + conformance/interfaces/nanosleep/4-1: execution: PASS + conformance/interfaces/nanosleep/5-1: execution: FAILED: Output: + nanosleep() did not return -1 on failure + conformance/interfaces/nanosleep/5-2: execution: FAILED: Output: + In handler + Child did not exit normally. + Test FAILED + conformance/interfaces/nanosleep/6-1: execution: UNRESOLVED: Output: + sleep -1 + nanosleep() did not return -1 on failure + conformance/interfaces/nanosleep/7-1: execution: FAILED: Output: + In handler + nanosleep did not return -1 + Child did not exit normally. + Test FAILED + conformance/interfaces/nanosleep/7-2: execution: FAILED: Output: + In handler + nanosleep() was not interrupted + Child did not exit normally. + Test FAILED + conformance/interfaces/pthread_atfork/1-1: execution: UNRESOLVED: Output: + Error in pthread_atfork + conformance/interfaces/pthread_atfork/1-2: execution: UNRESOLVED: Output: + [11:58:02]Test conformance/interfaces/pthread_atfork/1-2.c unresolved: got 1073741902 (Function not implemented) on line 216 (Failed to register the atfork handlers) + conformance/interfaces/pthread_atfork/2-1: execution: FAILED: Output: + Test FAILED: Expected return value success, instead received 1073741902 + conformance/interfaces/pthread_atfork/2-2: execution: UNRESOLVED: Output: + [11:58:03]Test conformance/interfaces/pthread_atfork/2-2.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers(N,N,N)) + conformance/interfaces/pthread_atfork/3-1: execution: PASS + conformance/interfaces/pthread_atfork/3-2: execution: UNRESOLVED: Output: + [11:58:03]Test conformance/interfaces/pthread_atfork/3-2.c unresolved: got 1073741902 (Function not implemented) on line 213 (Failed to register the atfork handlers) + conformance/interfaces/pthread_atfork/3-3: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_atfork/4-1: execution: UNRESOLVED: Output: + [12:10:53]Test conformance/interfaces/pthread_atfork/4-1.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers) + conformance/interfaces/pthread_attr_destroy/1-1: execution: PASS + conformance/interfaces/pthread_attr_destroy/2-1: execution: PASS + conformance/interfaces/pthread_attr_destroy/3-1: execution: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-1: execution: PASS + conformance/interfaces/pthread_attr_getdetachstate/1-2: execution: PASS + conformance/interfaces/pthread_attr_getdetachstate/2-1: execution: PASS + conformance/interfaces/pthread_attr_getinheritsched/1-1: execution: PASS + conformance/interfaces/pthread_attr_getinheritsched/2-1: execution: PASS + conformance/interfaces/pthread_attr_getschedparam/1-1: execution: UNRESOLVED: Output: + unexpected error: pthread_attr_getschedparam 1-1: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_getschedparam/2-1: execution: PASS + conformance/interfaces/pthread_attr_getschedpolicy/1-1: execution: PASS + conformance/interfaces/pthread_attr_getschedpolicy/2-1: execution: UNRESOLVED: Output: + unexpected error: pthread_attr_getschedpolicy 1-1: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_getschedpolicy/3-1: execution: PASS + conformance/interfaces/pthread_attr_getscope/1-1: execution: PASS + conformance/interfaces/pthread_attr_getscope/2-1: execution: PASS + conformance/interfaces/pthread_attr_getstack/2-1: execution: PASS + conformance/interfaces/pthread_attr_getstacksize/2-1: execution: PASS + conformance/interfaces/pthread_attr_init/1-1: execution: PASS + conformance/interfaces/pthread_attr_init/2-1: execution: PASS + conformance/interfaces/pthread_attr_init/3-1: execution: PASS + conformance/interfaces/pthread_attr_init/4-1: execution: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-1: execution: PASS + conformance/interfaces/pthread_attr_setdetachstate/1-2: execution: PASS + conformance/interfaces/pthread_attr_setdetachstate/2-1: execution: PASS + conformance/interfaces/pthread_attr_setdetachstate/3-1: execution: PASS + conformance/interfaces/pthread_attr_setdetachstate/4-1: execution: PASS + conformance/interfaces/pthread_attr_setinheritsched/1-1: execution: PASS + conformance/interfaces/pthread_attr_setinheritsched/2-1: execution: UNRESOLVED: Output: + unexpected error: pthread_attr_setinheritsched 2-1: pthread_attr_setschedpolicy: (os/kern) successful + conformance/interfaces/pthread_attr_setinheritsched/2-2: execution: UNRESOLVED: Output: + unexpected error: pthread_attr_setinheritsched 2-2: pthread_attr_setschedpolicyconformance/interfaces/pthread_attr_setinheritsched/2-3: execution: UNRESOLVED: Output: + unexpected error: scheduler 4-1: pthread_setschedparam + conformance/interfaces/pthread_attr_setinheritsched/2-4: execution: UNRESOLVED: Output: + unexpected error: scheduler 4-2: pthread_setschedparam + conformance/interfaces/pthread_attr_setinheritsched/3-1: execution: PASS + conformance/interfaces/pthread_attr_setinheritsched/4-1: execution: PASS + conformance/interfaces/pthread_attr_setschedparam/1-1: execution: FAILED: Output: + unexpected error: pthread_attr_setschedparam 1-1: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_setschedparam/1-2: execution: FAILED: Output: + unexpected error: pthread_attr_setschedparam 1-2: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_setschedparam/1-3: execution: UNRESOLVED: Output: + unexpected error: scheduler 3-1: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_setschedparam/1-4: execution: UNRESOLVED: Output: + unexpected error: scheduler 3-2: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_setschedparam/2-1: execution: PASS + conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: execution: FAILED: Output: + unexpected error: pthread_attr_setschedparam 3-1: pthread_attr_setschedpolicy + conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: execution: FAILED: Output: + unexpected error: pthread_attr_setschedpaarm 3-2: pthread_attr_setschedpolicyconformance/interfaces/pthread_attr_setschedpolicy/1-1: execution: FAILED: Output: + Error on pthread_attr_setschedpolicy() rc=1073741942 + conformance/interfaces/pthread_attr_setschedpolicy/3-1: execution: PASS + conformance/interfaces/pthread_attr_setschedpolicy/4-1: execution: PASS + conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: execution: UNRESOLVED: Output: + unexpected error: pthread_attr_setschedpolicy 5-1: pthread_attr_setinheritsched + conformance/interfaces/pthread_attr_setscope/1-1: execution: PASS + conformance/interfaces/pthread_attr_setscope/3-1: execution: PASS + conformance/interfaces/pthread_attr_setscope/4-1: execution: PASS + conformance/interfaces/pthread_attr_setscope/5-1: execution: UNTESTED: Output: + Untested for now, cannot find a unsupported inheritsched value + conformance/interfaces/pthread_attr_setstack/3-1: execution: PASS + conformance/interfaces/pthread_attr_setstack/5-1: execution: PASS + conformance/interfaces/pthread_attr_setstacksize/3-1: execution: PASS + conformance/interfaces/pthread_barrier_destroy/1-1: execution: PASS + conformance/interfaces/pthread_barrier_destroy/2-1: execution: PASS + conformance/interfaces/pthread_barrier_destroy/3-1: execution: PASS + conformance/interfaces/pthread_barrier_init/1-1: execution: PASS + conformance/interfaces/pthread_barrier_init/2-1: execution: PASS + conformance/interfaces/pthread_barrier_init/3-1: execution: PASS + conformance/interfaces/pthread_barrier_init/4-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/1-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/2-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/3-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/3-2: execution: PASS + conformance/interfaces/pthread_barrier_wait/4-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/5-1: execution: PASS + conformance/interfaces/pthread_barrier_wait/6-1: execution: PASS + conformance/interfaces/pthread_barrierattr_destroy/1-1: execution: PASS + conformance/interfaces/pthread_barrierattr_destroy/2-1: execution: PASS + conformance/interfaces/pthread_barrierattr_getpshared/1-1: execution: PASS + conformance/interfaces/pthread_barrierattr_getpshared/2-1: execution: UNRESOLVED: Output: + Error at pthread_barrierattr_setpshared() + conformance/interfaces/pthread_barrierattr_getpshared/3-1: execution: PASS + conformance/interfaces/pthread_barrierattr_init/1-1: execution: PASS + conformance/interfaces/pthread_barrierattr_init/2-1: execution: PASS + conformance/interfaces/pthread_barrierattr_init/3-1: execution: PASS + conformance/interfaces/pthread_barrierattr_setpshared/1-1: execution: FAILED: Output: + Test FAILED: Error at pthread_barrierattr_setpshared() + conformance/interfaces/pthread_barrierattr_setpshared/2-1: execution: PASS + conformance/interfaces/pthread_barrierattr_setpshared/3-1: execution: PASS + conformance/interfaces/pthread_cancel/1-1: execution: PASS + conformance/interfaces/pthread_cancel/1-2: execution: PASS + conformance/interfaces/pthread_cancel/1-3: execution: PASS + conformance/interfaces/pthread_cancel/2-1: execution: PASS + conformance/interfaces/pthread_cancel/2-2: execution: PASS + conformance/interfaces/pthread_cancel/2-3: execution: PASS + conformance/interfaces/pthread_cancel/3-1: execution: UNRESOLVED: Output: + unexpected error: pthread_cancel 3-1: pthread_setschedparam + conformance/interfaces/pthread_cancel/4-1: execution: PASS + conformance/interfaces/pthread_cancel/5-1: execution: PASS + conformance/interfaces/pthread_cancel/5-2: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cleanup_pop/1-1: execution: PASS + conformance/interfaces/pthread_cleanup_pop/1-2: execution: PASS + conformance/interfaces/pthread_cleanup_pop/1-3: execution: PASS + conformance/interfaces/pthread_cleanup_pop/2-1: execution: PASS + conformance/interfaces/pthread_cleanup_push/1-1: execution: PASS + conformance/interfaces/pthread_cleanup_push/1-2: execution: PASS + conformance/interfaces/pthread_cleanup_push/1-3: execution: PASS + conformance/interfaces/pthread_cleanup_push/2-1: execution: PASS + conformance/interfaces/pthread_cond_broadcast/1-1: execution: PASS + conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNRESOLVED: Output: + [12:42:33]Test starting + [12:42:33]System abilities: + [12:42:33] TPS : -1 + [12:42:33] CS : 200112 + [12:42:33] MON : -1 + [12:42:33] MF : 200112 + [12:42:33]Process-shared attributes won't be tested + [12:42:33]Alternative clock won't be tested + [12:42:33]Test conformance/interfaces/pthread_cond_broadcast/1-2.c unresolved: got 1073741846 (Invalid argument) on line 393 ([parent] Failed to set thread stack size) + conformance/interfaces/pthread_cond_broadcast/2-1: execution: PASS + conformance/interfaces/pthread_cond_broadcast/2-2: execution: PASS + conformance/interfaces/pthread_cond_broadcast/2-3: execution: UNRESOLVED: Output: + [12:42:36]Test starting + [12:42:36]System abilities: + [12:42:36] TPS : -1 + [12:42:36] CS : 200112 + [12:42:36] MON : -1 + [12:42:36] MF : 200112 + [12:42:36]Process-shared attributes won't be tested + [12:42:36]Alternative clock won't be tested + [12:42:36]Test conformance/interfaces/pthread_cond_broadcast/2-3.c unresolved: got 1073741846 (Invalid argument) on line 384 ([parent] Failed to set thread stack size) + conformance/interfaces/pthread_cond_broadcast/4-1: execution: PASS + conformance/interfaces/pthread_cond_broadcast/4-2: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cond_destroy/1-1: execution: PASS + conformance/interfaces/pthread_cond_destroy/2-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cond_destroy/3-1: execution: PASS + conformance/interfaces/pthread_cond_destroy/speculative/4-1: execution: PASS + conformance/interfaces/pthread_cond_init/1-1: execution: PASS + conformance/interfaces/pthread_cond_init/1-2: execution: UNTESTED: Output: + File conformance/interfaces/pthread_cond_init/1-2.c cannot test: This test requires unsupported features + conformance/interfaces/pthread_cond_init/1-3: execution: UNTESTED: Output: + File conformance/interfaces/pthread_cond_init/1-3.c cannot test: This test requires unsupported features + conformance/interfaces/pthread_cond_init/2-1: execution: PASS + conformance/interfaces/pthread_cond_init/2-2: execution: UNTESTED: Output: + File conformance/interfaces/pthread_cond_init/2-2.c cannot test: This test requires unsupported features + conformance/interfaces/pthread_cond_init/3-1: execution: PASS + conformance/interfaces/pthread_cond_init/4-1: execution: UNRESOLVED: Output: + Test conformance/interfaces/pthread_cond_init/4-1.c unresolved: got 1073741942 (Not supported) on line 145 (Cond attribute PSHARED failed) + conformance/interfaces/pthread_cond_init/4-2: execution: INTERRUPTED: Output: + Test conformance/interfaces/pthread_cond_init/4-2.c unresolved: got 1073741942 (Not supported) on line 171 (Cond attribute PSHARED failed) + conformance/interfaces/pthread_cond_signal/1-1: execution: PASS + conformance/interfaces/pthread_cond_signal/1-2: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cond_signal/2-1: execution: PASS + conformance/interfaces/pthread_cond_signal/2-2: execution: PASS + conformance/interfaces/pthread_cond_signal/4-1: execution: PASS + conformance/interfaces/pthread_cond_signal/4-2: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cond_timedwait/1-1: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-1: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-2: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-3: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-4: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-5: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-6: execution: PASS + conformance/interfaces/pthread_cond_timedwait/2-7: execution: PASS + conformance/interfaces/pthread_cond_timedwait/3-1: execution: PASS + conformance/interfaces/pthread_cond_timedwait/4-1: execution: PASS + conformance/interfaces/pthread_cond_timedwait/4-2: execution: PASS + conformance/interfaces/pthread_cond_timedwait/4-3: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_cond_wait/1-1: execution: PASS + conformance/interfaces/pthread_cond_wait/2-1: execution: PASS + conformance/interfaces/pthread_cond_wait/2-2: execution: PASS + conformance/interfaces/pthread_cond_wait/2-3: execution: PASS + conformance/interfaces/pthread_cond_wait/3-1: execution: PASS + conformance/interfaces/pthread_cond_wait/4-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_condattr_destroy/1-1: execution: PASS + conformance/interfaces/pthread_condattr_destroy/2-1: execution: PASS + conformance/interfaces/pthread_condattr_destroy/3-1: execution: PASS + conformance/interfaces/pthread_condattr_destroy/4-1: execution: PASS + conformance/interfaces/pthread_condattr_getclock/1-1: execution: PASS + conformance/interfaces/pthread_condattr_getclock/1-2: execution: PASS + conformance/interfaces/pthread_condattr_getclock/2-1: execution: PASS + conformance/interfaces/pthread_condattr_getpshared/1-1: execution: PASS + conformance/interfaces/pthread_condattr_getpshared/1-2: execution: UNRESOLVED: Output: + Error in pthread_condattr_setpshared(), error: 1073741942 + conformance/interfaces/pthread_condattr_getpshared/2-1: execution: PASS + conformance/interfaces/pthread_condattr_getpshared/3-1: execution: PASS + conformance/interfaces/pthread_condattr_init/1-1: execution: PASS + conformance/interfaces/pthread_condattr_init/3-1: execution: PASS + conformance/interfaces/pthread_condattr_setclock/1-1: execution: PASS + conformance/interfaces/pthread_condattr_setclock/1-2: execution: UNSUPPORTED: Output: + UNSUPPORTED: CLOCK_MONOTONIC is unsupported + conformance/interfaces/pthread_condattr_setclock/1-3: execution: UNSUPPORTED: Output: + _POSIX_CPUTIME unsupported + conformance/interfaces/pthread_condattr_setclock/2-1: execution: PASS + conformance/interfaces/pthread_condattr_setpshared/1-1: execution: PASS + conformance/interfaces/pthread_condattr_setpshared/1-2: execution: FAILED: Output: + Test FAILED: Could not set pshared to PTHREAD_PROCESS_SHARED, error: 1073741942 + conformance/interfaces/pthread_condattr_setpshared/2-1: execution: PASS + conformance/interfaces/pthread_create/1-1: execution: PASS + conformance/interfaces/pthread_create/1-2: execution: PASS + conformance/interfaces/pthread_create/1-3: execution: PASS + conformance/interfaces/pthread_create/1-4: execution: UNTESTED: Output: + [13:44:56]System abilities: + [13:44:56] TSA: -1 + [13:44:56] TSS: -1 + [13:44:56] TPS: -1 + [13:44:56] pagesize: 4096 + [13:44:56] min stack size: -1 + [13:44:56]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/1-5: execution: UNTESTED: Output: + [13:44:56]System abilities: + [13:44:56] TSA: -1 + [13:44:56] TSS: -1 + [13:44:56] TPS: -1 + [13:44:56] pagesize: 4096 + [13:44:56] min stack size: -1 + [13:44:56]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/1-6: execution: UNTESTED: Output: + [13:44:57]System abilities: + [13:44:57] TSA: -1 + [13:44:57] TSS: -1 + [13:44:57] TPS: -1 + [13:44:57] pagesize: 4096 + [13:44:57] min stack size: -1 + [13:44:57]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/10-1: execution: PASS + conformance/interfaces/pthread_create/11-1: execution: UNSUPPORTED: Output: + _POSIX_THREAD_CPUTIME not supported + conformance/interfaces/pthread_create/12-1: execution: PASS + conformance/interfaces/pthread_create/14-1: execution: UNTESTED: Output: + [13:45:08]System abilities: + [13:45:08] TSA: -1 + [13:45:08] TSS: -1 + [13:45:08] TPS: -1 + [13:45:08] pagesize: 4096 + [13:45:08] min stack size: -1 + [13:45:08]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/15-1: execution: UNTESTED: Output: + [13:45:09]System abilities: + [13:45:09] TSA: -1 + [13:45:09] TSS: -1 + [13:45:09] TPS: -1 + [13:45:09] pagesize: 4096 + [13:45:09] min stack size: -1 + [13:45:09]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/2-1: execution: PASS + conformance/interfaces/pthread_create/3-1: execution: PASS + conformance/interfaces/pthread_create/3-2: execution: UNTESTED: Output: + [13:45:11]Growing down stack started upon 0x19fffa0 and we are currently down to 0x19fff60 + [13:45:11]Test starting + Stack tests will be executed. + Sched tests won't be executed. + [13:45:11]System abilities: + [13:45:11] TSA: -1 + [13:45:11] TSS: -1 + [13:45:11] TPS: -1 + [13:45:11] pagesize: 4096 + [13:45:11] min stack size: -1 + [13:45:11]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_create/4-1: execution: PASS + conformance/interfaces/pthread_create/5-1: execution: PASS + conformance/interfaces/pthread_create/5-2: execution: PASS + conformance/interfaces/pthread_create/8-1: execution: PASS + conformance/interfaces/pthread_create/8-2: execution: UNTESTED: Output: + [13:45:13]System abilities: + [13:45:13] TSA: -1 + [13:45:13] TSS: -1 + [13:45:13] TPS: -1 + [13:45:13] pagesize: 4096 + [13:45:13] min stack size: -1 + [13:45:13]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_detach/1-1: execution: PASS + conformance/interfaces/pthread_detach/1-2: execution: UNTESTED: Output: + [13:45:13]System abilities: + [13:45:13] TSA: -1 + [13:45:13] TSS: -1 + [13:45:13] TPS: -1 + [13:45:13] pagesize: 4096 + [13:45:13] min stack size: -1 + [13:45:13]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_detach/2-1: execution: PASS + conformance/interfaces/pthread_detach/2-2: execution: UNTESTED: Output: + [13:45:14]System abilities: + [13:45:14] TSA: -1 + [13:45:14] TSS: -1 + [13:45:14] TPS: -1 + [13:45:14] pagesize: 4096 + [13:45:14] min stack size: -1 + [13:45:14]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_detach/3-1: execution: PASS + conformance/interfaces/pthread_detach/4-1: execution: PASS + conformance/interfaces/pthread_detach/4-2: execution: PASS + conformance/interfaces/pthread_detach/4-3: execution: UNTESTED: Output: + [13:45:15]System abilities: + [13:45:16] TSA: -1 + [13:45:16] TSS: -1 + [13:45:16] TPS: -1 + [13:45:16] pagesize: 4096 + [13:45:16] min stack size: -1 + [13:45:16]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_equal/1-1: execution: PASS + conformance/interfaces/pthread_equal/1-2: execution: PASS + conformance/interfaces/pthread_equal/2-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_exit/1-1: execution: PASS + conformance/interfaces/pthread_exit/1-2: execution: UNTESTED: Output: + [15:01:43]System abilities: + [15:01:43] TSA: -1 + [15:01:43] TSS: -1 + [15:01:43] TPS: -1 + [15:01:43] pagesize: 4096 + [15:01:43] min stack size: -1 + [15:01:43]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/2-1: execution: PASS + conformance/interfaces/pthread_exit/2-2: execution: UNTESTED: Output: + [15:01:44]System abilities: + [15:01:44] TSA: -1 + [15:01:44] TSS: -1 + [15:01:44] TPS: -1 + [15:01:44] pagesize: 4096 + [15:01:44] min stack size: -1 + [15:01:44]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/3-1: execution: PASS + conformance/interfaces/pthread_exit/3-2: execution: UNTESTED: Output: + [15:01:45]System abilities: + [15:01:45] TSA: -1 + [15:01:45] TSS: -1 + [15:01:45] TPS: -1 + [15:01:45] pagesize: 4096 + [15:01:45] min stack size: -1 + [15:01:45]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/4-1: execution: UNTESTED: Output: + [15:01:45]System abilities: + [15:01:45] TSA: -1 + [15:01:45] TSS: -1 + [15:01:45] TPS: -1 + [15:01:45] pagesize: 4096 + [15:01:45] min stack size: -1 + [15:01:45]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/5-1: execution: UNTESTED: Output: + [15:01:46]System abilities: + [15:01:46] TSA: -1 + [15:01:46] TSS: -1 + [15:01:46] TPS: -1 + [15:01:46] pagesize: 4096 + [15:01:46] min stack size: -1 + [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/6-1: execution: UNTESTED: Output: + [15:01:46]System abilities: + [15:01:46] TSA: -1 + [15:01:46] TSS: -1 + [15:01:46] TPS: -1 + [15:01:46] pagesize: 4096 + [15:01:46] min stack size: -1 + [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_exit/6-2: execution: UNTESTED: Output: + [15:01:46]System abilities: + [15:01:46] TSA: -1 + [15:01:46] TSS: -1 + [15:01:46] TPS: -1 + [15:01:46] pagesize: 4096 + [15:01:46] min stack size: -1 + [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_getcpuclockid/1-1: execution: PASS + conformance/interfaces/pthread_getcpuclockid/2-1: execution: PASS + conformance/interfaces/pthread_getcpuclockid/speculative/3-1: execution: PASS + conformance/interfaces/pthread_getschedparam/1-1: execution: FAILED: Output: + Error at pthread_getschedparam: rc=1073741902 + conformance/interfaces/pthread_getschedparam/1-2: execution: UNRESOLVED: Output: + Error at pthread_setschedparam: rc=1073741902 + conformance/interfaces/pthread_getschedparam/1-3: execution: UNRESOLVED: Output: + [15:01:49]Test conformance/interfaces/pthread_getschedparam/1-3.c unresolved: got 1073741902 (Function not implemented) on line 223 (Failed to get min priority) + conformance/interfaces/pthread_getschedparam/4-1: execution: UNRESOLVED: Output: + [15:01:49]Test conformance/interfaces/pthread_getschedparam/4-1.c unresolved: got 1073741902 (Function not implemented) on line 200 (Unexpected error returned) + conformance/interfaces/pthread_getspecific/1-1: execution: PASS + conformance/interfaces/pthread_getspecific/3-1: execution: PASS + conformance/interfaces/pthread_join/1-1: execution: PASS + conformance/interfaces/pthread_join/1-2: execution: UNTESTED: Output: + [15:01:54]System abilities: + [15:01:54] TSA: -1 + [15:01:54] TSS: -1 + [15:01:54] TPS: -1 + [15:01:54] pagesize: 4096 + [15:01:54] min stack size: -1 + [15:01:54]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_join/2-1: execution: PASS + conformance/interfaces/pthread_join/3-1: execution: UNRESOLVED: Output: + Error in pthread_testcancel(). Cancel request timed out. + : (os/kern) successful + conformance/interfaces/pthread_join/4-1: execution: UNTESTED: Output: + [15:02:06]System abilities: + [15:02:06] TSA: -1 + [15:02:06] TSS: -1 + [15:02:06] TPS: -1 + [15:02:06] pagesize: 4096 + [15:02:06] min stack size: -1 + [15:02:06]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_join/5-1: execution: PASS + conformance/interfaces/pthread_join/6-2: execution: PASS + conformance/interfaces/pthread_join/6-3: execution: UNTESTED: Output: + [15:02:07]System abilities: + [15:02:07] TSA: -1 + [15:02:07] TSS: -1 + [15:02:07] TPS: -1 + [15:02:07] pagesize: 4096 + [15:02:07] min stack size: -1 + [15:02:07]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size + conformance/interfaces/pthread_join/speculative/6-1: execution: PASS + conformance/interfaces/pthread_key_create/1-1: execution: PASS + conformance/interfaces/pthread_key_create/1-2: execution: PASS + conformance/interfaces/pthread_key_create/2-1: execution: INTERRUPTED: Output: + 2-1.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/hurd/pt-getspecific.c:30: pthread_getspecific: Assertion `key < __pthread_key_count' failed. + conformance/interfaces/pthread_key_create/3-1: execution: PASS + conformance/interfaces/pthread_key_delete/1-1: execution: PASS + conformance/interfaces/pthread_key_delete/1-2: execution: PASS + conformance/interfaces/pthread_key_delete/2-1: execution: PASS + conformance/interfaces/pthread_key_delete/3-1: execution: PASS + conformance/interfaces/pthread_kill/1-1: execution: PASS + conformance/interfaces/pthread_kill/1-2: execution: PASS + conformance/interfaces/pthread_kill/2-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_kill/3-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_kill/6-1: execution: PASS + conformance/interfaces/pthread_kill/7-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_kill/8-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_mutex_destroy/1-1: execution: PASS + conformance/interfaces/pthread_mutex_destroy/2-1: execution: PASS + conformance/interfaces/pthread_mutex_destroy/2-2: execution: PASS + conformance/interfaces/pthread_mutex_destroy/3-1: execution: PASS + conformance/interfaces/pthread_mutex_destroy/5-1: execution: PASS + conformance/interfaces/pthread_mutex_destroy/5-2: execution: PASS + conformance/interfaces/pthread_mutex_destroy/speculative/4-2: execution: PASS + conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED: Output: + Test FAILED: Error obtaining the priority ceiling + conformance/interfaces/pthread_mutex_init/1-1: execution: PASS + conformance/interfaces/pthread_mutex_init/1-2: execution: PASS + conformance/interfaces/pthread_mutex_init/2-1: execution: PASS + conformance/interfaces/pthread_mutex_init/3-1: execution: PASS + conformance/interfaces/pthread_mutex_init/3-2: execution: PASS + conformance/interfaces/pthread_mutex_init/4-1: execution: PASS + +Another system crash: + + (default pager): dropping data_request because of previous paging errors + (default pager): dropping data_request because of previous paging errors + (default pager): dropping data_request because of previous paging errors + (default pager): dropping data_request because of previous paging errors -- cgit v1.2.3 From 615483d5bfeb5ec019b4d465aa09f01b19da409f Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Wed, 29 Jul 2009 10:41:07 +0200 Subject: open_issues/open_posix_test_suite: Finish the test suite run. --- open_issues/open_posix_test_suite.mdwn | 1635 +++++++++++++++++++++++++++++++- 1 file changed, 1634 insertions(+), 1 deletion(-) (limited to 'open_issues') diff --git a/open_issues/open_posix_test_suite.mdwn b/open_issues/open_posix_test_suite.mdwn index 4a2b786c..afb9542a 100644 --- a/open_issues/open_posix_test_suite.mdwn +++ b/open_issues/open_posix_test_suite.mdwn @@ -5773,9 +5773,1642 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/pthread_mutex_init/3-2: execution: PASS conformance/interfaces/pthread_mutex_init/4-1: execution: PASS -Another system crash: +Another system crash, due to conformance/interfaces/pthread_mutex_init/5-1: (default pager): dropping data_request because of previous paging errors (default pager): dropping data_request because of previous paging errors (default pager): dropping data_request because of previous paging errors (default pager): dropping data_request because of previous paging errors + +Disable the panic-causing test (conformance/interfaces/pthread_mutex_init/5-1) +and restart: + + conformance/interfaces/pthread_mutex_init/5-3: execution: PASS + conformance/interfaces/pthread_mutex_init/speculative/5-2: execution: UNTESTED: Output: + Implementation is: + GNU + 0.3 + GNU-Mach 1.3.99/Hurd-0.3 + This implementation is not tested yet + conformance/interfaces/pthread_mutex_lock/1-1: execution: PASS + conformance/interfaces/pthread_mutex_lock/2-1: execution: PASS + conformance/interfaces/pthread_mutex_lock/3-1: execution: PASS + conformance/interfaces/pthread_mutex_lock/4-1: execution: PASS + conformance/interfaces/pthread_mutex_lock/5-1: execution: PASS + conformance/interfaces/pthread_mutex_timedlock/1-1: execution: PASS + conformance/interfaces/pthread_mutex_timedlock/2-1: execution: PASS + conformance/interfaces/pthread_mutex_timedlock/4-1: execution: PASS + conformance/interfaces/pthread_mutex_timedlock/5-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_mutex_timedlock/5-2: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_mutex_timedlock/5-3: execution: PASS + conformance/interfaces/pthread_mutex_trylock/1-1: execution: PASS + conformance/interfaces/pthread_mutex_trylock/1-2: execution: PASS + conformance/interfaces/pthread_mutex_trylock/2-1: execution: PASS + conformance/interfaces/pthread_mutex_trylock/3-1: execution: PASS + conformance/interfaces/pthread_mutex_trylock/4-1: execution: PASS + conformance/interfaces/pthread_mutex_trylock/4-2: execution: PASS + conformance/interfaces/pthread_mutex_trylock/4-3: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_mutex_unlock/1-1: execution: PASS + conformance/interfaces/pthread_mutex_unlock/2-1: execution: PASS + conformance/interfaces/pthread_mutex_unlock/3-1: execution: PASS + conformance/interfaces/pthread_mutex_unlock/5-1: execution: PASS + conformance/interfaces/pthread_mutex_unlock/5-2: execution: PASS + conformance/interfaces/pthread_mutexattr_destroy/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_destroy/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_destroy/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_destroy/4-1: execution: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: execution: UNRESOLVED: Output: + Error obtaining the attribute process-shared + conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: execution: UNRESOLVED: Output: + Error setting prioceiling to -1 + conformance/interfaces/pthread_mutexattr_getprioceiling/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: execution: FAILED: Output: + Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. + conformance/interfaces/pthread_mutexattr_getprotocol/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_getprotocol/1-2: execution: UNRESOLVED: Output: + Error setting protocol to 1 + conformance/interfaces/pthread_mutexattr_getpshared/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_getpshared/1-2: execution: UNRESOLVED: Output: + Error in pthread_mutexattr_setpshared(), error: 1073741942 + conformance/interfaces/pthread_mutexattr_getpshared/1-3: execution: PASS + conformance/interfaces/pthread_mutexattr_getpshared/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_getpshared/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-2: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-3: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-4: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/1-5: execution: PASS + conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: execution: FAILED: Output: + Test FAILED: Incorrect return code. Expected EINVAL, but got: 0 + conformance/interfaces/pthread_mutexattr_init/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_init/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: execution: FAILED: Output: + Test FAILED: Error setting prioceiling to -1 + conformance/interfaces/pthread_mutexattr_setprioceiling/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: execution: FAILED: Output: + Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. + conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: execution: FAILED: Output: + Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. + conformance/interfaces/pthread_mutexattr_setprotocol/1-1: execution: UNRESOLVED: Output: + Error setting protocol to 1 + conformance/interfaces/pthread_mutexattr_setprotocol/2-2: execution: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_setprotocol/3-2: execution: PASS + conformance/interfaces/pthread_mutexattr_setpshared/1-1: execution: FAILED: Output: + Test FAILED: Cannot set pshared attribute to PTHREAD_PROCESS_SHARED. Error code: 1073741942 + conformance/interfaces/pthread_mutexattr_setpshared/1-2: execution: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_setpshared/2-2: execution: FAILED: Output: + Test FAILED: Expected return code 0, got: 1073741942 + conformance/interfaces/pthread_mutexattr_setpshared/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_setpshared/3-2: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/1-1: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/2-1: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/3-1: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/3-2: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/3-3: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/3-4: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/6-1: execution: PASS + conformance/interfaces/pthread_mutexattr_settype/7-1: execution: PASS + conformance/interfaces/pthread_once/1-1: execution: PASS + conformance/interfaces/pthread_once/1-2: execution: PASS + conformance/interfaces/pthread_once/1-3: execution: PASS + conformance/interfaces/pthread_once/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_destroy/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_destroy/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_destroy/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_init/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_init/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_init/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_init/4-1: execution: PASS + conformance/interfaces/pthread_rwlock_init/6-1: execution: PASS + conformance/interfaces/pthread_rwlock_rdlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_rdlock/2-1: execution: FAILED: Output: + main: has priority: 1 + main: attempt read lock + main: acquired read lock + main: create wr_thread, with priority: 0 + wr_thread: attempt write lock + main: create rd_thread, with priority: -1 + rd_thread: attempt read lock + rd_thread: acquired read lock + rd_thread: unlock read lock + Test FAILED: rd_thread did not block on read lock, when a reader owns the lock, and a higher priority writer is waiting for the lock + conformance/interfaces/pthread_rwlock_rdlock/2-2: execution: FAILED: Output: + main: attempt read lock + main: acquired read lock + main: create wr_thread, with priority: 0 + wr_thread: attempt write lock + main: create rd_thread, with priority: 0 + rd_thread: attempt read lock + rd_thread: acquired read lock + rd_thread: unlock read lock + Test FAILED: rd_thread did not block on read lock, when a reader owns the lock, and an equal priority writer is waiting for the lock + conformance/interfaces/pthread_rwlock_rdlock/2-3: execution: PASS + conformance/interfaces/pthread_rwlock_rdlock/4-1: execution: PASS + conformance/interfaces/pthread_rwlock_rdlock/5-1: execution: PASS + conformance/interfaces/pthread_rwlock_rdlock/6-2: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/4-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/5-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/6-2: execution: PASS + conformance/interfaces/pthread_rwlock_timedrdlock/7-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/4-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/5-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-1: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/6-2: execution: PASS + conformance/interfaces/pthread_rwlock_timedwrlock/7-1: execution: PASS + conformance/interfaces/pthread_rwlock_tryrdlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_tryrdlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_tryrdlock/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_trywrlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_trywrlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: execution: PASS + conformance/interfaces/pthread_rwlock_unlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_unlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_unlock/3-1: execution: FAILED: Output: + main: write lock + main: create writer1, with priority: 1 + writer1: attempt write lock + main: create reader, with priority: 1 + reader: attempt read lock + main: create writer2, with priority: -1 + writer2: attempt write lock + main: release write lock + writer2: acquired writer lock + Test fail: writer did not get write lock, when main release the lock + conformance/interfaces/pthread_rwlock_unlock/4-1: execution: INTERRUPTED: Output: + 4-1.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/generic/pt-rwlock-unlock.c:34: pthread_rwlock_unlock: Assertion `__pthread_spin_trylock (&rwlock->__held) == ((0x10 << 26) | ((16) & 0x3fff))' failed. + conformance/interfaces/pthread_rwlock_unlock/4-2: execution: INTERRUPTED: Output: + 4-2.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/generic/pt-rwlock-unlock.c:34: pthread_rwlock_unlock: Assertion `__pthread_spin_trylock (&rwlock->__held) == ((0x10 << 26) | ((16) & 0x3fff))' failed. + main: attempt read lock + main: acquired read lock + main: create un_thread + un_thread: unlock read lock + conformance/interfaces/pthread_rwlock_wrlock/1-1: execution: PASS + conformance/interfaces/pthread_rwlock_wrlock/2-1: execution: PASS + conformance/interfaces/pthread_rwlock_wrlock/3-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_rwlockattr_destroy/1-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_destroy/2-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_destroy/3-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/1-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/2-1: execution: UNRESOLVED: Output: + Error at pthread_rwlockattr_setpshared() + conformance/interfaces/pthread_rwlockattr_getpshared/4-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_getpshared/5-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_init/1-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_init/2-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_init/3-1: execution: PASS + conformance/interfaces/pthread_rwlockattr_setpshared/1-1: execution: FAILED: Output: + Test FAILED: Error at pthread_rwlockattr_setpshared(), return error: 1073741942 + conformance/interfaces/pthread_rwlockattr_setpshared/2-1: execution: PASS + conformance/interfaces/pthread_self/1-1: execution: PASS + conformance/interfaces/pthread_setcancelstate/1-1: execution: PASS + conformance/interfaces/pthread_setcancelstate/1-2: execution: PASS + conformance/interfaces/pthread_setcancelstate/2-1: execution: PASS + conformance/interfaces/pthread_setcancelstate/3-1: execution: PASS + conformance/interfaces/pthread_setcanceltype/1-1: execution: PASS + conformance/interfaces/pthread_setcanceltype/1-2: execution: PASS + conformance/interfaces/pthread_setcanceltype/2-1: execution: PASS + conformance/interfaces/pthread_setschedparam/1-1: execution: FAILED: Output: + Error at pthread_setschedparam: rc=1073741902 + conformance/interfaces/pthread_setschedparam/1-2: execution: UNTESTED: Output: + [08:51:19]File conformance/interfaces/pthread_setschedparam/1-2.c cannot test: Failed to get min SCHED_RR range + conformance/interfaces/pthread_setschedparam/4-1: execution: UNRESOLVED: Output: + [08:51:20]Test conformance/interfaces/pthread_setschedparam/4-1.c unresolved: got 1073741902 (Function not implemented) on line 132 (Failed to set thread policy -- need to be root?) + conformance/interfaces/pthread_setschedparam/5-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_setschedprio/1-1: execution: UNRESOLVED: Output: + Error at pthread_setschedparam: rc=1073741902 + conformance/interfaces/pthread_setspecific/1-1: execution: PASS + conformance/interfaces/pthread_setspecific/1-2: execution: PASS + conformance/interfaces/pthread_setspecific/3-1: execution: PASS + conformance/interfaces/pthread_sigmask/10-1: execution: FAILED: Output: + FAIL: SIGKILL was added to the signal mask + Test FAILED + conformance/interfaces/pthread_sigmask/12-1: execution: PASS + conformance/interfaces/pthread_sigmask/14-1: execution: PASS + conformance/interfaces/pthread_sigmask/15-1: execution: PASS + conformance/interfaces/pthread_sigmask/16-1: execution: PASS + conformance/interfaces/pthread_sigmask/18-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_sigmask/4-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_sigmask/5-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_sigmask/6-1: execution: HUNG: Output: + conformance/interfaces/pthread_sigmask/7-1: execution: PASS + conformance/interfaces/pthread_sigmask/8-1: execution: PASS + conformance/interfaces/pthread_sigmask/8-2: execution: PASS + conformance/interfaces/pthread_sigmask/8-3: execution: PASS + conformance/interfaces/pthread_sigmask/9-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_spin_destroy/1-1: execution: PASS + conformance/interfaces/pthread_spin_destroy/2-1: execution: PASS + conformance/interfaces/pthread_spin_destroy/3-1: execution: PASS + conformance/interfaces/pthread_spin_init/1-1: execution: PASS + conformance/interfaces/pthread_spin_init/2-1: execution: PASS + conformance/interfaces/pthread_spin_init/2-2: execution: PASS + conformance/interfaces/pthread_spin_init/3-1: execution: PASS + conformance/interfaces/pthread_spin_init/4-1: execution: PASS + conformance/interfaces/pthread_spin_lock/1-1: execution: INTERRUPTED: Output: + conformance/interfaces/pthread_spin_lock/1-2: execution: PASS + conformance/interfaces/pthread_spin_lock/2-1: execution: PASS + conformance/interfaces/pthread_spin_lock/3-1: execution: PASS + conformance/interfaces/pthread_spin_lock/3-2: execution: PASS + conformance/interfaces/pthread_spin_trylock/1-1: execution: PASS + conformance/interfaces/pthread_spin_trylock/2-1: execution: PASS + conformance/interfaces/pthread_spin_trylock/3-1: execution: PASS + conformance/interfaces/pthread_spin_trylock/4-1: execution: PASS + conformance/interfaces/pthread_spin_unlock/1-1: execution: PASS + conformance/interfaces/pthread_spin_unlock/1-2: execution: PASS + conformance/interfaces/pthread_spin_unlock/2-1: execution: PASS + conformance/interfaces/pthread_spin_unlock/3-1: execution: PASS + conformance/interfaces/pthread_testcancel/1-1: execution: PASS + conformance/interfaces/pthread_testcancel/2-1: execution: PASS + conformance/interfaces/raise/10000-1: execution: PASS + conformance/interfaces/raise/1-1: execution: PASS + conformance/interfaces/raise/1-2: execution: PASS + conformance/interfaces/raise/2-1: execution: PASS + conformance/interfaces/raise/4-1: execution: PASS + conformance/interfaces/raise/6-1: execution: PASS + conformance/interfaces/raise/7-1: execution: PASS + conformance/interfaces/sched_get_priority_max/1-1: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_max/1-2: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_max/1-3: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_get_priority_max/1-4: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_max/2-1: execution: FAILED: Output: + error is not EINVAL: Function not implemented + conformance/interfaces/sched_get_priority_max/3-1: execution: PASS + conformance/interfaces/sched_get_priority_min/1-1: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_min/1-2: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_min/1-3: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_get_priority_min/1-4: execution: FAILED: Output: + An error occurs: Function not implemented + conformance/interfaces/sched_get_priority_min/2-1: execution: FAILED: Output: + error is not EINVAL: Function not implemented + conformance/interfaces/sched_get_priority_min/3-1: execution: PASS + conformance/interfaces/sched_getparam/1-1: execution: FAILED: Output: + Return code is not zero. + conformance/interfaces/sched_getparam/2-1: execution: FAILED: Output: + Different results between pid == 0 and pid == getpid(). + conformance/interfaces/sched_getparam/3-1: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/sched_getparam/4-1: execution: FAILED: Output: + errno is not ESRCH: Function not implemented + conformance/interfaces/sched_getparam/5-1: execution: PASS + conformance/interfaces/sched_getparam/6-1: execution: UNRESOLVED: Output: + errno is not EPERM: The system allows a non-rootuser to use sched_getparam(): Function not implemented + conformance/interfaces/sched_getparam/speculative/7-1: execution: UNRESOLVED: Output: + sched_getparam() return -1 and sets errno == 1073741902. + conformance/interfaces/sched_getscheduler/1-1: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/sched_getscheduler/2-1: execution: UNTESTED: Output: + Will not test the behavior of sched_getscheduler() when pid is negative + because it is unspecified. + conformance/interfaces/sched_getscheduler/3-1: execution: FAILED: Output: + Returned code is -1. + conformance/interfaces/sched_getscheduler/4-1: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/sched_getscheduler/5-1: execution: PASS + conformance/interfaces/sched_getscheduler/6-1: execution: PASS + conformance/interfaces/sched_getscheduler/7-1: execution: FAILED: Output: + errno is not EPERM: Function not implemented + conformance/interfaces/sched_rr_get_interval/1-1: execution: FAILED: Output: + Unexpected error: Function not implemented + conformance/interfaces/sched_rr_get_interval/2-1: execution: FAILED: Output: + interval.tv_sec not updated. + conformance/interfaces/sched_rr_get_interval/3-1: execution: FAILED: Output: + Returned error is not ESRCH: Function not implemented + conformance/interfaces/sched_rr_get_interval/4-1: execution: PASS + conformance/interfaces/sched_rr_get_interval/speculative/5-1: execution: UNRESOLVED: Output: + sched_rr_get_interval() return -1 and sets errno == 1073741902. + conformance/interfaces/sched_setparam/1-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/10-1: execution: UNRESOLVED: Output: + An error occurs when calling shmget(): Invalid argument + conformance/interfaces/sched_setparam/11-1: execution: PASS + conformance/interfaces/sched_setparam/12-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_setparam/13-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_setparam/14-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_setparam/15-1: execution: UNTESTED: Output: + Will not test the effects of the sched_ss_low_priority, + sched_ss_repl_period, and sched_ss_init_budget members when the scheduling + policy of the target process is not SCHED_FIFO, SCHED_RR, or SCHED_SPORADIC. + It is implementation-defined. + conformance/interfaces/sched_setparam/16-1: execution: UNTESTED: Output: + Will not test the result of sched_setparam when the scheduling policy of the + target process is not SCHED_FIFO, SCHED_RR, or SCHED_SPORADIC. + It is implementation-defined. + conformance/interfaces/sched_setparam/17-1: execution: UNTESTED: Output: + Will not test that sched_setparam have no effect on the scheduling of threads + with system scheduling contention scope. + conformance/interfaces/sched_setparam/18-1: execution: UNTESTED: Output: + Will not test that the threads scheduling policy and associated parameters + are not affected. + conformance/interfaces/sched_setparam/19-1: execution: UNTESTED: Output: + Will not test that the underlying kernel-scheduled entities for the system + contention scope threads are not be affected by this sched_setparam(). + conformance/interfaces/sched_setparam/2-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_setscheduler(): Function not implemented + conformance/interfaces/sched_setparam/2-2: execution: UNRESOLVED: Output: + An error occurs when calling sched_setscheduler(): Function not implemented + conformance/interfaces/sched_setparam/20-1: execution: PASS + conformance/interfaces/sched_setparam/21-1: execution: PASS + conformance/interfaces/sched_setparam/21-2: execution: PASS + conformance/interfaces/sched_setparam/22-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/23-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/23-2: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setparam/23-3: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setparam/23-4: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setparam/23-5: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setparam/23-6: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/23-7: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/24-1: execution: PASS + conformance/interfaces/sched_setparam/25-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getscheduler(): Function not implemented + conformance/interfaces/sched_setparam/25-2: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setparam/26-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/27-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/3-1: execution: UNTESTED: Output: + Will not test the behavior of sched_setparam() when pid is negative because + it is unspecified. + conformance/interfaces/sched_setparam/4-1: execution: PASS + conformance/interfaces/sched_setparam/5-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setparam/6-1: execution: UNTESTED: Output: + Will not test the conditions under which one process has permission to + change the scheduling parameters of another process, because they are + implementation-defined. + conformance/interfaces/sched_setparam/7-1: execution: UNTESTED: Output: + Will not test that implementations may require the requesting process to + have the appropriate privilege to set its own scheduling parameters or those + of another process. + conformance/interfaces/sched_setparam/8-1: execution: UNTESTED: Output: + Will not test that the target process is moved to the tail of the thread + list for its priority when it is running. + conformance/interfaces/sched_setparam/9-1: execution: UNRESOLVED: Output: + An error occurs when calling shmget(): Invalid argument + conformance/interfaces/sched_setscheduler/1-1: execution: UNRESOLVED: Output: + Policy: SCHED_FIFO + Error calling sched_setscheduler() for SCHED_FIFO policy + Policy: SCHED_RR + Error calling sched_setscheduler() for SCHED_RR policy + Policy: SCHED_OTHER + Error calling sched_setscheduler() for SCHED_OTHER policy + conformance/interfaces/sched_setscheduler/10-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_setscheduler/11-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_setscheduler/12-1: execution: UNTESTED: Output: + Will not test that sched_setscheduler have no effect on the scheduling of + threads with system scheduling contention scope. + conformance/interfaces/sched_setscheduler/13-1: execution: UNTESTED: Output: + Will not test that the threads scheduling policy and associated parameters + are not affected. + conformance/interfaces/sched_setscheduler/14-1: execution: UNTESTED: Output: + Will not test that the underlying kernel-scheduled entities for the system + contention scope threads are not be affected by sched_setscheduler(). + conformance/interfaces/sched_setscheduler/15-1: execution: UNSUPPORTED: Output: + Process contention scope threads are not supported. + conformance/interfaces/sched_setscheduler/15-2: execution: PASS + conformance/interfaces/sched_setscheduler/16-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getscheduler(): Function not implemented + conformance/interfaces/sched_setscheduler/17-1: execution: UNRESOLVED: Output: + Policy: SCHED_FIFO + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setscheduler/17-2: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/17-3: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/17-4: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setscheduler/17-6: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setscheduler/17-7: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setscheduler/18-1: execution: PASS + conformance/interfaces/sched_setscheduler/19-1: execution: UNRESOLVED: Output: + Policy: SCHED_FIFO + An error occurs when calling sched_get_priority_max(): Function not implemented + conformance/interfaces/sched_setscheduler/19-2: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/19-3: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/19-4: execution: UNSUPPORTED: Output: + Does not support SS (SPORADIC SERVER) + conformance/interfaces/sched_setscheduler/19-5: execution: FAILED: Output: + Unknow error: Function not implemented + conformance/interfaces/sched_setscheduler/2-1: execution: UNTESTED: Output: + Will not test the behavior of sched_setscheduler() when pid is negative + because it is unspecified. + conformance/interfaces/sched_setscheduler/20-1: execution: FAILED: Output: + errno is not EPERM: Function not implemented + conformance/interfaces/sched_setscheduler/21-1: execution: FAILED: Output: + errno is not ESRCH: Function not implemented + conformance/interfaces/sched_setscheduler/22-1: execution: PASS + conformance/interfaces/sched_setscheduler/22-2: execution: PASS + conformance/interfaces/sched_setscheduler/3-1: execution: PASS + conformance/interfaces/sched_setscheduler/4-1: execution: UNRESOLVED: Output: + An error occurs when calling sched_getparam(): Function not implemented + conformance/interfaces/sched_setscheduler/5-1: execution: UNTESTED: Output: + Will not test the condition under which one process has the appropriate + privilege to change the scheduling parameters of another process because + they are implementation-defined. + conformance/interfaces/sched_setscheduler/6-1: execution: UNTESTED: Output: + Will not test that implementations may require that the requesting process + have permission to set its own scheduling parameters or those of another + process. + conformance/interfaces/sched_setscheduler/7-1: execution: UNTESTED: Output: + Will not test if implementation-defined restrictions apply as to the + appropriate privileges required to set a process' own scheduling policy, or + another process' scheduling policy, to a particular value. + conformance/interfaces/sched_setscheduler/8-1: execution: PASS + conformance/interfaces/sched_setscheduler/9-1: execution: UNTESTED: Output: + Not yet tested. + conformance/interfaces/sched_yield/2-1: execution: PASS + conformance/interfaces/sched_yield/3-1: execution: PASS + conformance/interfaces/sem_close/1-1: execution: INTERRUPTED: Output: + unexpected error: sem_close 1-1: sem_open: Operation not supported + conformance/interfaces/sem_close/2-1: execution: INTERRUPTED: Output: + unexpected error: sem_close 2-1: sem_open: Operation not supported + conformance/interfaces/sem_close/3-1: execution: INTERRUPTED: Output: + unexpected error: sem_close 3-1: sem_open: Operation not supported + conformance/interfaces/sem_close/3-2: execution: UNRESOLVED: Output: + [08:56:54]Test conformance/interfaces/sem_close/3-2.c unresolved: got 1073741869 (Operation not supported) on line 113 (Failed to create the semaphore) + conformance/interfaces/sem_destroy/3-1: execution: PASS + conformance/interfaces/sem_destroy/4-1: execution: PASS + conformance/interfaces/sem_getvalue/1-1: execution: UNRESOLVED: Output: + unexpected error: sem_getvalue 1-1: sem_open: Operation not supported + conformance/interfaces/sem_getvalue/2-1: execution: UNRESOLVED: Output: + unexpected error: sem_getvalue 2-1: sem_open: Operation not supported + conformance/interfaces/sem_getvalue/2-2: execution: PASS + conformance/interfaces/sem_getvalue/4-1: execution: UNRESOLVED: Output: + unexpected error: sem_getvalue 4-1: sem_open: Operation not supported + conformance/interfaces/sem_getvalue/5-1: execution: UNRESOLVED: Output: + unexpected error: sem_getvalue 5-1: sem_open: Operation not supported + conformance/interfaces/sem_init/1-1: execution: PASS + conformance/interfaces/sem_init/2-1: execution: PASS + conformance/interfaces/sem_init/2-2: execution: PASS + conformance/interfaces/sem_init/3-1: execution: PASS + conformance/interfaces/sem_init/3-2: execution: UNRESOLVED: Output: + [08:56:59]Test conformance/interfaces/sem_init/3-2.c unresolved: got 1073741869 (Operation not supported) on line 135 (Failed to init the semaphore) + conformance/interfaces/sem_init/3-3: execution: UNRESOLVED: Output: + [08:57:00]Test conformance/interfaces/sem_init/3-3.c unresolved: got 1073741869 (Operation not supported) on line 134 (Failed to init the semaphore) + conformance/interfaces/sem_init/5-1: execution: PASS + conformance/interfaces/sem_init/5-2: execution: PASS + conformance/interfaces/sem_init/7-1: execution: UNTESTED: Output: + [08:57:01]sysconf( _SC_SEM_NSEMS_MAX ) = -1 + [08:57:01]File conformance/interfaces/sem_init/7-1.c cannot test: There is no constraint on SEM_NSEMS_MAX + conformance/interfaces/sem_open/1-1: execution: FAILED: Output: + TEST FAILED + conformance/interfaces/sem_open/1-2: execution: PASS + conformance/interfaces/sem_open/1-3: execution: UNRESOLVED: Output: + unexpected error: sem_open 1-3: sem_open: Operation not supported + conformance/interfaces/sem_open/1-4: execution: UNRESOLVED: Output: + unexpected error: sem_open 1-4: sem_open: Operation not supported + conformance/interfaces/sem_open/10-1: execution: UNRESOLVED: Output: + unexpected error: sem_open 10-1: sem_open: Operation not supported + conformance/interfaces/sem_open/15-1: execution: UNRESOLVED: Output: + [08:57:03]Test conformance/interfaces/sem_open/15-1.c unresolved: got 1073741869 (Operation not supported) on line 106 (Failed to sem_open) + conformance/interfaces/sem_open/2-1: execution: UNRESOLVED: Output: + unexpected error: sem_open 2-1: sem_open: Operation not supported + conformance/interfaces/sem_open/2-2: execution: UNRESOLVED: Output: + unexpected error: sem_open 2-2: sem_open: Operation not supported + conformance/interfaces/sem_open/3-1: execution: FAILED: Output: + TEST FAILED + conformance/interfaces/sem_open/4-1: execution: FAILED: Output: + TEST FAILED + conformance/interfaces/sem_open/6-1: execution: FAILED: Output: + TEST FAILED + conformance/interfaces/sem_post/1-1: execution: UNRESOLVED: Output: + unexpected error: sem_post 1-1: sem_open: Operation not supported + conformance/interfaces/sem_post/1-2: execution: UNRESOLVED: Output: + unexpected error: sem_post 1-2: sem_open: Operation not supported + conformance/interfaces/sem_post/2-1: execution: UNRESOLVED: Output: + unexpected error: sem_post 2-1: sem_open: Operation not supported + conformance/interfaces/sem_post/4-1: execution: UNRESOLVED: Output: + unexpected error: sem_post 4-1: sem_open: Operation not supported + conformance/interfaces/sem_post/5-1: execution: UNRESOLVED: Output: + unexpected error: sem_post 5-1: sem_open: Operation not supported + conformance/interfaces/sem_post/6-1: execution: UNRESOLVED: Output: + unexpected error: sem_post 6-1: sem_open: Operation not supported + conformance/interfaces/sem_post/8-1: execution: UNTESTED: Output: + _POSIX_PRIORITY_SCHEDULING not defined + conformance/interfaces/sem_timedwait/1-1: execution: PASS + conformance/interfaces/sem_timedwait/10-1: execution: PASS + conformance/interfaces/sem_timedwait/11-1: execution: PASS + conformance/interfaces/sem_timedwait/2-1: execution: PASS + conformance/interfaces/sem_timedwait/2-2: execution: PASS + conformance/interfaces/sem_timedwait/3-1: execution: PASS + conformance/interfaces/sem_timedwait/4-1: execution: PASS + conformance/interfaces/sem_timedwait/6-1: execution: PASS + conformance/interfaces/sem_timedwait/6-2: execution: PASS + conformance/interfaces/sem_timedwait/7-1: execution: PASS + conformance/interfaces/sem_timedwait/9-1: execution: FAILED: Output: + In handler + TEST FAILED: errno != EINTR + conformance/interfaces/sem_unlink/1-1: execution: INTERRUPTED: Output: + unexpected error: sem_unlink 1-1: sem_open: Operation not supported + conformance/interfaces/sem_unlink/2-1: execution: INTERRUPTED: Output: + unexpected error: sem_unlink 2-1: sem_open: Operation not supported + conformance/interfaces/sem_unlink/2-2: execution: UNRESOLVED: Output: + [08:57:23]Test conformance/interfaces/sem_unlink/2-2.c unresolved: got 1073741869 (Operation not supported) on line 158 (Failed to create the semaphore) + conformance/interfaces/sem_unlink/3-1: execution: UNRESOLVED: Output: + [08:57:23]Test conformance/interfaces/sem_unlink/3-1.c unresolved: got 1073741869 (Operation not supported) on line 156 (Failed to create the semaphore) + conformance/interfaces/sem_unlink/4-1: execution: FAILED: Output: + TEST FAILED: semaphore does exist + conformance/interfaces/sem_unlink/4-2: execution: FAILED: Output: + [08:57:24]Error 1073741869: Operation not supported + [08:57:24]Test conformance/interfaces/sem_unlink/4-2.c FAILED: The error was not ENOENT + conformance/interfaces/sem_unlink/5-1: execution: PASS + conformance/interfaces/sem_unlink/6-1: execution: UNRESOLVED: Output: + [08:57:25]Test conformance/interfaces/sem_unlink/6-1.c unresolved: got 1073741869 (Operation not supported) on line 107 (Failed to create the semaphore) + conformance/interfaces/sem_unlink/7-1: execution: UNRESOLVED: Output: + [08:57:25]Test conformance/interfaces/sem_unlink/7-1.c unresolved: got 1073741869 (Operation not supported) on line 126 (Failed to create the semaphore) + conformance/interfaces/sem_unlink/9-1: execution: UNRESOLVED: Output: + [08:57:25]Test conformance/interfaces/sem_unlink/9-1.c unresolved: got 1073741869 (Operation not supported) on line 133 (Failed to create the semaphore) + conformance/interfaces/sem_wait/1-1: execution: UNRESOLVED: Output: + unexpected error: sem_wait 1-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/1-2: execution: UNRESOLVED: Output: + unexpected error: sem_wait 2-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/11-1: execution: UNRESOLVED: Output: + unexpected error: sem_trywait 11-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/12-1: execution: INTERRUPTED: Output: + unexpected error: sem_trywait 12-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/13-1: execution: PASS + conformance/interfaces/sem_wait/3-1: execution: UNRESOLVED: Output: + unexpected error: sem_wait 3-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/5-1: execution: INTERRUPTED: Output: + unexpected errno: sem_trywait 5-1: sem_open: Operation not supported + conformance/interfaces/sem_wait/7-1: execution: UNRESOLVED: Output: + unexpected error: sem_wait 7-1: sem_open: Operation not supported + conformance/interfaces/shm_open/1-1: execution: INTERRUPTED: Output: + conformance/interfaces/shm_open/10-1: execution: UNTESTED: Output: + Will not test whether the file offset is set because it is unspecified. + conformance/interfaces/shm_open/11-1: execution: PASS + conformance/interfaces/shm_open/12-1: execution: UNTESTED: Output: + Will not test the behavior of implementation when an application does not + specify exactly one of two values: O_RDONLY and O_RDWR. + conformance/interfaces/shm_open/13-1: execution: PASS + conformance/interfaces/shm_open/13-2: execution: PASS + conformance/interfaces/shm_open/14-1: execution: PASS + conformance/interfaces/shm_open/14-2: execution: INTERRUPTED: Output: + conformance/interfaces/shm_open/15-1: execution: PASS + conformance/interfaces/shm_open/16-1: execution: PASS + conformance/interfaces/shm_open/17-1: execution: PASS + conformance/interfaces/shm_open/18-1: execution: PASS + conformance/interfaces/shm_open/19-1: execution: UNTESTED: Output: + Will not test the effect of calling shm_open() when the shared memory object + does not exists, the O_CREAT flags is set, and bits in mode other than the + file permission bits are set. It is unspecified. + conformance/interfaces/shm_open/2-1: execution: UNTESTED: Output: + Will not test that the shm_open() function create an open file description + that refers to the shared memory object and a file descriptor that refers to + that open file description.conformance/interfaces/shm_open/20-1: execution: PASS + conformance/interfaces/shm_open/20-2: execution: PASS + conformance/interfaces/shm_open/20-3: execution: PASS + conformance/interfaces/shm_open/21-1: execution: PASS + conformance/interfaces/shm_open/22-1: execution: PASS + conformance/interfaces/shm_open/23-1: execution: UNRESOLVED: Output: + error at sem_open: Operation not supported + conformance/interfaces/shm_open/24-1: execution: UNTESTED: Output: + Will not test the result of shm_open() when O_EXCL is set and O_CREAT is not + set because it is undefined. + conformance/interfaces/shm_open/25-1: execution: PASS + conformance/interfaces/shm_open/26-1: execution: PASS + conformance/interfaces/shm_open/26-2: execution: UNRESOLVED: Output: + You don't have permission to change your UID. + Try to rerun this test as root. + conformance/interfaces/shm_open/27-1: execution: UNTESTED: Output: + Will not test the result of shm_open() when using O_TRUNC with O_RDONLY. + It is undefined. + conformance/interfaces/shm_open/28-1: execution: INTERRUPTED: Output: + conformance/interfaces/shm_open/28-2: execution: PASS + conformance/interfaces/shm_open/28-3: execution: INTERRUPTED: Output: + conformance/interfaces/shm_open/29-1: execution: UNTESTED: Output: + Will not test whether the name and shared memory object state remain valid + after a system reboot. It is unspecified. + conformance/interfaces/shm_open/3-1: execution: UNTESTED: Output: + Will not test whether the name appears in the file system and is visible to + other functions that take pathnames as arguments because it is unspecified. + conformance/interfaces/shm_open/30-1: execution: PASS + conformance/interfaces/shm_open/31-1: execution: PASS + conformance/interfaces/shm_open/32-1: execution: PASS + conformance/interfaces/shm_open/34-1: execution: PASS + conformance/interfaces/shm_open/35-1: execution: PASS + conformance/interfaces/shm_open/36-1: execution: UNTESTED: Output: + It is very difficult to test that the shm_open() function sets errno = EINTR + when it is interrupted by a signal. + conformance/interfaces/shm_open/37-1: execution: FAILED: Output: + Name: '$# + @ ,~}' + OK: open with success. + Name: 'éêîôçà' + OK: open with success. + Name: '..' + Unexpected error: Is a directory + Name: '/' + OK: errno == EINVAL + Name: '//' + OK: errno == EINVAL + Name: '/abc' + OK: open with success. + Test FAILED + conformance/interfaces/shm_open/38-1: execution: PASS + conformance/interfaces/shm_open/39-1: execution: PASS + conformance/interfaces/shm_open/39-2: execution: UNRESOLVED: Output: + An error occurs when calling pathconf(): Invalid argument + conformance/interfaces/shm_open/4-1: execution: PASS + conformance/interfaces/shm_open/41-1: execution: PASS + conformance/interfaces/shm_open/42-1: execution: UNTESTED: Output: + Will not test that the shm_open() function sets errno to ENOSPC if there is + insufficient space for the creation of the new shared memory object. + conformance/interfaces/shm_open/5-1: execution: FAILED: Output: + Test FAILED + conformance/interfaces/shm_open/6-1: execution: UNTESTED: Output: + Will not test the effect of a name which does not begin with the slash + character because it is implementation-defined. + conformance/interfaces/shm_open/7-1: execution: UNTESTED: Output: + Will not test the interpretation of slash characters other than the leading + slash character in name because it is implementation-defined. + conformance/interfaces/shm_open/8-1: execution: PASS + conformance/interfaces/shm_open/9-1: execution: UNTESTED: Output: + Will not test that the open file description is new. + conformance/interfaces/shm_unlink/1-1: execution: PASS + conformance/interfaces/shm_unlink/10-1: execution: PASS + conformance/interfaces/shm_unlink/10-2: execution: UNRESOLVED: Output: + An error occurs when calling pathconf(): Invalid argument + conformance/interfaces/shm_unlink/11-1: execution: PASS + conformance/interfaces/shm_unlink/2-1: execution: PASS + conformance/interfaces/shm_unlink/3-1: execution: PASS + conformance/interfaces/shm_unlink/4-1: execution: PASS + conformance/interfaces/shm_unlink/5-1: execution: PASS + conformance/interfaces/shm_unlink/6-1: execution: PASS + conformance/interfaces/shm_unlink/7-1: execution: PASS + conformance/interfaces/shm_unlink/8-1: execution: UNRESOLVED: Output: + You don't have permission to change your UID. + Try to rerun this test as root. + conformance/interfaces/shm_unlink/9-1: execution: UNRESOLVED: Output: + You don't have permission to change your UID. + Try to rerun this test as root. + conformance/interfaces/sigaction/4-98: execution: PASS + conformance/interfaces/sigaction/4-37: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/13-3: execution: PASS + conformance/interfaces/sigaction/3-14: execution: PASS + conformance/interfaces/sigaction/2-23: execution: PASS + conformance/interfaces/sigaction/1-11: execution: PASS + conformance/interfaces/sigaction/3-10: execution: PASS + conformance/interfaces/sigaction/8-9: execution: PASS + conformance/interfaces/sigaction/28-18: execution: PASS + conformance/interfaces/sigaction/22-24: execution: PASS + conformance/interfaces/sigaction/4-67: execution: PASS + conformance/interfaces/sigaction/4-93: execution: PASS + conformance/interfaces/sigaction/17-23: execution: FAILED: Output: + Caught SIGURG + Test FAILED + conformance/interfaces/sigaction/12-41: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-100: execution: PASS + conformance/interfaces/sigaction/12-4: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-91: execution: PASS + conformance/interfaces/sigaction/4-28: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/17-26: execution: FAILED: Output: + Caught SIGXFSZ + Test FAILED + conformance/interfaces/sigaction/12-49: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-87: execution: PASS + conformance/interfaces/sigaction/18-5: execution: PASS + conformance/interfaces/sigaction/4-97: execution: PASS + conformance/interfaces/sigaction/1-23: execution: PASS + conformance/interfaces/sigaction/23-10: execution: PASS + conformance/interfaces/sigaction/16-4: execution: PASS + conformance/interfaces/sigaction/4-95: execution: PASS + conformance/interfaces/sigaction/12-8: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-22: execution: PASS + conformance/interfaces/sigaction/13-19: execution: PASS + conformance/interfaces/sigaction/22-10: execution: PASS + conformance/interfaces/sigaction/28-7: execution: PASS + conformance/interfaces/sigaction/18-14: execution: PASS + conformance/interfaces/sigaction/2-6: execution: PASS + conformance/interfaces/sigaction/12-45: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-18: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-42: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/25-1: execution: PASS + conformance/interfaces/sigaction/16-13: execution: PASS + conformance/interfaces/sigaction/2-24: execution: PASS + conformance/interfaces/sigaction/3-18: execution: PASS + conformance/interfaces/sigaction/25-5: execution: PASS + conformance/interfaces/sigaction/28-9: execution: PASS + conformance/interfaces/sigaction/4-3: execution: PASS + conformance/interfaces/sigaction/28-25: execution: PASS + conformance/interfaces/sigaction/12-15: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/22-1: execution: PASS + conformance/interfaces/sigaction/28-3: execution: PASS + conformance/interfaces/sigaction/22-21: execution: PASS + conformance/interfaces/sigaction/16-2: execution: PASS + conformance/interfaces/sigaction/1-17: execution: PASS + conformance/interfaces/sigaction/12-25: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-81: execution: PASS + conformance/interfaces/sigaction/4-18: execution: PASS + conformance/interfaces/sigaction/17-7: execution: FAILED: Output: + Caught SIGHUP + Test FAILED + conformance/interfaces/sigaction/23-3: execution: PASS + conformance/interfaces/sigaction/4-48: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/16-22: execution: PASS + conformance/interfaces/sigaction/16-24: execution: PASS + conformance/interfaces/sigaction/1-2: execution: PASS + conformance/interfaces/sigaction/22-20: execution: PASS + conformance/interfaces/sigaction/13-13: execution: PASS + conformance/interfaces/sigaction/23-5: execution: PASS + conformance/interfaces/sigaction/16-10: execution: PASS + conformance/interfaces/sigaction/12-23: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-99: execution: PASS + conformance/interfaces/sigaction/16-20: execution: PASS + conformance/interfaces/sigaction/13-14: execution: PASS + conformance/interfaces/sigaction/4-34: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/8-12: execution: PASS + conformance/interfaces/sigaction/4-74: execution: PASS + conformance/interfaces/sigaction/13-15: execution: PASS + conformance/interfaces/sigaction/18-18: execution: PASS + conformance/interfaces/sigaction/18-4: execution: PASS + conformance/interfaces/sigaction/4-54: execution: PASS + conformance/interfaces/sigaction/4-12: execution: PASS + conformance/interfaces/sigaction/4-69: execution: PASS + conformance/interfaces/sigaction/28-16: execution: PASS + conformance/interfaces/sigaction/13-1: execution: PASS + conformance/interfaces/sigaction/4-94: execution: PASS + conformance/interfaces/sigaction/12-24: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/1-21: execution: PASS + conformance/interfaces/sigaction/1-8: execution: PASS + conformance/interfaces/sigaction/3-23: execution: PASS + conformance/interfaces/sigaction/4-55: execution: PASS + conformance/interfaces/sigaction/4-11: execution: PASS + conformance/interfaces/sigaction/22-7: execution: PASS + conformance/interfaces/sigaction/28-21: execution: PASS + conformance/interfaces/sigaction/16-7: execution: PASS + conformance/interfaces/sigaction/28-26: execution: PASS + conformance/interfaces/sigaction/4-62: execution: PASS + conformance/interfaces/sigaction/4-43: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/23-6: execution: PASS + conformance/interfaces/sigaction/28-5: execution: PASS + conformance/interfaces/sigaction/2-10: execution: PASS + conformance/interfaces/sigaction/22-5: execution: PASS + conformance/interfaces/sigaction/8-3: execution: PASS + conformance/interfaces/sigaction/1-24: execution: PASS + conformance/interfaces/sigaction/8-18: execution: PASS + conformance/interfaces/sigaction/4-65: execution: PASS + conformance/interfaces/sigaction/8-1: execution: PASS + conformance/interfaces/sigaction/18-22: execution: PASS + conformance/interfaces/sigaction/13-21: execution: PASS + conformance/interfaces/sigaction/25-19: execution: PASS + conformance/interfaces/sigaction/17-22: execution: FAILED: Output: + Caught SIGTRAP + Test FAILED + conformance/interfaces/sigaction/3-8: execution: PASS + conformance/interfaces/sigaction/1-7: execution: PASS + conformance/interfaces/sigaction/25-14: execution: PASS + conformance/interfaces/sigaction/3-5: execution: PASS + conformance/interfaces/sigaction/3-24: execution: PASS + conformance/interfaces/sigaction/4-101: execution: PASS + conformance/interfaces/sigaction/22-14: execution: PASS + conformance/interfaces/sigaction/25-2: execution: PASS + conformance/interfaces/sigaction/4-82: execution: PASS + conformance/interfaces/sigaction/2-16: execution: PASS + conformance/interfaces/sigaction/4-77: execution: PASS + conformance/interfaces/sigaction/4-16: execution: PASS + conformance/interfaces/sigaction/12-31: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/22-3: execution: PASS + conformance/interfaces/sigaction/2-14: execution: PASS + conformance/interfaces/sigaction/16-5: execution: PASS + conformance/interfaces/sigaction/25-10: execution: PASS + conformance/interfaces/sigaction/12-35: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-46: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/23-1: execution: PASS + conformance/interfaces/sigaction/13-10: execution: PASS + conformance/interfaces/sigaction/4-8: execution: PASS + conformance/interfaces/sigaction/22-12: execution: PASS + conformance/interfaces/sigaction/4-84: execution: PASS + conformance/interfaces/sigaction/2-19: execution: PASS + conformance/interfaces/sigaction/16-26: execution: PASS + conformance/interfaces/sigaction/1-26: execution: PASS + conformance/interfaces/sigaction/8-14: execution: PASS + conformance/interfaces/sigaction/25-24: execution: PASS + conformance/interfaces/sigaction/12-7: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/3-17: execution: PASS + conformance/interfaces/sigaction/16-17: execution: PASS + conformance/interfaces/sigaction/12-34: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-53: execution: PASS + conformance/interfaces/sigaction/18-2: execution: PASS + conformance/interfaces/sigaction/12-3: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-96: execution: PASS + conformance/interfaces/sigaction/4-52: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-30: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-51: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/13-16: execution: PASS + conformance/interfaces/sigaction/23-7: execution: PASS + conformance/interfaces/sigaction/28-4: execution: PASS + conformance/interfaces/sigaction/1-1: execution: PASS + conformance/interfaces/sigaction/12-13: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/16-6: execution: PASS + conformance/interfaces/sigaction/23-18: execution: PASS + conformance/interfaces/sigaction/4-36: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/17-21: execution: FAILED: Output: + Caught SIGSYS + Test FAILED + conformance/interfaces/sigaction/1-22: execution: PASS + conformance/interfaces/sigaction/4-71: execution: PASS + conformance/interfaces/sigaction/3-9: execution: PASS + conformance/interfaces/sigaction/4-80: execution: PASS + conformance/interfaces/sigaction/28-22: execution: PASS + conformance/interfaces/sigaction/18-19: execution: PASS + conformance/interfaces/sigaction/4-14: execution: PASS + conformance/interfaces/sigaction/3-6: execution: PASS + conformance/interfaces/sigaction/17-11: execution: FAILED: Output: + Caught SIGQUIT + Test FAILED + conformance/interfaces/sigaction/13-26: execution: PASS + conformance/interfaces/sigaction/4-38: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-1: execution: PASS + conformance/interfaces/sigaction/13-18: execution: PASS + conformance/interfaces/sigaction/12-47: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-30: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/1-15: execution: PASS + conformance/interfaces/sigaction/18-25: execution: PASS + conformance/interfaces/sigaction/22-23: execution: PASS + conformance/interfaces/sigaction/25-3: execution: PASS + conformance/interfaces/sigaction/2-25: execution: PASS + conformance/interfaces/sigaction/16-23: execution: PASS + conformance/interfaces/sigaction/22-16: execution: PASS + conformance/interfaces/sigaction/18-6: execution: PASS + conformance/interfaces/sigaction/4-76: execution: PASS + conformance/interfaces/sigaction/16-1: execution: PASS + conformance/interfaces/sigaction/16-21: execution: PASS + conformance/interfaces/sigaction/3-26: execution: PASS + conformance/interfaces/sigaction/12-44: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/25-12: execution: PASS + conformance/interfaces/sigaction/2-7: execution: PASS + conformance/interfaces/sigaction/16-14: execution: PASS + conformance/interfaces/sigaction/4-50: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/12-27: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/13-4: execution: PASS + conformance/interfaces/sigaction/25-26: execution: PASS + conformance/interfaces/sigaction/13-12: execution: PASS + conformance/interfaces/sigaction/12-20: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-104: execution: PASS + conformance/interfaces/sigaction/4-40: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/17-19: execution: FAILED: Output: + Caught SIGPOLL + Test FAILED + conformance/interfaces/sigaction/2-3: execution: PASS + conformance/interfaces/sigaction/12-16: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/16-18: execution: PASS + conformance/interfaces/sigaction/4-5: execution: PASS + conformance/interfaces/sigaction/12-51: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/23-25: execution: PASS + conformance/interfaces/sigaction/18-13: execution: PASS + conformance/interfaces/sigaction/12-21: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-86: execution: PASS + conformance/interfaces/sigaction/4-6: execution: PASS + conformance/interfaces/sigaction/18-10: execution: PASS + conformance/interfaces/sigaction/4-7: execution: PASS + conformance/interfaces/sigaction/4-70: execution: PASS + conformance/interfaces/sigaction/4-64: execution: PASS + conformance/interfaces/sigaction/4-78: execution: PASS + conformance/interfaces/sigaction/4-75: execution: PASS + conformance/interfaces/sigaction/3-2: execution: PASS + conformance/interfaces/sigaction/23-26: execution: PASS + conformance/interfaces/sigaction/28-8: execution: PASS + conformance/interfaces/sigaction/18-15: execution: PASS + conformance/interfaces/sigaction/16-12: execution: PASS + conformance/interfaces/sigaction/22-19: execution: PASS + conformance/interfaces/sigaction/8-20: execution: PASS + conformance/interfaces/sigaction/3-16: execution: PASS + conformance/interfaces/sigaction/18-26: execution: PASS + conformance/interfaces/sigaction/18-24: execution: PASS + conformance/interfaces/sigaction/17-1: execution: FAILED: Output: + Caught SIGABRT + Test FAILED + conformance/interfaces/sigaction/4-90: execution: PASS + conformance/interfaces/sigaction/4-32: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/18-8: execution: PASS + conformance/interfaces/sigaction/4-102: execution: PASS + conformance/interfaces/sigaction/1-16: execution: PASS + conformance/interfaces/sigaction/2-20: execution: PASS + conformance/interfaces/sigaction/4-23: execution: PASS + conformance/interfaces/sigaction/4-92: execution: PASS + conformance/interfaces/sigaction/8-2: execution: PASS + conformance/interfaces/sigaction/22-2: execution: PASS + conformance/interfaces/sigaction/28-20: execution: PASS + conformance/interfaces/sigaction/8-19: execution: PASS + conformance/interfaces/sigaction/4-26: execution: PASS + conformance/interfaces/sigaction/23-19: execution: PASS + conformance/interfaces/sigaction/28-17: execution: PASS + conformance/interfaces/sigaction/17-12: execution: FAILED: Output: + Caught SIGSEGV + Test FAILED + conformance/interfaces/sigaction/2-22: execution: PASS + conformance/interfaces/sigaction/13-9: execution: PASS + conformance/interfaces/sigaction/4-61: execution: PASS + conformance/interfaces/sigaction/22-4: execution: PASS + conformance/interfaces/sigaction/4-63: execution: PASS + conformance/interfaces/sigaction/28-1: execution: PASS + conformance/interfaces/sigaction/22-13: execution: PASS + conformance/interfaces/sigaction/25-22: execution: PASS + conformance/interfaces/sigaction/12-52: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-10: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/3-13: execution: PASS + conformance/interfaces/sigaction/4-103: execution: PASS + conformance/interfaces/sigaction/4-10: execution: PASS + conformance/interfaces/sigaction/12-36: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/3-11: execution: PASS + conformance/interfaces/sigaction/4-2: execution: PASS + conformance/interfaces/sigaction/13-22: execution: PASS + conformance/interfaces/sigaction/8-6: execution: PASS + conformance/interfaces/sigaction/8-8: execution: PASS + conformance/interfaces/sigaction/25-11: execution: PASS + conformance/interfaces/sigaction/17-9: execution: FAILED: Output: + Caught SIGINT + Test FAILED + conformance/interfaces/sigaction/1-18: execution: PASS + conformance/interfaces/sigaction/23-17: execution: PASS + conformance/interfaces/sigaction/8-25: execution: PASS + conformance/interfaces/sigaction/4-47: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/2-9: execution: PASS + conformance/interfaces/sigaction/12-11: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/25-23: execution: PASS + conformance/interfaces/sigaction/1-4: execution: PASS + conformance/interfaces/sigaction/2-15: execution: PASS + conformance/interfaces/sigaction/28-23: execution: PASS + conformance/interfaces/sigaction/2-11: execution: PASS + conformance/interfaces/sigaction/8-17: execution: PASS + conformance/interfaces/sigaction/16-9: execution: PASS + conformance/interfaces/sigaction/13-20: execution: PASS + conformance/interfaces/sigaction/16-8: execution: PASS + conformance/interfaces/sigaction/8-13: execution: PASS + conformance/interfaces/sigaction/13-17: execution: PASS + conformance/interfaces/sigaction/18-1: execution: PASS + conformance/interfaces/sigaction/3-12: execution: PASS + conformance/interfaces/sigaction/4-60: execution: PASS + conformance/interfaces/sigaction/13-25: execution: PASS + conformance/interfaces/sigaction/2-8: execution: PASS + conformance/interfaces/sigaction/1-19: execution: PASS + conformance/interfaces/sigaction/16-25: execution: PASS + conformance/interfaces/sigaction/23-14: execution: PASS + conformance/interfaces/sigaction/4-88: execution: PASS + conformance/interfaces/sigaction/4-85: execution: PASS + conformance/interfaces/sigaction/28-24: execution: PASS + conformance/interfaces/sigaction/23-24: execution: PASS + conformance/interfaces/sigaction/2-5: execution: PASS + conformance/interfaces/sigaction/23-22: execution: PASS + conformance/interfaces/sigaction/13-7: execution: PASS + conformance/interfaces/sigaction/13-5: execution: PASS + conformance/interfaces/sigaction/23-15: execution: PASS + conformance/interfaces/sigaction/3-22: execution: PASS + conformance/interfaces/sigaction/17-10: execution: FAILED: Output: + Caught SIGPIPE + Test FAILED + conformance/interfaces/sigaction/12-5: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-48: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/25-25: execution: PASS + conformance/interfaces/sigaction/8-10: execution: PASS + conformance/interfaces/sigaction/22-11: execution: PASS + conformance/interfaces/sigaction/1-5: execution: PASS + conformance/interfaces/sigaction/12-19: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-46: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/3-4: execution: PASS + conformance/interfaces/sigaction/4-15: execution: PASS + conformance/interfaces/sigaction/17-17: execution: FAILED: Output: + Caught SIGUSR1 + Test FAILED + conformance/interfaces/sigaction/4-21: execution: PASS + conformance/interfaces/sigaction/12-14: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/3-15: execution: PASS + conformance/interfaces/sigaction/25-15: execution: PASS + conformance/interfaces/sigaction/3-1: execution: PASS + conformance/interfaces/sigaction/17-14: execution: FAILED: Output: + Caught SIGTSTP + Test FAILED + conformance/interfaces/sigaction/4-20: execution: PASS + conformance/interfaces/sigaction/17-18: execution: FAILED: Output: + Caught SIGUSR2 + Test FAILED + conformance/interfaces/sigaction/4-41: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/2-2: execution: PASS + conformance/interfaces/sigaction/12-43: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/12-28: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/17-6: execution: FAILED: Output: + Caught SIGFPE + Test FAILED + conformance/interfaces/sigaction/3-20: execution: PASS + conformance/interfaces/sigaction/13-23: execution: PASS + conformance/interfaces/sigaction/13-8: execution: PASS + conformance/interfaces/sigaction/4-56: execution: PASS + conformance/interfaces/sigaction/23-12: execution: PASS + conformance/interfaces/sigaction/4-45: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/16-15: execution: PASS + conformance/interfaces/sigaction/4-25: execution: PASS + conformance/interfaces/sigaction/4-35: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/16-16: execution: PASS + conformance/interfaces/sigaction/12-6: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-29: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/23-8: execution: PASS + conformance/interfaces/sigaction/18-17: execution: PASS + conformance/interfaces/sigaction/17-16: execution: FAILED: Output: + Caught SIGTTOU + Test FAILED + conformance/interfaces/sigaction/4-39: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-24: execution: PASS + conformance/interfaces/sigaction/25-20: execution: PASS + conformance/interfaces/sigaction/23-16: execution: PASS + conformance/interfaces/sigaction/2-12: execution: PASS + conformance/interfaces/sigaction/8-26: execution: PASS + conformance/interfaces/sigaction/13-11: execution: PASS + conformance/interfaces/sigaction/12-29: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/16-3: execution: PASS + conformance/interfaces/sigaction/18-16: execution: PASS + conformance/interfaces/sigaction/12-9: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/22-9: execution: PASS + conformance/interfaces/sigaction/8-15: execution: PASS + conformance/interfaces/sigaction/17-25: execution: FAILED: Output: + Caught SIGXCPU + Test FAILED + conformance/interfaces/sigaction/1-10: execution: PASS + conformance/interfaces/sigaction/17-4: execution: FAILED: Output: + Caught SIGCHLD + Test FAILED + conformance/interfaces/sigaction/16-11: execution: PASS + conformance/interfaces/sigaction/8-11: execution: PASS + conformance/interfaces/sigaction/2-26: execution: PASS + conformance/interfaces/sigaction/12-22: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-58: execution: PASS + conformance/interfaces/sigaction/17-13: execution: FAILED: Output: + Caught SIGTERM + Test FAILED + conformance/interfaces/sigaction/2-17: execution: PASS + conformance/interfaces/sigaction/2-1: execution: PASS + conformance/interfaces/sigaction/1-13: execution: PASS + conformance/interfaces/sigaction/18-3: execution: PASS + conformance/interfaces/sigaction/13-6: execution: PASS + conformance/interfaces/sigaction/23-9: execution: PASS + conformance/interfaces/sigaction/4-31: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/18-7: execution: PASS + conformance/interfaces/sigaction/4-83: execution: PASS + conformance/interfaces/sigaction/12-38: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-19: execution: PASS + conformance/interfaces/sigaction/12-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/8-16: execution: PASS + conformance/interfaces/sigaction/1-3: execution: PASS + conformance/interfaces/sigaction/25-4: execution: PASS + conformance/interfaces/sigaction/23-2: execution: PASS + conformance/interfaces/sigaction/2-13: execution: PASS + conformance/interfaces/sigaction/25-8: execution: PASS + conformance/interfaces/sigaction/3-25: execution: PASS + conformance/interfaces/sigaction/4-66: execution: PASS + conformance/interfaces/sigaction/12-12: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/18-9: execution: PASS + conformance/interfaces/sigaction/8-7: execution: PASS + conformance/interfaces/sigaction/3-21: execution: PASS + conformance/interfaces/sigaction/28-6: execution: PASS + conformance/interfaces/sigaction/25-18: execution: PASS + conformance/interfaces/sigaction/28-14: execution: PASS + conformance/interfaces/sigaction/4-44: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/22-17: execution: PASS + conformance/interfaces/sigaction/2-18: execution: PASS + conformance/interfaces/sigaction/4-49: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/18-21: execution: PASS + conformance/interfaces/sigaction/18-20: execution: PASS + conformance/interfaces/sigaction/1-14: execution: PASS + conformance/interfaces/sigaction/13-24: execution: PASS + conformance/interfaces/sigaction/25-16: execution: PASS + conformance/interfaces/sigaction/12-40: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/25-13: execution: PASS + conformance/interfaces/sigaction/12-42: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/1-12: execution: PASS + conformance/interfaces/sigaction/23-23: execution: PASS + conformance/interfaces/sigaction/4-68: execution: PASS + conformance/interfaces/sigaction/17-15: execution: FAILED: Output: + Caught SIGTTIN + Test FAILED + conformance/interfaces/sigaction/25-21: execution: PASS + conformance/interfaces/sigaction/25-7: execution: PASS + conformance/interfaces/sigaction/18-11: execution: PASS + conformance/interfaces/sigaction/4-89: execution: PASS + conformance/interfaces/sigaction/13-2: execution: PASS + conformance/interfaces/sigaction/28-19: execution: PASS + conformance/interfaces/sigaction/28-11: execution: PASS + conformance/interfaces/sigaction/4-79: execution: PASS + conformance/interfaces/sigaction/17-3: execution: FAILED: Output: + Caught SIGBUS + Test FAILED + conformance/interfaces/sigaction/18-23: execution: PASS + conformance/interfaces/sigaction/23-11: execution: PASS + conformance/interfaces/sigaction/12-2: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/3-7: execution: PASS + conformance/interfaces/sigaction/17-5: execution: FAILED: Output: + Caught SIGCONT + Test FAILED + conformance/interfaces/sigaction/12-33: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/22-26: execution: PASS + conformance/interfaces/sigaction/8-4: execution: PASS + conformance/interfaces/sigaction/4-17: execution: PASS + conformance/interfaces/sigaction/22-22: execution: PASS + conformance/interfaces/sigaction/2-21: execution: PASS + conformance/interfaces/sigaction/8-22: execution: PASS + conformance/interfaces/sigaction/12-17: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/22-18: execution: PASS + conformance/interfaces/sigaction/17-2: execution: FAILED: Output: + Caught SIGALRM + Test FAILED + conformance/interfaces/sigaction/12-37: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/25-17: execution: PASS + conformance/interfaces/sigaction/4-59: execution: PASS + conformance/interfaces/sigaction/18-12: execution: PASS + conformance/interfaces/sigaction/23-13: execution: PASS + conformance/interfaces/sigaction/17-20: execution: FAILED: Output: + Caught SIGPROF + Test FAILED + conformance/interfaces/sigaction/8-21: execution: PASS + conformance/interfaces/sigaction/8-23: execution: PASS + conformance/interfaces/sigaction/22-15: execution: PASS + conformance/interfaces/sigaction/17-8: execution: FAILED: Output: + Caught SIGILL + Test FAILED + conformance/interfaces/sigaction/4-73: execution: PASS + conformance/interfaces/sigaction/4-33: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-4: execution: PASS + conformance/interfaces/sigaction/4-72: execution: PASS + conformance/interfaces/sigaction/8-5: execution: PASS + conformance/interfaces/sigaction/28-10: execution: PASS + conformance/interfaces/sigaction/12-39: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/4-57: execution: PASS + conformance/interfaces/sigaction/28-12: execution: PASS + conformance/interfaces/sigaction/25-6: execution: PASS + conformance/interfaces/sigaction/22-8: execution: PASS + conformance/interfaces/sigaction/3-3: execution: PASS + conformance/interfaces/sigaction/3-19: execution: PASS + conformance/interfaces/sigaction/1-6: execution: PASS + conformance/interfaces/sigaction/12-50: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/28-15: execution: PASS + conformance/interfaces/sigaction/12-32: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/1-20: execution: PASS + conformance/interfaces/sigaction/4-27: execution: FAILED: Output: + About to stop child + Child has continued + Test FAILED + conformance/interfaces/sigaction/4-13: execution: PASS + conformance/interfaces/sigaction/4-9: execution: PASS + conformance/interfaces/sigaction/23-4: execution: PASS + conformance/interfaces/sigaction/1-9: execution: PASS + conformance/interfaces/sigaction/16-19: execution: PASS + conformance/interfaces/sigaction/22-25: execution: PASS + conformance/interfaces/sigaction/25-9: execution: PASS + conformance/interfaces/sigaction/8-24: execution: PASS + conformance/interfaces/sigaction/1-25: execution: PASS + conformance/interfaces/sigaction/17-24: execution: FAILED: Output: + Caught SIGVTALRM + Test FAILED + conformance/interfaces/sigaction/28-13: execution: PASS + conformance/interfaces/sigaction/22-6: execution: PASS + conformance/interfaces/sigaction/23-20: execution: PASS + conformance/interfaces/sigaction/28-2: execution: PASS + conformance/interfaces/sigaction/2-4: execution: PASS + conformance/interfaces/sigaction/12-26: execution: INTERRUPTED: Output: + conformance/interfaces/sigaction/23-21: execution: PASS + conformance/interfaces/sigaddset/1-1: execution: PASS + conformance/interfaces/sigaddset/1-2: execution: PASS + conformance/interfaces/sigaddset/1-3: execution: PASS + conformance/interfaces/sigaddset/2-1: execution: PASS + conformance/interfaces/sigaddset/4-1: execution: PASS + conformance/interfaces/sigaddset/4-2: execution: PASS + conformance/interfaces/sigaddset/4-3: execution: PASS + conformance/interfaces/sigaddset/4-4: execution: PASS + conformance/interfaces/sigaltstack/1-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigaltstack/10-1: execution: PASS + conformance/interfaces/sigaltstack/11-1: execution: FAILED: Output: + Test FAILED: Expected return value of -1. + conformance/interfaces/sigaltstack/12-1: execution: FAILED: Output: + Test FAILED: Expected return value of -1. + conformance/interfaces/sigaltstack/2-1: execution: FAILED: Output: + Test FAILED: ss_sp of the handler's stack changed even though SS_DISABLE was set + conformance/interfaces/sigaltstack/3-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigaltstack/5-1: execution: PASS + conformance/interfaces/sigaltstack/6-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigaltstack/7-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigaltstack/8-1: execution: PASS + conformance/interfaces/sigaltstack/9-1: execution: PASS + conformance/interfaces/sigdelset/1-1: execution: PASS + conformance/interfaces/sigdelset/1-2: execution: PASS + conformance/interfaces/sigdelset/1-3: execution: PASS + conformance/interfaces/sigdelset/1-4: execution: PASS + conformance/interfaces/sigdelset/2-1: execution: PASS + conformance/interfaces/sigdelset/4-1: execution: PASS + conformance/interfaces/sigdelset/4-2: execution: PASS + conformance/interfaces/sigdelset/4-3: execution: PASS + conformance/interfaces/sigdelset/4-4: execution: PASS + conformance/interfaces/sigemptyset/1-1: execution: PASS + conformance/interfaces/sigemptyset/2-1: execution: PASS + conformance/interfaces/sigfillset/1-1: execution: PASS + conformance/interfaces/sigfillset/2-1: execution: PASS + conformance/interfaces/sighold/1-1: execution: PASS + conformance/interfaces/sighold/2-1: execution: PASS + conformance/interfaces/sighold/3-1: execution: PASS + conformance/interfaces/sighold/3-2: execution: PASS + conformance/interfaces/sighold/3-3: execution: PASS + conformance/interfaces/sighold/3-4: execution: PASS + conformance/interfaces/sigignore/1-1: execution: PASS + conformance/interfaces/sigignore/4-1: execution: PASS + conformance/interfaces/sigignore/5-1: execution: PASS + conformance/interfaces/sigignore/5-2: execution: PASS + conformance/interfaces/sigignore/5-3: execution: PASS + conformance/interfaces/sigignore/5-4: execution: PASS + conformance/interfaces/sigignore/6-1: execution: PASS + conformance/interfaces/sigignore/6-2: execution: PASS + conformance/interfaces/sigismember/3-1: execution: PASS + conformance/interfaces/sigismember/4-1: execution: PASS + conformance/interfaces/sigismember/5-1: execution: PASS + conformance/interfaces/sigismember/5-2: execution: PASS + conformance/interfaces/sigismember/5-3: execution: PASS + conformance/interfaces/sigismember/5-4: execution: PASS + conformance/interfaces/signal/1-1: execution: PASS + conformance/interfaces/signal/2-1: execution: PASS + conformance/interfaces/signal/3-1: execution: PASS + conformance/interfaces/signal/5-1: execution: PASS + conformance/interfaces/signal/6-1: execution: PASS + conformance/interfaces/signal/7-1: execution: PASS + conformance/interfaces/sigpause/1-1: execution: PASS + conformance/interfaces/sigpause/1-2: execution: PASS + conformance/interfaces/sigpause/2-1: execution: INTERRUPTED: Output: + conformance/interfaces/sigpause/3-1: execution: PASS + conformance/interfaces/sigpause/4-1: execution: PASS + conformance/interfaces/sigpending/1-1: execution: PASS + conformance/interfaces/sigpending/1-2: execution: INTERRUPTED: Output: + Not all pending signals found + conformance/interfaces/sigpending/1-3: execution: INTERRUPTED: Output: + Error with send signals + Test FAILED + conformance/interfaces/sigpending/2-1: execution: PASS + conformance/interfaces/sigprocmask/10-1: execution: PASS + conformance/interfaces/sigprocmask/12-1: execution: PASS + conformance/interfaces/sigprocmask/15-1: execution: PASS + conformance/interfaces/sigprocmask/17-1: execution: PASS + conformance/interfaces/sigprocmask/17-2: execution: PASS + conformance/interfaces/sigprocmask/17-3: execution: PASS + conformance/interfaces/sigprocmask/17-4: execution: PASS + conformance/interfaces/sigprocmask/4-1: execution: PASS + conformance/interfaces/sigprocmask/5-1: execution: PASS + conformance/interfaces/sigprocmask/6-1: execution: PASS + conformance/interfaces/sigprocmask/7-1: execution: PASS + conformance/interfaces/sigprocmask/8-1: execution: PASS + conformance/interfaces/sigprocmask/8-2: execution: PASS + conformance/interfaces/sigprocmask/8-3: execution: PASS + conformance/interfaces/sigprocmask/9-1: execution: PASS + conformance/interfaces/sigqueue/10-1: execution: FAILED: Output: + sigqueue() failed on EINVAL but errno not set correctly + conformance/interfaces/sigqueue/11-1: execution: FAILED: Output: + sigqueue() failed on ESRCH but errno not set correctly + conformance/interfaces/sigqueue/12-1: execution: FAILED: Output: + sigqueue() failed but errno not set correctly + conformance/interfaces/sigqueue/2-1: execution: FAILED: Output: + Could not call sigqueue with sig = 0 + conformance/interfaces/sigqueue/2-2: execution: FAILED: Output: + sigqueue() failed on ESRCH but errno not set correctly + At least one test FAILED -- see output for status + conformance/interfaces/sigqueue/3-1: execution: FAILED: Output: + Test FAILED: EPERM error not received + conformance/interfaces/sigrelse/1-1: execution: PASS + conformance/interfaces/sigrelse/2-1: execution: PASS + conformance/interfaces/sigrelse/3-1: execution: PASS + conformance/interfaces/sigrelse/3-2: execution: PASS + conformance/interfaces/sigrelse/3-3: execution: PASS + conformance/interfaces/sigrelse/3-4: execution: PASS + conformance/interfaces/sigset/1-1: execution: PASS + conformance/interfaces/sigset/10-1: execution: PASS + conformance/interfaces/sigset/2-1: execution: PASS + conformance/interfaces/sigset/3-1: execution: PASS + conformance/interfaces/sigset/4-1: execution: PASS + conformance/interfaces/sigset/5-1: execution: PASS + conformance/interfaces/sigset/6-1: execution: UNRESOLVED: Output: + Unexpected error while using sigset(): (os/kern) successful + conformance/interfaces/sigset/7-1: execution: UNRESOLVED: Output: + Unexpected error while using sigset(): (os/kern) successful + conformance/interfaces/sigset/8-1: execution: FAILED: Output: + Test FAILED: sigset() didn't return SIG_HOLD + conformance/interfaces/sigset/9-1: execution: PASS + conformance/interfaces/sigsuspend/1-1: execution: UNRESOLVED: Output: + suspending child + SIGUSR2 called. Inside handler + parent sending child a SIGUSR2 signal + parent sending child a SIGUSR1 signal + Exit status from child is 1 + Test UNRESOLVED: Either sigsuspend did not successfully block SIGUSR2, OR sigsuspend returned before handling the signal SIGUSR1 + conformance/interfaces/sigsuspend/3-1: execution: PASS + conformance/interfaces/sigsuspend/4-1: execution: PASS + conformance/interfaces/sigsuspend/6-1: execution: PASS + conformance/interfaces/sigtimedwait/1-1: execution: FAILED: Output: + Test FAILED: sigtimedwait() did not return in the required time + conformance/interfaces/sigtimedwait/2-1: execution: PASS + conformance/interfaces/sigtimedwait/4-1: execution: FAILED: Output: + Call to sigtimedwait() failed + : Function not implemented + conformance/interfaces/sigtimedwait/5-1: execution: PASS + conformance/interfaces/sigtimedwait/6-1: execution: FAILED: Output: + Test FAILED: sigtimedwait() did set errno to EAGAIN + conformance/interfaces/sigwait/1-1: execution: FAILED: Output: + Signal SIGALRM is not pending! + conformance/interfaces/sigwait/3-1: execution: FAILED: Output: + Test FAILED + conformance/interfaces/sigwait/4-1: execution: PASS + conformance/interfaces/sigwait/6-1: execution: FAILED: Output: + [09:04:10]0 threads were awaken + [09:04:10]Test conformance/interfaces/sigwait/6-1.c FAILED: Unexpected number of threads awaken + conformance/interfaces/sigwait/6-2: execution: PASS + conformance/interfaces/sigwait/8-1: execution: PASS + conformance/interfaces/sigwaitinfo/1-1: execution: UNRESOLVED: Output: + Call to sigwaitinfo() failed + : Function not implemented + conformance/interfaces/sigwaitinfo/3-1: execution: FAILED: Output: + Call to sigwaitinfo() failed + : Function not implemented + Child calling sigwaitinfo() + parent sending child a SIGUSR1 signal + Exit status from child is 2 + Test FAILED + conformance/interfaces/sigwaitinfo/9-1: execution: FAILED: Output: + Call to sigwaitinfo() failed + : Function not implemented + conformance/interfaces/strftime/1-1: execution: PASS + conformance/interfaces/strftime/2-1: execution: INTERRUPTED: Output: + conformance/interfaces/strftime/3-1: execution: PASS + conformance/interfaces/time/1-1: execution: PASS + conformance/interfaces/timer_create/1-1: execution: FAILED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_create/10-1: execution: UNRESOLVED: Output: + sysconf(_SC_CPUTIME) returns: -1 + conformance/interfaces/timer_create/11-1: execution: UNSUPPORTED: Output: + rc = -1 + _POSIX_THREAD_CPUTIME unsupported + conformance/interfaces/timer_create/13-1: execution: PASS + conformance/interfaces/timer_create/14-1: execution: PASS + conformance/interfaces/timer_create/16-1: execution: FAILED: Output: + errno != EINVAL + Test FAILED + conformance/interfaces/timer_create/3-1: execution: FAILED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_create/4-1: execution: PASS + conformance/interfaces/timer_create/6-1: execution: PASS + conformance/interfaces/timer_create/7-1: execution: UNSUPPORTED: Output: + CLOCK_MONOTONIC unsupported + conformance/interfaces/timer_create/8-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_create/9-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_create/speculative/15-1: execution: PASS + conformance/interfaces/timer_create/speculative/2-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_create/speculative/5-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_delete/1-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_delete/1-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_delete/2-1: execution: PASS + conformance/interfaces/timer_delete/3-1: execution: PASS + conformance/interfaces/timer_delete/4-1: execution: PASS + conformance/interfaces/timer_delete/speculative/5-1: execution: FAILED: Output: + timer_delete() returned -1, but didn't set errno!=EINVAL + conformance/interfaces/timer_delete/speculative/5-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/1-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/2-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/2-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/2-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/3-1: execution: UNTESTED: Output: + Cannot be tested as DELAYTIMER_MAX is too large. + DELAYTIMER_MAX is ffffffff + conformance/interfaces/timer_getoverrun/4-1: execution: PASS + conformance/interfaces/timer_getoverrun/5-1: execution: PASS + conformance/interfaces/timer_getoverrun/speculative/6-1: execution: FAILED: Output: + fcn returned -1, but errno!=EINVAL + Test FAILED + conformance/interfaces/timer_getoverrun/speculative/6-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_getoverrun/speculative/6-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/1-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/1-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/1-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/1-4: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/2-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/2-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/3-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/4-1: execution: PASS + conformance/interfaces/timer_gettime/5-1: execution: PASS + conformance/interfaces/timer_gettime/speculative/6-1: execution: FAILED: Output: + fcn returned -1 but errno!=EINVAL + Test FAILED + conformance/interfaces/timer_gettime/speculative/6-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_gettime/speculative/6-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/1-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/1-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/10-1: execution: PASS + conformance/interfaces/timer_settime/11-1: execution: PASS + conformance/interfaces/timer_settime/13-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/2-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/3-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/3-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/3-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/4-1: execution: PASS + conformance/interfaces/timer_settime/5-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/5-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/5-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/6-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/8-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/8-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/8-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/8-4: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/9-1: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/9-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/speculative/12-1: execution: FAILED: Output: + fcn returned -1, but errno!=EINVAL + Test FAILED + conformance/interfaces/timer_settime/speculative/12-2: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + conformance/interfaces/timer_settime/speculative/12-3: execution: UNRESOLVED: Output: + timer_create() did not return success + : Function not implemented + functional/threads/schedule/1-1: execution: UNRESOLVED: Output: + unexpected error: scheduler 5-4: pthread_attr_setschedpolicy + functional/threads/schedule/1-2: execution: UNRESOLVED: Output: + unexpected error: scheduler 5-5: pthread_setschedparam -- cgit v1.2.3 From e0620bb9ec7526bf99f33130f6374fe52c6cf81c Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Thu, 30 Jul 2009 16:34:37 +0200 Subject: open_issues/gdb_signal_thread_bt: New. --- open_issues/gdb_signal_thread_bt.mdwn | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 open_issues/gdb_signal_thread_bt.mdwn (limited to 'open_issues') diff --git a/open_issues/gdb_signal_thread_bt.mdwn b/open_issues/gdb_signal_thread_bt.mdwn new file mode 100644 index 00000000..74065922 --- /dev/null +++ b/open_issues/gdb_signal_thread_bt.mdwn @@ -0,0 +1,31 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!meta title="GDB: bt on the signal thread"]] + +[[!tag open_issue_gdb]] + + (gdb) r + Starting program: /media/data/home/tschwinge/tmp/h + [New Thread 26731.15] + + Breakpoint 1, 0x08048236 in main () + (gdb) info threads + 5 Thread 26731.15 0x080a97fc in mach_msg_trap () + * 4 Thread 26731.14 0x08048236 in main () + (gdb) thread 5 + [Switching to thread 5 (Thread 26731.15)]#0 0x080a97fc in mach_msg_trap () + (gdb) bt + #0 0x080a97fc in mach_msg_trap () + #1 0x080a272e in mach_msg () + #2 0x080a9934 in mach_msg_server_timeout () + #3 0x080a99ff in mach_msg_server () + #4 0x080a327e in _hurd_msgport_receive () + Cannot access memory at address 0x1012000 -- cgit v1.2.3 From 28aac920302bc82460b23efe3b4e40bedd1974b9 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sun, 2 Aug 2009 12:26:28 +0200 Subject: open_issues/open_posix_test_suite: Post-process logfile. --- open_issues/open_posix_test_suite.mdwn | 4714 +------------------------------- 1 file changed, 8 insertions(+), 4706 deletions(-) (limited to 'open_issues') diff --git a/open_issues/open_posix_test_suite.mdwn b/open_issues/open_posix_test_suite.mdwn index afb9542a..50441ae7 100644 --- a/open_issues/open_posix_test_suite.mdwn +++ b/open_issues/open_posix_test_suite.mdwn @@ -14,276 +14,20 @@ Here's a log of a [Open POSIX Test Suite](http://posixtest.sourceforge.net/) run (get sources, `make`, inspect `logfile`); this is from 2009-07-27 HEAD sources on a 2009-07-27 Debian GNU/Hurd system. +The `logfile` has been post-processed with: + + $ sed ↩ + -e '/build: PASS$/d' ↩ + -e '/link: PASS$/d' ↩ + -e '/link: SKIP$/d' ↩ + -e '/execution: PASS$/d' + The tests that failed as *INTERRUPTED* were hanging and have manually been interrupted using `kill [PID]`. - conformance/behavior/WIFEXITED/1-1: build: PASS - conformance/behavior/WIFEXITED/1-1: link: PASS - conformance/behavior/WIFEXITED/1-2: build: PASS - conformance/behavior/WIFEXITED/1-2: link: PASS - conformance/behavior/WIFEXITED/1-3: build: PASS - conformance/behavior/WIFEXITED/1-3: link: PASS - conformance/behavior/timers/1-1: build: PASS - conformance/behavior/timers/1-1: link: PASS - conformance/behavior/timers/2-1: build: PASS - conformance/behavior/timers/2-1: link: PASS - conformance/definitions/aio_h/1-1: build: PASS - conformance/definitions/aio_h/1-1: link: SKIP - conformance/definitions/aio_h/1-2: build: PASS - conformance/definitions/aio_h/1-2: link: SKIP - conformance/definitions/aio_h/2-1: build: PASS - conformance/definitions/aio_h/2-1: link: PASS - conformance/definitions/aio_h/3-1: build: PASS - conformance/definitions/aio_h/3-1: link: SKIP - conformance/definitions/aio_h/4-1: build: PASS - conformance/definitions/aio_h/4-1: link: PASS - conformance/definitions/errno_h/1-1: build: PASS - conformance/definitions/errno_h/1-1: link: SKIP - conformance/definitions/errno_h/2-1: build: PASS - conformance/definitions/errno_h/2-1: link: SKIP - conformance/definitions/errno_h/3-1: build: PASS - conformance/definitions/errno_h/3-1: link: SKIP - conformance/definitions/errno_h/3-2: build: PASS - conformance/definitions/errno_h/3-2: link: PASS - conformance/definitions/errno_h/4-1: build: PASS - conformance/definitions/errno_h/4-1: link: PASS - conformance/definitions/mqueue_h/1-1: build: PASS - conformance/definitions/mqueue_h/1-1: link: PASS - conformance/definitions/mqueue_h/10-1: build: PASS - conformance/definitions/mqueue_h/10-1: link: PASS - conformance/definitions/mqueue_h/11-1: build: PASS - conformance/definitions/mqueue_h/11-1: link: PASS - conformance/definitions/mqueue_h/2-1: build: PASS - conformance/definitions/mqueue_h/2-1: link: PASS - conformance/definitions/mqueue_h/3-1: build: PASS - conformance/definitions/mqueue_h/3-1: link: PASS - conformance/definitions/mqueue_h/4-1: build: PASS - conformance/definitions/mqueue_h/4-1: link: PASS - conformance/definitions/mqueue_h/5-1: build: PASS - conformance/definitions/mqueue_h/5-1: link: PASS - conformance/definitions/mqueue_h/6-1: build: PASS - conformance/definitions/mqueue_h/6-1: link: PASS - conformance/definitions/mqueue_h/7-1: build: PASS - conformance/definitions/mqueue_h/7-1: link: PASS - conformance/definitions/mqueue_h/8-1: build: PASS - conformance/definitions/mqueue_h/8-1: link: PASS - conformance/definitions/mqueue_h/9-1: build: PASS - conformance/definitions/mqueue_h/9-1: link: PASS - conformance/definitions/pthread_h/1-1: build: PASS - conformance/definitions/pthread_h/1-1: link: SKIP - conformance/definitions/pthread_h/11-1: build: PASS - conformance/definitions/pthread_h/11-1: link: SKIP - conformance/definitions/pthread_h/12-1: build: PASS - conformance/definitions/pthread_h/12-1: link: SKIP - conformance/definitions/pthread_h/13-1: build: PASS - conformance/definitions/pthread_h/13-1: link: SKIP - conformance/definitions/pthread_h/14-1: build: PASS - conformance/definitions/pthread_h/14-1: link: SKIP - conformance/definitions/pthread_h/15-1: build: PASS - conformance/definitions/pthread_h/15-1: link: SKIP - conformance/definitions/pthread_h/16-1: build: PASS - conformance/definitions/pthread_h/16-1: link: SKIP - conformance/definitions/pthread_h/17-1: build: PASS - conformance/definitions/pthread_h/17-1: link: SKIP - conformance/definitions/pthread_h/18-1: build: PASS - conformance/definitions/pthread_h/18-1: link: SKIP - conformance/definitions/pthread_h/19-1: build: PASS - conformance/definitions/pthread_h/19-1: link: SKIP - conformance/definitions/pthread_h/2-1: build: PASS - conformance/definitions/pthread_h/2-1: link: SKIP - conformance/definitions/pthread_h/2-2: build: PASS - conformance/definitions/pthread_h/2-2: link: SKIP - conformance/definitions/pthread_h/20-1: build: PASS - conformance/definitions/pthread_h/20-1: link: SKIP - conformance/definitions/pthread_h/3-1: build: PASS - conformance/definitions/pthread_h/3-1: link: SKIP - conformance/definitions/pthread_h/3-10: build: PASS - conformance/definitions/pthread_h/3-10: link: SKIP - conformance/definitions/pthread_h/3-11: build: PASS - conformance/definitions/pthread_h/3-11: link: SKIP - conformance/definitions/pthread_h/3-12: build: PASS - conformance/definitions/pthread_h/3-12: link: SKIP - conformance/definitions/pthread_h/3-13: build: PASS - conformance/definitions/pthread_h/3-13: link: SKIP - conformance/definitions/pthread_h/3-2: build: PASS - conformance/definitions/pthread_h/3-2: link: SKIP - conformance/definitions/pthread_h/3-3: build: PASS - conformance/definitions/pthread_h/3-3: link: SKIP - conformance/definitions/pthread_h/3-4: build: PASS - conformance/definitions/pthread_h/3-4: link: SKIP - conformance/definitions/pthread_h/3-5: build: PASS - conformance/definitions/pthread_h/3-5: link: SKIP - conformance/definitions/pthread_h/3-6: build: PASS - conformance/definitions/pthread_h/3-6: link: SKIP - conformance/definitions/pthread_h/3-7: build: PASS - conformance/definitions/pthread_h/3-7: link: SKIP - conformance/definitions/pthread_h/3-8: build: PASS - conformance/definitions/pthread_h/3-8: link: SKIP - conformance/definitions/pthread_h/3-9: build: PASS - conformance/definitions/pthread_h/3-9: link: SKIP - conformance/definitions/pthread_h/4-1: build: PASS - conformance/definitions/pthread_h/4-1: link: SKIP - conformance/definitions/pthread_h/5-1: build: PASS - conformance/definitions/pthread_h/5-1: link: SKIP - conformance/definitions/pthread_h/6-1: build: PASS - conformance/definitions/pthread_h/6-1: link: SKIP - conformance/definitions/pthread_h/7-1: build: PASS - conformance/definitions/pthread_h/7-1: link: SKIP - conformance/definitions/pthread_h/8-1: build: PASS - conformance/definitions/pthread_h/8-1: link: SKIP - conformance/definitions/pthread_h/9-1: build: PASS - conformance/definitions/pthread_h/9-1: link: SKIP - conformance/definitions/sched_h/1-1: build: PASS - conformance/definitions/sched_h/1-1: link: SKIP - conformance/definitions/sched_h/10-1: build: PASS - conformance/definitions/sched_h/10-1: link: PASS - conformance/definitions/sched_h/11-1: build: PASS - conformance/definitions/sched_h/11-1: link: SKIP - conformance/definitions/sched_h/12-1: build: PASS - conformance/definitions/sched_h/12-1: link: SKIP - conformance/definitions/sched_h/13-1: build: PASS - conformance/definitions/sched_h/13-1: link: SKIP - conformance/definitions/sched_h/14-1: build: PASS - conformance/definitions/sched_h/14-1: link: SKIP - conformance/definitions/sched_h/15-1: build: PASS - conformance/definitions/sched_h/15-1: link: SKIP - conformance/definitions/sched_h/16-1: build: PASS - conformance/definitions/sched_h/16-1: link: SKIP - conformance/definitions/sched_h/17-1: build: PASS - conformance/definitions/sched_h/17-1: link: SKIP - conformance/definitions/sched_h/18-1: build: PASS - conformance/definitions/sched_h/18-1: link: SKIP - conformance/definitions/sched_h/19-1: build: PASS - conformance/definitions/sched_h/19-1: link: SKIP - conformance/definitions/sched_h/2-1: build: PASS - conformance/definitions/sched_h/2-1: link: SKIP - conformance/definitions/sched_h/3-1: build: PASS - conformance/definitions/sched_h/3-1: link: SKIP - conformance/definitions/sched_h/4-1: build: PASS - conformance/definitions/sched_h/4-1: link: SKIP - conformance/definitions/sched_h/8-1: build: PASS - conformance/definitions/sched_h/8-1: link: SKIP - conformance/definitions/sched_h/8-2: build: PASS - conformance/definitions/sched_h/8-2: link: SKIP - conformance/definitions/sched_h/8-3: build: PASS - conformance/definitions/sched_h/8-3: link: SKIP - conformance/definitions/sched_h/8-4: build: PASS - conformance/definitions/sched_h/8-4: link: SKIP - conformance/definitions/signal_h/1-1: build: PASS - conformance/definitions/signal_h/1-1: link: SKIP - conformance/definitions/signal_h/13-1: build: PASS - conformance/definitions/signal_h/13-1: link: PASS - conformance/definitions/signal_h/14-1: build: PASS - conformance/definitions/signal_h/14-1: link: SKIP - conformance/definitions/signal_h/15-1: build: PASS - conformance/definitions/signal_h/15-1: link: SKIP conformance/definitions/signal_h/16-1: build: FAILED: Compiler output: conformance/definitions/signal_h/16-1.c:14: error: ‘SA_SIGINFO’ undeclared here (not in a function) conformance/definitions/signal_h/16-1.c:15: error: ‘SA_NOCLDWAIT’ undeclared here (not in a function) - conformance/definitions/signal_h/17-1: build: PASS - conformance/definitions/signal_h/17-1: link: SKIP - conformance/definitions/signal_h/18-1: build: PASS - conformance/definitions/signal_h/18-1: link: SKIP - conformance/definitions/signal_h/19-1: build: PASS - conformance/definitions/signal_h/19-1: link: SKIP - conformance/definitions/signal_h/2-1: build: PASS - conformance/definitions/signal_h/2-1: link: SKIP - conformance/definitions/signal_h/2-2: build: PASS - conformance/definitions/signal_h/2-2: link: SKIP - conformance/definitions/signal_h/2-3: build: PASS - conformance/definitions/signal_h/2-3: link: SKIP - conformance/definitions/signal_h/2-4: build: PASS - conformance/definitions/signal_h/2-4: link: SKIP - conformance/definitions/signal_h/20-1: build: PASS - conformance/definitions/signal_h/20-1: link: SKIP - conformance/definitions/signal_h/21-1: build: PASS - conformance/definitions/signal_h/21-1: link: SKIP - conformance/definitions/signal_h/22-1: build: PASS - conformance/definitions/signal_h/22-1: link: SKIP - conformance/definitions/signal_h/22-10: build: PASS - conformance/definitions/signal_h/22-10: link: SKIP - conformance/definitions/signal_h/22-11: build: PASS - conformance/definitions/signal_h/22-11: link: SKIP - conformance/definitions/signal_h/22-12: build: PASS - conformance/definitions/signal_h/22-12: link: SKIP - conformance/definitions/signal_h/22-13: build: PASS - conformance/definitions/signal_h/22-13: link: SKIP - conformance/definitions/signal_h/22-14: build: PASS - conformance/definitions/signal_h/22-14: link: SKIP - conformance/definitions/signal_h/22-15: build: PASS - conformance/definitions/signal_h/22-15: link: SKIP - conformance/definitions/signal_h/22-16: build: PASS - conformance/definitions/signal_h/22-16: link: SKIP - conformance/definitions/signal_h/22-17: build: PASS - conformance/definitions/signal_h/22-17: link: SKIP - conformance/definitions/signal_h/22-18: build: PASS - conformance/definitions/signal_h/22-18: link: SKIP - conformance/definitions/signal_h/22-19: build: PASS - conformance/definitions/signal_h/22-19: link: SKIP - conformance/definitions/signal_h/22-2: build: PASS - conformance/definitions/signal_h/22-2: link: SKIP - conformance/definitions/signal_h/22-20: build: PASS - conformance/definitions/signal_h/22-20: link: SKIP - conformance/definitions/signal_h/22-21: build: PASS - conformance/definitions/signal_h/22-21: link: SKIP - conformance/definitions/signal_h/22-22: build: PASS - conformance/definitions/signal_h/22-22: link: SKIP - conformance/definitions/signal_h/22-23: build: PASS - conformance/definitions/signal_h/22-23: link: SKIP - conformance/definitions/signal_h/22-24: build: PASS - conformance/definitions/signal_h/22-24: link: SKIP - conformance/definitions/signal_h/22-25: build: PASS - conformance/definitions/signal_h/22-25: link: SKIP - conformance/definitions/signal_h/22-26: build: PASS - conformance/definitions/signal_h/22-26: link: SKIP - conformance/definitions/signal_h/22-27: build: PASS - conformance/definitions/signal_h/22-27: link: SKIP - conformance/definitions/signal_h/22-28: build: PASS - conformance/definitions/signal_h/22-28: link: SKIP - conformance/definitions/signal_h/22-29: build: PASS - conformance/definitions/signal_h/22-29: link: SKIP - conformance/definitions/signal_h/22-3: build: PASS - conformance/definitions/signal_h/22-3: link: SKIP - conformance/definitions/signal_h/22-30: build: PASS - conformance/definitions/signal_h/22-30: link: SKIP - conformance/definitions/signal_h/22-31: build: PASS - conformance/definitions/signal_h/22-31: link: SKIP - conformance/definitions/signal_h/22-32: build: PASS - conformance/definitions/signal_h/22-32: link: SKIP - conformance/definitions/signal_h/22-33: build: PASS - conformance/definitions/signal_h/22-33: link: SKIP - conformance/definitions/signal_h/22-34: build: PASS - conformance/definitions/signal_h/22-34: link: SKIP - conformance/definitions/signal_h/22-35: build: PASS - conformance/definitions/signal_h/22-35: link: SKIP - conformance/definitions/signal_h/22-36: build: PASS - conformance/definitions/signal_h/22-36: link: SKIP - conformance/definitions/signal_h/22-37: build: PASS - conformance/definitions/signal_h/22-37: link: SKIP - conformance/definitions/signal_h/22-38: build: PASS - conformance/definitions/signal_h/22-38: link: SKIP - conformance/definitions/signal_h/22-39: build: PASS - conformance/definitions/signal_h/22-39: link: SKIP - conformance/definitions/signal_h/22-4: build: PASS - conformance/definitions/signal_h/22-4: link: SKIP - conformance/definitions/signal_h/22-40: build: PASS - conformance/definitions/signal_h/22-40: link: SKIP - conformance/definitions/signal_h/22-5: build: PASS - conformance/definitions/signal_h/22-5: link: SKIP - conformance/definitions/signal_h/22-6: build: PASS - conformance/definitions/signal_h/22-6: link: SKIP - conformance/definitions/signal_h/22-7: build: PASS - conformance/definitions/signal_h/22-7: link: SKIP - conformance/definitions/signal_h/22-8: build: PASS - conformance/definitions/signal_h/22-8: link: SKIP - conformance/definitions/signal_h/22-9: build: PASS - conformance/definitions/signal_h/22-9: link: SKIP - conformance/definitions/signal_h/23-1: build: PASS - conformance/definitions/signal_h/23-1: link: SKIP - conformance/definitions/signal_h/24-1: build: PASS - conformance/definitions/signal_h/24-1: link: SKIP - conformance/definitions/signal_h/25-1: build: PASS - conformance/definitions/signal_h/25-1: link: SKIP conformance/definitions/signal_h/26-1: build: FAILED: Compiler output: conformance/definitions/signal_h/26-1.c:9: error: expected ‘)’ before ‘int’ conformance/definitions/signal_h/26-1.c: In function ‘dummyfcn’: @@ -293,304 +37,12 @@ interrupted using `kill [PID]`. conformance/definitions/signal_h/26-1.c:13: error: expected ‘;’ before ‘dummyvar’ conformance/definitions/signal_h/26-1.c:14: error: ‘dummyvar’ undeclared (first use in this function) conformance/definitions/signal_h/26-1.c:14: error: ‘pthread_kill’ undeclared (first use in this function) - conformance/definitions/signal_h/27-1: build: PASS - conformance/definitions/signal_h/27-1: link: SKIP - conformance/definitions/signal_h/28-1: build: PASS - conformance/definitions/signal_h/28-1: link: SKIP - conformance/definitions/signal_h/29-1: build: PASS - conformance/definitions/signal_h/29-1: link: SKIP - conformance/definitions/signal_h/3-1: build: PASS - conformance/definitions/signal_h/3-1: link: SKIP - conformance/definitions/signal_h/30-1: build: PASS - conformance/definitions/signal_h/30-1: link: SKIP - conformance/definitions/signal_h/31-1: build: PASS - conformance/definitions/signal_h/31-1: link: SKIP - conformance/definitions/signal_h/32-1: build: PASS - conformance/definitions/signal_h/32-1: link: SKIP - conformance/definitions/signal_h/33-1: build: PASS - conformance/definitions/signal_h/33-1: link: SKIP - conformance/definitions/signal_h/34-1: build: PASS - conformance/definitions/signal_h/34-1: link: SKIP - conformance/definitions/signal_h/35-1: build: PASS - conformance/definitions/signal_h/35-1: link: SKIP - conformance/definitions/signal_h/36-1: build: PASS - conformance/definitions/signal_h/36-1: link: SKIP - conformance/definitions/signal_h/37-1: build: PASS - conformance/definitions/signal_h/37-1: link: SKIP - conformance/definitions/signal_h/38-1: build: PASS - conformance/definitions/signal_h/38-1: link: SKIP - conformance/definitions/signal_h/39-1: build: PASS - conformance/definitions/signal_h/39-1: link: SKIP - conformance/definitions/signal_h/4-1: build: PASS - conformance/definitions/signal_h/4-1: link: SKIP - conformance/definitions/signal_h/40-1: build: PASS - conformance/definitions/signal_h/40-1: link: SKIP - conformance/definitions/signal_h/41-1: build: PASS - conformance/definitions/signal_h/41-1: link: SKIP - conformance/definitions/signal_h/42-1: build: PASS - conformance/definitions/signal_h/42-1: link: SKIP - conformance/definitions/signal_h/43-1: build: PASS - conformance/definitions/signal_h/43-1: link: SKIP - conformance/definitions/signal_h/44-1: build: PASS - conformance/definitions/signal_h/44-1: link: SKIP - conformance/definitions/signal_h/45-1: build: PASS - conformance/definitions/signal_h/45-1: link: SKIP - conformance/definitions/signal_h/46-1: build: PASS - conformance/definitions/signal_h/46-1: link: SKIP - conformance/definitions/signal_h/47-1: build: PASS - conformance/definitions/signal_h/47-1: link: SKIP - conformance/definitions/signal_h/48-1: build: PASS - conformance/definitions/signal_h/48-1: link: SKIP - conformance/definitions/signal_h/49-1: build: PASS - conformance/definitions/signal_h/49-1: link: SKIP - conformance/definitions/signal_h/5-1: build: PASS - conformance/definitions/signal_h/5-1: link: SKIP - conformance/definitions/signal_h/50-1: build: PASS - conformance/definitions/signal_h/50-1: link: SKIP - conformance/definitions/sys/mman_h/1-1: build: PASS - conformance/definitions/sys/mman_h/1-1: link: SKIP - conformance/definitions/sys/mman_h/10-1: build: PASS - conformance/definitions/sys/mman_h/10-1: link: SKIP - conformance/definitions/sys/mman_h/11-1: build: PASS - conformance/definitions/sys/mman_h/11-1: link: SKIP - conformance/definitions/sys/mman_h/12-1: build: PASS - conformance/definitions/sys/mman_h/12-1: link: SKIP - conformance/definitions/sys/mman_h/13-1: build: PASS - conformance/definitions/sys/mman_h/13-1: link: SKIP - conformance/definitions/sys/mman_h/14-1: build: PASS - conformance/definitions/sys/mman_h/14-1: link: SKIP - conformance/definitions/sys/mman_h/15-1: build: PASS - conformance/definitions/sys/mman_h/15-1: link: SKIP - conformance/definitions/sys/mman_h/16-1: build: PASS - conformance/definitions/sys/mman_h/16-1: link: SKIP - conformance/definitions/sys/mman_h/17-1: build: PASS - conformance/definitions/sys/mman_h/17-1: link: SKIP - conformance/definitions/sys/mman_h/18-1: build: PASS - conformance/definitions/sys/mman_h/18-1: link: SKIP - conformance/definitions/sys/mman_h/19-1: build: PASS - conformance/definitions/sys/mman_h/19-1: link: SKIP - conformance/definitions/sys/mman_h/2-1: build: PASS - conformance/definitions/sys/mman_h/2-1: link: SKIP - conformance/definitions/sys/mman_h/2-2: build: PASS - conformance/definitions/sys/mman_h/2-2: link: SKIP - conformance/definitions/sys/mman_h/2-3: build: PASS - conformance/definitions/sys/mman_h/2-3: link: SKIP - conformance/definitions/sys/mman_h/2-4: build: PASS - conformance/definitions/sys/mman_h/2-4: link: SKIP - conformance/definitions/sys/mman_h/20-1: build: PASS - conformance/definitions/sys/mman_h/20-1: link: SKIP - conformance/definitions/sys/mman_h/21-1: build: PASS - conformance/definitions/sys/mman_h/21-1: link: SKIP - conformance/definitions/sys/mman_h/22-1: build: PASS - conformance/definitions/sys/mman_h/22-1: link: SKIP - conformance/definitions/sys/mman_h/23-1: build: PASS - conformance/definitions/sys/mman_h/23-1: link: SKIP - conformance/definitions/sys/mman_h/24-1: build: PASS - conformance/definitions/sys/mman_h/24-1: link: SKIP - conformance/definitions/sys/mman_h/3-1: build: PASS - conformance/definitions/sys/mman_h/3-1: link: SKIP - conformance/definitions/sys/mman_h/3-2: build: PASS - conformance/definitions/sys/mman_h/3-2: link: SKIP - conformance/definitions/sys/mman_h/3-3: build: PASS - conformance/definitions/sys/mman_h/3-3: link: SKIP - conformance/definitions/sys/mman_h/4-1: build: PASS - conformance/definitions/sys/mman_h/4-1: link: SKIP - conformance/definitions/sys/mman_h/4-2: build: PASS - conformance/definitions/sys/mman_h/4-2: link: SKIP - conformance/definitions/sys/mman_h/4-3: build: PASS - conformance/definitions/sys/mman_h/4-3: link: SKIP - conformance/definitions/sys/mman_h/5-1: build: PASS - conformance/definitions/sys/mman_h/5-1: link: SKIP - conformance/definitions/sys/mman_h/5-2: build: PASS - conformance/definitions/sys/mman_h/5-2: link: SKIP - conformance/definitions/sys/mman_h/6-1: build: PASS - conformance/definitions/sys/mman_h/6-1: link: SKIP - conformance/definitions/sys/mman_h/7-1: build: PASS - conformance/definitions/sys/mman_h/7-1: link: SKIP - conformance/definitions/sys/mman_h/7-2: build: PASS - conformance/definitions/sys/mman_h/7-2: link: SKIP - conformance/definitions/sys/mman_h/7-3: build: PASS - conformance/definitions/sys/mman_h/7-3: link: SKIP - conformance/definitions/sys/mman_h/7-4: build: PASS - conformance/definitions/sys/mman_h/7-4: link: SKIP - conformance/definitions/sys/mman_h/7-5: build: PASS - conformance/definitions/sys/mman_h/7-5: link: SKIP - conformance/definitions/sys/mman_h/8-1: build: PASS - conformance/definitions/sys/mman_h/8-1: link: SKIP - conformance/definitions/sys/mman_h/8-2: build: PASS - conformance/definitions/sys/mman_h/8-2: link: SKIP - conformance/definitions/sys/mman_h/8-3: build: PASS - conformance/definitions/sys/mman_h/8-3: link: SKIP - conformance/definitions/sys/mman_h/9-1: build: PASS - conformance/definitions/sys/mman_h/9-1: link: SKIP - conformance/definitions/sys/mman_h/9-2: build: PASS - conformance/definitions/sys/mman_h/9-2: link: SKIP - conformance/definitions/sys/mman_h/9-3: build: PASS - conformance/definitions/sys/mman_h/9-3: link: SKIP - conformance/definitions/sys/shm_h/1-1: build: PASS - conformance/definitions/sys/shm_h/1-1: link: SKIP - conformance/definitions/sys/shm_h/10-1: build: PASS - conformance/definitions/sys/shm_h/10-1: link: SKIP - conformance/definitions/sys/shm_h/11-1: build: PASS - conformance/definitions/sys/shm_h/11-1: link: SKIP - conformance/definitions/sys/shm_h/12-1: build: PASS - conformance/definitions/sys/shm_h/12-1: link: SKIP - conformance/definitions/sys/shm_h/12-2: build: PASS - conformance/definitions/sys/shm_h/12-2: link: SKIP - conformance/definitions/sys/shm_h/12-3: build: PASS - conformance/definitions/sys/shm_h/12-3: link: SKIP - conformance/definitions/sys/shm_h/2-1: build: PASS - conformance/definitions/sys/shm_h/2-1: link: SKIP - conformance/definitions/sys/shm_h/2-2: build: PASS - conformance/definitions/sys/shm_h/2-2: link: SKIP - conformance/definitions/sys/shm_h/3-1: build: PASS - conformance/definitions/sys/shm_h/3-1: link: SKIP - conformance/definitions/sys/shm_h/4-1: build: PASS - conformance/definitions/sys/shm_h/4-1: link: SKIP - conformance/definitions/sys/shm_h/5-1: build: PASS - conformance/definitions/sys/shm_h/5-1: link: SKIP - conformance/definitions/sys/shm_h/6-1: build: PASS - conformance/definitions/sys/shm_h/6-1: link: SKIP - conformance/definitions/sys/shm_h/7-1: build: PASS - conformance/definitions/sys/shm_h/7-1: link: SKIP - conformance/definitions/sys/shm_h/7-2: build: PASS - conformance/definitions/sys/shm_h/7-2: link: SKIP - conformance/definitions/sys/shm_h/7-3: build: PASS - conformance/definitions/sys/shm_h/7-3: link: SKIP - conformance/definitions/sys/shm_h/7-4: build: PASS - conformance/definitions/sys/shm_h/7-4: link: SKIP - conformance/definitions/sys/shm_h/8-1: build: PASS - conformance/definitions/sys/shm_h/8-1: link: SKIP - conformance/definitions/sys/shm_h/9-1: build: PASS - conformance/definitions/sys/shm_h/9-1: link: SKIP - conformance/definitions/time_h/1-1: build: PASS - conformance/definitions/time_h/1-1: link: SKIP - conformance/definitions/time_h/10-1: build: PASS - conformance/definitions/time_h/10-1: link: SKIP - conformance/definitions/time_h/11-1: build: PASS - conformance/definitions/time_h/11-1: link: SKIP - conformance/definitions/time_h/12-1: build: PASS - conformance/definitions/time_h/12-1: link: SKIP - conformance/definitions/time_h/13-1: build: PASS - conformance/definitions/time_h/13-1: link: SKIP - conformance/definitions/time_h/14-1: build: PASS - conformance/definitions/time_h/14-1: link: SKIP - conformance/definitions/time_h/15-1: build: PASS - conformance/definitions/time_h/15-1: link: SKIP - conformance/definitions/time_h/16-1: build: PASS - conformance/definitions/time_h/16-1: link: SKIP - conformance/definitions/time_h/17-1: build: PASS - conformance/definitions/time_h/17-1: link: SKIP - conformance/definitions/time_h/18-1: build: PASS - conformance/definitions/time_h/18-1: link: SKIP - conformance/definitions/time_h/19-1: build: PASS - conformance/definitions/time_h/19-1: link: SKIP - conformance/definitions/time_h/2-1: build: PASS - conformance/definitions/time_h/2-1: link: SKIP - conformance/definitions/time_h/20-1: build: PASS - conformance/definitions/time_h/20-1: link: SKIP - conformance/definitions/time_h/21-1: build: PASS - conformance/definitions/time_h/21-1: link: SKIP - conformance/definitions/time_h/22-1: build: PASS - conformance/definitions/time_h/22-1: link: SKIP - conformance/definitions/time_h/23-1: build: PASS - conformance/definitions/time_h/23-1: link: SKIP - conformance/definitions/time_h/24-1: build: PASS - conformance/definitions/time_h/24-1: link: SKIP - conformance/definitions/time_h/25-1: build: PASS - conformance/definitions/time_h/25-1: link: SKIP - conformance/definitions/time_h/26-1: build: PASS - conformance/definitions/time_h/26-1: link: SKIP - conformance/definitions/time_h/27-1: build: PASS - conformance/definitions/time_h/27-1: link: SKIP - conformance/definitions/time_h/28-1: build: PASS - conformance/definitions/time_h/28-1: link: SKIP - conformance/definitions/time_h/29-1: build: PASS - conformance/definitions/time_h/29-1: link: SKIP - conformance/definitions/time_h/3-1: build: PASS - conformance/definitions/time_h/3-1: link: SKIP - conformance/definitions/time_h/3-2: build: PASS - conformance/definitions/time_h/3-2: link: SKIP - conformance/definitions/time_h/3-3: build: PASS - conformance/definitions/time_h/3-3: link: SKIP - conformance/definitions/time_h/3-4: build: PASS - conformance/definitions/time_h/3-4: link: SKIP - conformance/definitions/time_h/30-1: build: PASS - conformance/definitions/time_h/30-1: link: SKIP - conformance/definitions/time_h/31-1: build: PASS - conformance/definitions/time_h/31-1: link: SKIP - conformance/definitions/time_h/32-1: build: PASS - conformance/definitions/time_h/32-1: link: SKIP - conformance/definitions/time_h/33-1: build: PASS - conformance/definitions/time_h/33-1: link: SKIP - conformance/definitions/time_h/34-1: build: PASS - conformance/definitions/time_h/34-1: link: SKIP - conformance/definitions/time_h/35-1: build: PASS - conformance/definitions/time_h/35-1: link: SKIP - conformance/definitions/time_h/35-2: build: PASS - conformance/definitions/time_h/35-2: link: SKIP - conformance/definitions/time_h/35-3: build: PASS - conformance/definitions/time_h/35-3: link: SKIP - conformance/definitions/time_h/4-1: build: PASS - conformance/definitions/time_h/4-1: link: SKIP - conformance/definitions/time_h/5-1: build: PASS - conformance/definitions/time_h/5-1: link: SKIP - conformance/definitions/time_h/6-1: build: PASS - conformance/definitions/time_h/6-1: link: SKIP - conformance/definitions/time_h/6-2: build: PASS - conformance/definitions/time_h/6-2: link: SKIP - conformance/definitions/time_h/6-3: build: PASS - conformance/definitions/time_h/6-3: link: SKIP - conformance/definitions/time_h/7-1: build: PASS - conformance/definitions/time_h/7-1: link: SKIP - conformance/definitions/time_h/7-2: build: PASS - conformance/definitions/time_h/7-2: link: SKIP - conformance/definitions/time_h/7-3: build: PASS - conformance/definitions/time_h/7-3: link: SKIP - conformance/definitions/time_h/7-4: build: PASS - conformance/definitions/time_h/7-4: link: SKIP - conformance/definitions/time_h/7-5: build: PASS - conformance/definitions/time_h/7-5: link: SKIP - conformance/definitions/time_h/8-1: build: PASS - conformance/definitions/time_h/8-1: link: SKIP - conformance/definitions/time_h/9-1: build: PASS - conformance/definitions/time_h/9-1: link: SKIP - conformance/definitions/unistd_h/1-1: build: PASS - conformance/definitions/unistd_h/1-1: link: SKIP - conformance/definitions/unistd_h/2-1: build: PASS - conformance/definitions/unistd_h/2-1: link: SKIP - conformance/interfaces/aio_cancel/1-1: build: PASS - conformance/interfaces/aio_cancel/1-1: link: PASS - conformance/interfaces/aio_cancel/10-1: build: PASS - conformance/interfaces/aio_cancel/10-1: link: PASS - conformance/interfaces/aio_cancel/2-1: build: PASS - conformance/interfaces/aio_cancel/2-1: link: PASS - conformance/interfaces/aio_cancel/2-2: build: PASS - conformance/interfaces/aio_cancel/2-2: link: PASS conformance/interfaces/aio_cancel/3-1: build: FAILED: Compiler output: conformance/interfaces/aio_cancel/3-1.c: In function ‘main’: conformance/interfaces/aio_cancel/3-1.c:96: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/aio_cancel/3-1.c:96: error: (Each undeclared identifier is reported only once conformance/interfaces/aio_cancel/3-1.c:96: error: for each function it appears in.) conformance/interfaces/aio_cancel/3-1.c:97: error: ‘SIGRTMIN’ undeclared (first use in this function) - conformance/interfaces/aio_cancel/4-1: build: PASS - conformance/interfaces/aio_cancel/4-1: link: PASS - conformance/interfaces/aio_cancel/5-1: build: PASS - conformance/interfaces/aio_cancel/5-1: link: PASS - conformance/interfaces/aio_cancel/6-1: build: PASS - conformance/interfaces/aio_cancel/6-1: link: PASS - conformance/interfaces/aio_cancel/7-1: build: PASS - conformance/interfaces/aio_cancel/7-1: link: PASS - conformance/interfaces/aio_cancel/8-1: build: PASS - conformance/interfaces/aio_cancel/8-1: link: PASS - conformance/interfaces/aio_cancel/9-1: build: PASS - conformance/interfaces/aio_cancel/9-1: link: PASS - conformance/interfaces/aio_error/1-1: build: PASS - conformance/interfaces/aio_error/1-1: link: PASS - conformance/interfaces/aio_error/2-1: build: PASS - conformance/interfaces/aio_error/2-1: link: PASS - conformance/interfaces/aio_error/3-1: build: PASS - conformance/interfaces/aio_error/3-1: link: PASS conformance/interfaces/aio_fsync/1-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_fsync/1-1.c: In function ‘main’: @@ -606,25 +58,11 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_fsync/11-1.c: In function ‘main’: conformance/interfaces/aio_fsync/11-1.c:19: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_fsync/11-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_fsync/12-1: build: PASS - conformance/interfaces/aio_fsync/12-1: link: PASS conformance/interfaces/aio_fsync/13-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_fsync/13-1.c: In function ‘main’: conformance/interfaces/aio_fsync/13-1.c:19: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_fsync/13-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_fsync/14-1: build: PASS - conformance/interfaces/aio_fsync/14-1: link: PASS - conformance/interfaces/aio_fsync/2-1: build: PASS - conformance/interfaces/aio_fsync/2-1: link: PASS - conformance/interfaces/aio_fsync/3-1: build: PASS - conformance/interfaces/aio_fsync/3-1: link: PASS - conformance/interfaces/aio_fsync/4-1: build: PASS - conformance/interfaces/aio_fsync/4-1: link: PASS - conformance/interfaces/aio_fsync/4-2: build: PASS - conformance/interfaces/aio_fsync/4-2: link: PASS - conformance/interfaces/aio_fsync/5-1: build: PASS - conformance/interfaces/aio_fsync/5-1: link: PASS conformance/interfaces/aio_fsync/6-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_fsync/6-1.c: In function ‘main’: @@ -635,24 +73,6 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_fsync/7-1.c: In function ‘main’: conformance/interfaces/aio_fsync/7-1.c:19: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_fsync/7-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_fsync/8-1: build: PASS - conformance/interfaces/aio_fsync/8-1: link: PASS - conformance/interfaces/aio_fsync/8-2: build: PASS - conformance/interfaces/aio_fsync/8-2: link: PASS - conformance/interfaces/aio_fsync/8-3: build: PASS - conformance/interfaces/aio_fsync/8-3: link: PASS - conformance/interfaces/aio_fsync/8-4: build: PASS - conformance/interfaces/aio_fsync/8-4: link: PASS - conformance/interfaces/aio_fsync/9-1: build: PASS - conformance/interfaces/aio_fsync/9-1: link: PASS - conformance/interfaces/aio_read/1-1: build: PASS - conformance/interfaces/aio_read/1-1: link: PASS - conformance/interfaces/aio_read/10-1: build: PASS - conformance/interfaces/aio_read/10-1: link: PASS - conformance/interfaces/aio_read/11-1: build: PASS - conformance/interfaces/aio_read/11-1: link: PASS - conformance/interfaces/aio_read/11-2: build: PASS - conformance/interfaces/aio_read/11-2: link: PASS conformance/interfaces/aio_read/12-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_read/12-1.c: In function ‘main’: @@ -673,37 +93,11 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_read/15-1.c: In function ‘main’: conformance/interfaces/aio_read/15-1.c:30: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_read/15-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_read/2-1: build: PASS - conformance/interfaces/aio_read/2-1: link: PASS - conformance/interfaces/aio_read/3-1: build: PASS - conformance/interfaces/aio_read/3-1: link: PASS - conformance/interfaces/aio_read/3-2: build: PASS - conformance/interfaces/aio_read/3-2: link: PASS - conformance/interfaces/aio_read/4-1: build: PASS - conformance/interfaces/aio_read/4-1: link: PASS - conformance/interfaces/aio_read/5-1: build: PASS - conformance/interfaces/aio_read/5-1: link: PASS conformance/interfaces/aio_read/6-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_read/6-1.c: In function ‘main’: conformance/interfaces/aio_read/6-1.c:30: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_read/6-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_read/7-1: build: PASS - conformance/interfaces/aio_read/7-1: link: PASS - conformance/interfaces/aio_read/8-1: build: PASS - conformance/interfaces/aio_read/8-1: link: PASS - conformance/interfaces/aio_read/9-1: build: PASS - conformance/interfaces/aio_read/9-1: link: PASS - conformance/interfaces/aio_return/1-1: build: PASS - conformance/interfaces/aio_return/1-1: link: PASS - conformance/interfaces/aio_return/2-1: build: PASS - conformance/interfaces/aio_return/2-1: link: PASS - conformance/interfaces/aio_return/3-1: build: PASS - conformance/interfaces/aio_return/3-1: link: PASS - conformance/interfaces/aio_return/3-2: build: PASS - conformance/interfaces/aio_return/3-2: link: PASS - conformance/interfaces/aio_return/4-1: build: PASS - conformance/interfaces/aio_return/4-1: link: PASS conformance/interfaces/aio_suspend/1-1: build: FAILED: Compiler output: conformance/interfaces/aio_suspend/1-1.c: In function ‘main’: conformance/interfaces/aio_suspend/1-1.c:120: error: ‘SIGRTMIN’ undeclared (first use in this function) @@ -715,12 +109,6 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_suspend/2-1.c: In function ‘main’: conformance/interfaces/aio_suspend/2-1.c:31: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_suspend/2-1.c:31: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_suspend/3-1: build: PASS - conformance/interfaces/aio_suspend/3-1: link: PASS - conformance/interfaces/aio_suspend/4-1: build: PASS - conformance/interfaces/aio_suspend/4-1: link: PASS - conformance/interfaces/aio_suspend/5-1: build: PASS - conformance/interfaces/aio_suspend/5-1: link: PASS conformance/interfaces/aio_suspend/6-1: build: FAILED: Compiler output: conformance/interfaces/aio_suspend/6-1.c: In function ‘main’: conformance/interfaces/aio_suspend/6-1.c:116: error: ‘SIGRTMIN’ undeclared (first use in this function) @@ -739,12 +127,6 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_suspend/8-1.c:121: error: (Each undeclared identifier is reported only once conformance/interfaces/aio_suspend/8-1.c:121: error: for each function it appears in.) conformance/interfaces/aio_suspend/8-1.c:127: error: ‘SA_SIGINFO’ undeclared (first use in this function) - conformance/interfaces/aio_suspend/9-1: build: PASS - conformance/interfaces/aio_suspend/9-1: link: PASS - conformance/interfaces/aio_write/1-1: build: PASS - conformance/interfaces/aio_write/1-1: link: PASS - conformance/interfaces/aio_write/1-2: build: PASS - conformance/interfaces/aio_write/1-2: link: PASS conformance/interfaces/aio_write/10-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_write/10-1.c: In function ‘main’: @@ -765,205 +147,17 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_write/13-1.c: In function ‘main’: conformance/interfaces/aio_write/13-1.c:30: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_write/13-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_write/2-1: build: PASS - conformance/interfaces/aio_write/2-1: link: PASS - conformance/interfaces/aio_write/3-1: build: PASS - conformance/interfaces/aio_write/3-1: link: PASS conformance/interfaces/aio_write/4-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/aio_write/4-1.c: In function ‘main’: conformance/interfaces/aio_write/4-1.c:30: error: implicit declaration of function ‘exit’ conformance/interfaces/aio_write/4-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/aio_write/5-1: build: PASS - conformance/interfaces/aio_write/5-1: link: PASS - conformance/interfaces/aio_write/6-1: build: PASS - conformance/interfaces/aio_write/6-1: link: PASS - conformance/interfaces/aio_write/7-1: build: PASS - conformance/interfaces/aio_write/7-1: link: PASS - conformance/interfaces/aio_write/8-1: build: PASS - conformance/interfaces/aio_write/8-1: link: PASS - conformance/interfaces/aio_write/8-2: build: PASS - conformance/interfaces/aio_write/8-2: link: PASS - conformance/interfaces/aio_write/9-1: build: PASS - conformance/interfaces/aio_write/9-1: link: PASS - conformance/interfaces/aio_write/9-2: build: PASS - conformance/interfaces/aio_write/9-2: link: PASS - conformance/interfaces/asctime/1-1: build: PASS - conformance/interfaces/asctime/1-1: link: PASS - conformance/interfaces/clock/1-1: build: PASS - conformance/interfaces/clock/1-1: link: PASS - conformance/interfaces/clock/2-1: build: PASS - conformance/interfaces/clock/2-1: link: PASS - conformance/interfaces/clock_getcpuclockid/1-1: build: PASS - conformance/interfaces/clock_getcpuclockid/1-1: link: PASS - conformance/interfaces/clock_getcpuclockid/2-1: build: PASS - conformance/interfaces/clock_getcpuclockid/2-1: link: PASS - conformance/interfaces/clock_getres/1-1: build: PASS - conformance/interfaces/clock_getres/1-1: link: PASS - conformance/interfaces/clock_getres/3-1: build: PASS - conformance/interfaces/clock_getres/3-1: link: PASS - conformance/interfaces/clock_getres/5-1: build: PASS - conformance/interfaces/clock_getres/5-1: link: PASS - conformance/interfaces/clock_getres/6-1: build: PASS - conformance/interfaces/clock_getres/6-1: link: PASS - conformance/interfaces/clock_getres/6-2: build: PASS - conformance/interfaces/clock_getres/6-2: link: PASS - conformance/interfaces/clock_getres/7-1: build: PASS - conformance/interfaces/clock_getres/7-1: link: PASS - conformance/interfaces/clock_getres/8-1: build: PASS - conformance/interfaces/clock_getres/8-1: link: PASS - conformance/interfaces/clock_gettime/1-1: build: PASS - conformance/interfaces/clock_gettime/1-1: link: PASS - conformance/interfaces/clock_gettime/1-2: build: PASS - conformance/interfaces/clock_gettime/1-2: link: PASS - conformance/interfaces/clock_gettime/2-1: build: PASS - conformance/interfaces/clock_gettime/2-1: link: PASS - conformance/interfaces/clock_gettime/3-1: build: PASS - conformance/interfaces/clock_gettime/3-1: link: PASS - conformance/interfaces/clock_gettime/4-1: build: PASS - conformance/interfaces/clock_gettime/4-1: link: PASS - conformance/interfaces/clock_gettime/7-1: build: PASS - conformance/interfaces/clock_gettime/7-1: link: PASS - conformance/interfaces/clock_gettime/8-1: build: PASS - conformance/interfaces/clock_gettime/8-1: link: PASS - conformance/interfaces/clock_gettime/8-2: build: PASS - conformance/interfaces/clock_gettime/8-2: link: PASS - conformance/interfaces/clock_nanosleep/1-1: build: PASS - conformance/interfaces/clock_nanosleep/1-1: link: PASS - conformance/interfaces/clock_nanosleep/1-3: build: PASS - conformance/interfaces/clock_nanosleep/1-3: link: PASS - conformance/interfaces/clock_nanosleep/1-4: build: PASS - conformance/interfaces/clock_nanosleep/1-4: link: PASS - conformance/interfaces/clock_nanosleep/1-5: build: PASS - conformance/interfaces/clock_nanosleep/1-5: link: PASS - conformance/interfaces/clock_nanosleep/10-1: build: PASS - conformance/interfaces/clock_nanosleep/10-1: link: PASS - conformance/interfaces/clock_nanosleep/11-1: build: PASS - conformance/interfaces/clock_nanosleep/11-1: link: PASS - conformance/interfaces/clock_nanosleep/13-1: build: PASS - conformance/interfaces/clock_nanosleep/13-1: link: PASS - conformance/interfaces/clock_nanosleep/2-1: build: PASS - conformance/interfaces/clock_nanosleep/2-1: link: PASS - conformance/interfaces/clock_nanosleep/2-2: build: PASS - conformance/interfaces/clock_nanosleep/2-2: link: PASS - conformance/interfaces/clock_nanosleep/2-3: build: PASS - conformance/interfaces/clock_nanosleep/2-3: link: PASS - conformance/interfaces/clock_nanosleep/3-1: build: PASS - conformance/interfaces/clock_nanosleep/3-1: link: PASS - conformance/interfaces/clock_nanosleep/9-1: build: PASS - conformance/interfaces/clock_nanosleep/9-1: link: PASS - conformance/interfaces/clock_settime/1-1: build: PASS - conformance/interfaces/clock_settime/1-1: link: PASS - conformance/interfaces/clock_settime/17-1: build: PASS - conformance/interfaces/clock_settime/17-1: link: PASS - conformance/interfaces/clock_settime/17-2: build: PASS - conformance/interfaces/clock_settime/17-2: link: PASS - conformance/interfaces/clock_settime/19-1: build: PASS - conformance/interfaces/clock_settime/19-1: link: PASS - conformance/interfaces/clock_settime/20-1: build: PASS - conformance/interfaces/clock_settime/20-1: link: PASS - conformance/interfaces/clock_settime/4-1: build: PASS - conformance/interfaces/clock_settime/4-1: link: PASS - conformance/interfaces/clock_settime/4-2: build: PASS - conformance/interfaces/clock_settime/4-2: link: PASS - conformance/interfaces/clock_settime/5-1: build: PASS - conformance/interfaces/clock_settime/5-1: link: PASS - conformance/interfaces/clock_settime/5-2: build: PASS - conformance/interfaces/clock_settime/5-2: link: PASS - conformance/interfaces/clock_settime/6-1: build: PASS - conformance/interfaces/clock_settime/6-1: link: PASS - conformance/interfaces/clock_settime/7-1: build: PASS - conformance/interfaces/clock_settime/7-1: link: PASS - conformance/interfaces/clock_settime/7-2: build: PASS - conformance/interfaces/clock_settime/7-2: link: PASS - conformance/interfaces/clock_settime/8-1: build: PASS - conformance/interfaces/clock_settime/8-1: link: PASS - conformance/interfaces/clock_settime/speculative/4-3: build: PASS - conformance/interfaces/clock_settime/speculative/4-3: link: PASS - conformance/interfaces/clock_settime/speculative/4-4: build: PASS - conformance/interfaces/clock_settime/speculative/4-4: link: PASS - conformance/interfaces/ctime/1-1: build: PASS - conformance/interfaces/ctime/1-1: link: PASS - conformance/interfaces/difftime/1-1: build: PASS - conformance/interfaces/difftime/1-1: link: PASS - conformance/interfaces/fork/1-1: build: PASS - conformance/interfaces/fork/1-1: link: PASS - conformance/interfaces/fork/11-1: build: PASS - conformance/interfaces/fork/11-1: link: PASS - conformance/interfaces/fork/12-1: build: PASS - conformance/interfaces/fork/12-1: link: PASS - conformance/interfaces/fork/13-1: build: PASS - conformance/interfaces/fork/13-1: link: PASS - conformance/interfaces/fork/14-1: build: PASS - conformance/interfaces/fork/14-1: link: PASS - conformance/interfaces/fork/16-1: build: PASS - conformance/interfaces/fork/16-1: link: PASS - conformance/interfaces/fork/17-1: build: PASS - conformance/interfaces/fork/17-1: link: PASS - conformance/interfaces/fork/17-2: build: PASS - conformance/interfaces/fork/17-2: link: PASS - conformance/interfaces/fork/18-1: build: PASS - conformance/interfaces/fork/18-1: link: PASS - conformance/interfaces/fork/19-1: build: PASS - conformance/interfaces/fork/19-1: link: PASS conformance/interfaces/fork/2-1: build: FAILED: Compiler output: conformance/interfaces/fork/2-1.c: In function ‘main’: conformance/interfaces/fork/2-1.c:240: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/fork/2-1.c:240: error: (Each undeclared identifier is reported only once conformance/interfaces/fork/2-1.c:240: error: for each function it appears in.) conformance/interfaces/fork/2-1.c:241: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function) - conformance/interfaces/fork/21-1: build: PASS - conformance/interfaces/fork/21-1: link: PASS - conformance/interfaces/fork/22-1: build: PASS - conformance/interfaces/fork/22-1: link: PASS - conformance/interfaces/fork/3-1: build: PASS - conformance/interfaces/fork/3-1: link: PASS - conformance/interfaces/fork/4-1: build: PASS - conformance/interfaces/fork/4-1: link: PASS - conformance/interfaces/fork/6-1: build: PASS - conformance/interfaces/fork/6-1: link: PASS - conformance/interfaces/fork/7-1: build: PASS - conformance/interfaces/fork/7-1: link: PASS - conformance/interfaces/fork/8-1: build: PASS - conformance/interfaces/fork/8-1: link: PASS - conformance/interfaces/fork/9-1: build: PASS - conformance/interfaces/fork/9-1: link: PASS - conformance/interfaces/fsync/4-1: build: PASS - conformance/interfaces/fsync/4-1: link: PASS - conformance/interfaces/fsync/5-1: build: PASS - conformance/interfaces/fsync/5-1: link: PASS - conformance/interfaces/fsync/7-1: build: PASS - conformance/interfaces/fsync/7-1: link: PASS - conformance/interfaces/getpid/1-1: build: PASS - conformance/interfaces/getpid/1-1: link: PASS - conformance/interfaces/gmtime/1-1: build: PASS - conformance/interfaces/gmtime/1-1: link: PASS - conformance/interfaces/gmtime/2-1: build: PASS - conformance/interfaces/gmtime/2-1: link: PASS - conformance/interfaces/kill/1-1: build: PASS - conformance/interfaces/kill/1-1: link: PASS - conformance/interfaces/kill/1-2: build: PASS - conformance/interfaces/kill/1-2: link: PASS - conformance/interfaces/kill/2-1: build: PASS - conformance/interfaces/kill/2-1: link: PASS - conformance/interfaces/kill/2-2: build: PASS - conformance/interfaces/kill/2-2: link: PASS - conformance/interfaces/kill/3-1: build: PASS - conformance/interfaces/kill/3-1: link: PASS - conformance/interfaces/killpg/1-1: build: PASS - conformance/interfaces/killpg/1-1: link: PASS - conformance/interfaces/killpg/1-2: build: PASS - conformance/interfaces/killpg/1-2: link: PASS - conformance/interfaces/killpg/2-1: build: PASS - conformance/interfaces/killpg/2-1: link: PASS - conformance/interfaces/killpg/4-1: build: PASS - conformance/interfaces/killpg/4-1: link: PASS - conformance/interfaces/killpg/5-1: build: PASS - conformance/interfaces/killpg/5-1: link: PASS - conformance/interfaces/killpg/6-1: build: PASS - conformance/interfaces/killpg/6-1: link: PASS - conformance/interfaces/killpg/8-1: build: PASS - conformance/interfaces/killpg/8-1: link: PASS conformance/interfaces/lio_listio/1-1: build: FAILED: Compiler output: conformance/interfaces/lio_listio/1-1.c: In function ‘main’: conformance/interfaces/lio_listio/1-1.c:110: error: ‘SIGRTMIN’ undeclared (first use in this function) @@ -982,10 +176,6 @@ interrupted using `kill [PID]`. conformance/interfaces/lio_listio/11-1.c:111: error: (Each undeclared identifier is reported only once conformance/interfaces/lio_listio/11-1.c:111: error: for each function it appears in.) conformance/interfaces/lio_listio/11-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function) - conformance/interfaces/lio_listio/12-1: build: PASS - conformance/interfaces/lio_listio/12-1: link: PASS - conformance/interfaces/lio_listio/13-1: build: PASS - conformance/interfaces/lio_listio/13-1: link: PASS conformance/interfaces/lio_listio/14-1: build: FAILED: Compiler output: conformance/interfaces/lio_listio/14-1.c: In function ‘main’: conformance/interfaces/lio_listio/14-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function) @@ -1008,8 +198,6 @@ interrupted using `kill [PID]`. conformance/interfaces/lio_listio/17-1.c: In function ‘main’: conformance/interfaces/lio_listio/17-1.c:19: error: implicit declaration of function ‘exit’ conformance/interfaces/lio_listio/17-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’ - conformance/interfaces/lio_listio/18-1: build: PASS - conformance/interfaces/lio_listio/18-1: link: PASS conformance/interfaces/lio_listio/19-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/lio_listio/19-1.c: In function ‘main’: @@ -1063,186 +251,12 @@ interrupted using `kill [PID]`. conformance/interfaces/lio_listio/4-1.c:114: error: (Each undeclared identifier is reported only once conformance/interfaces/lio_listio/4-1.c:114: error: for each function it appears in.) conformance/interfaces/lio_listio/4-1.c:126: error: ‘SA_SIGINFO’ undeclared (first use in this function) - conformance/interfaces/lio_listio/5-1: build: PASS - conformance/interfaces/lio_listio/5-1: link: PASS - conformance/interfaces/lio_listio/6-1: build: PASS - conformance/interfaces/lio_listio/6-1: link: PASS conformance/interfaces/lio_listio/7-1: build: FAILED: Compiler output: conformance/interfaces/lio_listio/7-1.c: In function ‘main’: conformance/interfaces/lio_listio/7-1.c:113: error: ‘SIGRTMIN’ undeclared (first use in this function) conformance/interfaces/lio_listio/7-1.c:113: error: (Each undeclared identifier is reported only once conformance/interfaces/lio_listio/7-1.c:113: error: for each function it appears in.) conformance/interfaces/lio_listio/7-1.c:125: error: ‘SA_SIGINFO’ undeclared (first use in this function) - conformance/interfaces/lio_listio/8-1: build: PASS - conformance/interfaces/lio_listio/8-1: link: PASS - conformance/interfaces/lio_listio/9-1: build: PASS - conformance/interfaces/lio_listio/9-1: link: PASS - conformance/interfaces/localtime/1-1: build: PASS - conformance/interfaces/localtime/1-1: link: PASS - conformance/interfaces/mktime/1-1: build: PASS - conformance/interfaces/mktime/1-1: link: PASS - conformance/interfaces/mlock/10-1: build: PASS - conformance/interfaces/mlock/10-1: link: PASS - conformance/interfaces/mlock/5-1: build: PASS - conformance/interfaces/mlock/5-1: link: PASS - conformance/interfaces/mlock/8-1: build: PASS - conformance/interfaces/mlock/8-1: link: PASS - conformance/interfaces/mlock/speculative/12-1: build: PASS - conformance/interfaces/mlock/speculative/12-1: link: PASS - conformance/interfaces/mlockall/13-1: build: PASS - conformance/interfaces/mlockall/13-1: link: PASS - conformance/interfaces/mlockall/13-2: build: PASS - conformance/interfaces/mlockall/13-2: link: PASS - conformance/interfaces/mlockall/3-6: build: PASS - conformance/interfaces/mlockall/3-6: link: PASS - conformance/interfaces/mlockall/3-7: build: PASS - conformance/interfaces/mlockall/3-7: link: PASS - conformance/interfaces/mlockall/8-1: build: PASS - conformance/interfaces/mlockall/8-1: link: PASS - conformance/interfaces/mlockall/speculative/15-1: build: PASS - conformance/interfaces/mlockall/speculative/15-1: link: PASS - conformance/interfaces/mmap/1-1: build: PASS - conformance/interfaces/mmap/1-1: link: PASS - conformance/interfaces/mmap/1-2: build: PASS - conformance/interfaces/mmap/1-2: link: PASS - conformance/interfaces/mmap/10-1: build: PASS - conformance/interfaces/mmap/10-1: link: PASS - conformance/interfaces/mmap/11-1: build: PASS - conformance/interfaces/mmap/11-1: link: PASS - conformance/interfaces/mmap/11-2: build: PASS - conformance/interfaces/mmap/11-2: link: PASS - conformance/interfaces/mmap/11-3: build: PASS - conformance/interfaces/mmap/11-3: link: PASS - conformance/interfaces/mmap/11-4: build: PASS - conformance/interfaces/mmap/11-4: link: PASS - conformance/interfaces/mmap/11-5: build: PASS - conformance/interfaces/mmap/11-5: link: PASS - conformance/interfaces/mmap/12-1: build: PASS - conformance/interfaces/mmap/12-1: link: PASS - conformance/interfaces/mmap/13-1: build: PASS - conformance/interfaces/mmap/13-1: link: PASS - conformance/interfaces/mmap/14-1: build: PASS - conformance/interfaces/mmap/14-1: link: PASS - conformance/interfaces/mmap/18-1: build: PASS - conformance/interfaces/mmap/18-1: link: PASS - conformance/interfaces/mmap/19-1: build: PASS - conformance/interfaces/mmap/19-1: link: PASS - conformance/interfaces/mmap/21-1: build: PASS - conformance/interfaces/mmap/21-1: link: PASS - conformance/interfaces/mmap/23-1: build: PASS - conformance/interfaces/mmap/23-1: link: PASS - conformance/interfaces/mmap/24-1: build: PASS - conformance/interfaces/mmap/24-1: link: PASS - conformance/interfaces/mmap/24-2: build: PASS - conformance/interfaces/mmap/24-2: link: PASS - conformance/interfaces/mmap/27-1: build: PASS - conformance/interfaces/mmap/27-1: link: PASS - conformance/interfaces/mmap/28-1: build: PASS - conformance/interfaces/mmap/28-1: link: PASS - conformance/interfaces/mmap/3-1: build: PASS - conformance/interfaces/mmap/3-1: link: PASS - conformance/interfaces/mmap/31-1: build: PASS - conformance/interfaces/mmap/31-1: link: PASS - conformance/interfaces/mmap/5-1: build: PASS - conformance/interfaces/mmap/5-1: link: PASS - conformance/interfaces/mmap/6-1: build: PASS - conformance/interfaces/mmap/6-1: link: PASS - conformance/interfaces/mmap/6-2: build: PASS - conformance/interfaces/mmap/6-2: link: PASS - conformance/interfaces/mmap/6-3: build: PASS - conformance/interfaces/mmap/6-3: link: PASS - conformance/interfaces/mmap/6-4: build: PASS - conformance/interfaces/mmap/6-4: link: PASS - conformance/interfaces/mmap/6-5: build: PASS - conformance/interfaces/mmap/6-5: link: PASS - conformance/interfaces/mmap/6-6: build: PASS - conformance/interfaces/mmap/6-6: link: PASS - conformance/interfaces/mmap/7-1: build: PASS - conformance/interfaces/mmap/7-1: link: PASS - conformance/interfaces/mmap/7-2: build: PASS - conformance/interfaces/mmap/7-2: link: PASS - conformance/interfaces/mmap/7-3: build: PASS - conformance/interfaces/mmap/7-3: link: PASS - conformance/interfaces/mmap/7-4: build: PASS - conformance/interfaces/mmap/7-4: link: PASS - conformance/interfaces/mmap/9-1: build: PASS - conformance/interfaces/mmap/9-1: link: PASS - conformance/interfaces/mq_close/1-1: build: PASS - conformance/interfaces/mq_close/1-1: link: PASS - conformance/interfaces/mq_close/2-1: build: PASS - conformance/interfaces/mq_close/2-1: link: PASS - conformance/interfaces/mq_close/3-1: build: PASS - conformance/interfaces/mq_close/3-1: link: PASS - conformance/interfaces/mq_close/3-2: build: PASS - conformance/interfaces/mq_close/3-2: link: PASS - conformance/interfaces/mq_close/3-3: build: PASS - conformance/interfaces/mq_close/3-3: link: PASS - conformance/interfaces/mq_close/4-1: build: PASS - conformance/interfaces/mq_close/4-1: link: PASS - conformance/interfaces/mq_close/5-1: build: PASS - conformance/interfaces/mq_close/5-1: link: PASS - conformance/interfaces/mq_getattr/2-1: build: PASS - conformance/interfaces/mq_getattr/2-1: link: PASS - conformance/interfaces/mq_getattr/2-2: build: PASS - conformance/interfaces/mq_getattr/2-2: link: PASS - conformance/interfaces/mq_getattr/3-1: build: PASS - conformance/interfaces/mq_getattr/3-1: link: PASS - conformance/interfaces/mq_getattr/4-1: build: PASS - conformance/interfaces/mq_getattr/4-1: link: PASS - conformance/interfaces/mq_getattr/speculative/7-1: build: PASS - conformance/interfaces/mq_getattr/speculative/7-1: link: PASS - conformance/interfaces/mq_notify/1-1: build: PASS - conformance/interfaces/mq_notify/1-1: link: PASS - conformance/interfaces/mq_notify/2-1: build: PASS - conformance/interfaces/mq_notify/2-1: link: PASS - conformance/interfaces/mq_notify/3-1: build: PASS - conformance/interfaces/mq_notify/3-1: link: PASS - conformance/interfaces/mq_notify/4-1: build: PASS - conformance/interfaces/mq_notify/4-1: link: PASS - conformance/interfaces/mq_notify/5-1: build: PASS - conformance/interfaces/mq_notify/5-1: link: PASS - conformance/interfaces/mq_notify/8-1: build: PASS - conformance/interfaces/mq_notify/8-1: link: PASS - conformance/interfaces/mq_notify/9-1: build: PASS - conformance/interfaces/mq_notify/9-1: link: PASS - conformance/interfaces/mq_open/1-1: build: PASS - conformance/interfaces/mq_open/1-1: link: PASS - conformance/interfaces/mq_open/10-1: build: PASS - conformance/interfaces/mq_open/10-1: link: PASS - conformance/interfaces/mq_open/11-1: build: PASS - conformance/interfaces/mq_open/11-1: link: PASS - conformance/interfaces/mq_open/12-1: build: PASS - conformance/interfaces/mq_open/12-1: link: PASS - conformance/interfaces/mq_open/13-1: build: PASS - conformance/interfaces/mq_open/13-1: link: PASS - conformance/interfaces/mq_open/14-1: build: PASS - conformance/interfaces/mq_open/14-1: link: PASS - conformance/interfaces/mq_open/15-1: build: PASS - conformance/interfaces/mq_open/15-1: link: PASS - conformance/interfaces/mq_open/16-1: build: PASS - conformance/interfaces/mq_open/16-1: link: PASS - conformance/interfaces/mq_open/17-1: build: PASS - conformance/interfaces/mq_open/17-1: link: PASS - conformance/interfaces/mq_open/18-1: build: PASS - conformance/interfaces/mq_open/18-1: link: PASS - conformance/interfaces/mq_open/19-1: build: PASS - conformance/interfaces/mq_open/19-1: link: PASS - conformance/interfaces/mq_open/2-1: build: PASS - conformance/interfaces/mq_open/2-1: link: PASS - conformance/interfaces/mq_open/20-1: build: PASS - conformance/interfaces/mq_open/20-1: link: PASS - conformance/interfaces/mq_open/21-1: build: PASS - conformance/interfaces/mq_open/21-1: link: PASS - conformance/interfaces/mq_open/22-1: build: PASS - conformance/interfaces/mq_open/22-1: link: PASS - conformance/interfaces/mq_open/23-1: build: PASS - conformance/interfaces/mq_open/23-1: link: PASS - conformance/interfaces/mq_open/24-1: build: PASS - conformance/interfaces/mq_open/24-1: link: PASS - conformance/interfaces/mq_open/25-1: build: PASS - conformance/interfaces/mq_open/25-1: link: PASS - conformance/interfaces/mq_open/25-2: build: PASS - conformance/interfaces/mq_open/25-2: link: PASS conformance/interfaces/mq_open/27-1: build: FAILED: Compiler output: conformance/interfaces/mq_open/27-1.c: In function ‘main’: conformance/interfaces/mq_open/27-1.c:27: error: ‘PATH_MAX’ undeclared (first use in this function) @@ -1250,80 +264,8 @@ interrupted using `kill [PID]`. conformance/interfaces/mq_open/27-1.c:27: error: for each function it appears in.) cc1: warnings being treated as errors conformance/interfaces/mq_open/27-1.c:27: error: unused variable ‘qname’ - conformance/interfaces/mq_open/27-2: build: PASS - conformance/interfaces/mq_open/27-2: link: PASS - conformance/interfaces/mq_open/28-1: build: PASS - conformance/interfaces/mq_open/28-1: link: PASS - conformance/interfaces/mq_open/29-1: build: PASS - conformance/interfaces/mq_open/29-1: link: PASS - conformance/interfaces/mq_open/3-1: build: PASS - conformance/interfaces/mq_open/3-1: link: PASS - conformance/interfaces/mq_open/30-1: build: PASS - conformance/interfaces/mq_open/30-1: link: PASS - conformance/interfaces/mq_open/4-1: build: PASS - conformance/interfaces/mq_open/4-1: link: PASS - conformance/interfaces/mq_open/7-1: build: PASS - conformance/interfaces/mq_open/7-1: link: PASS - conformance/interfaces/mq_open/7-2: build: PASS - conformance/interfaces/mq_open/7-2: link: PASS - conformance/interfaces/mq_open/7-3: build: PASS - conformance/interfaces/mq_open/7-3: link: PASS - conformance/interfaces/mq_open/8-1: build: PASS - conformance/interfaces/mq_open/8-1: link: PASS - conformance/interfaces/mq_open/8-2: build: PASS - conformance/interfaces/mq_open/8-2: link: PASS - conformance/interfaces/mq_open/9-1: build: PASS - conformance/interfaces/mq_open/9-1: link: PASS - conformance/interfaces/mq_open/9-2: build: PASS - conformance/interfaces/mq_open/9-2: link: PASS - conformance/interfaces/mq_open/speculative/2-2: build: PASS - conformance/interfaces/mq_open/speculative/2-2: link: PASS - conformance/interfaces/mq_open/speculative/2-3: build: PASS - conformance/interfaces/mq_open/speculative/2-3: link: PASS - conformance/interfaces/mq_open/speculative/26-1: build: PASS - conformance/interfaces/mq_open/speculative/26-1: link: PASS - conformance/interfaces/mq_open/speculative/6-1: build: PASS - conformance/interfaces/mq_open/speculative/6-1: link: PASS - conformance/interfaces/mq_receive/1-1: build: PASS - conformance/interfaces/mq_receive/1-1: link: PASS - conformance/interfaces/mq_receive/10-1: build: PASS - conformance/interfaces/mq_receive/10-1: link: PASS - conformance/interfaces/mq_receive/11-1: build: PASS - conformance/interfaces/mq_receive/11-1: link: PASS - conformance/interfaces/mq_receive/11-2: build: PASS - conformance/interfaces/mq_receive/11-2: link: PASS - conformance/interfaces/mq_receive/12-1: build: PASS - conformance/interfaces/mq_receive/12-1: link: PASS - conformance/interfaces/mq_receive/13-1: build: PASS - conformance/interfaces/mq_receive/13-1: link: PASS - conformance/interfaces/mq_receive/2-1: build: PASS - conformance/interfaces/mq_receive/2-1: link: PASS - conformance/interfaces/mq_receive/5-1: build: PASS - conformance/interfaces/mq_receive/5-1: link: PASS - conformance/interfaces/mq_receive/7-1: build: PASS - conformance/interfaces/mq_receive/7-1: link: PASS - conformance/interfaces/mq_receive/8-1: build: PASS - conformance/interfaces/mq_receive/8-1: link: PASS - conformance/interfaces/mq_send/1-1: build: PASS - conformance/interfaces/mq_send/1-1: link: PASS - conformance/interfaces/mq_send/10-1: build: PASS - conformance/interfaces/mq_send/10-1: link: PASS - conformance/interfaces/mq_send/11-1: build: PASS - conformance/interfaces/mq_send/11-1: link: PASS - conformance/interfaces/mq_send/11-2: build: PASS - conformance/interfaces/mq_send/11-2: link: PASS - conformance/interfaces/mq_send/12-1: build: PASS - conformance/interfaces/mq_send/12-1: link: PASS conformance/interfaces/mq_send/13-1: build: FAILED: Compiler output: conformance/interfaces/mq_send/13-1.c:30: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function) - conformance/interfaces/mq_send/14-1: build: PASS - conformance/interfaces/mq_send/14-1: link: PASS - conformance/interfaces/mq_send/2-1: build: PASS - conformance/interfaces/mq_send/2-1: link: PASS - conformance/interfaces/mq_send/3-1: build: PASS - conformance/interfaces/mq_send/3-1: link: PASS - conformance/interfaces/mq_send/3-2: build: PASS - conformance/interfaces/mq_send/3-2: link: PASS conformance/interfaces/mq_send/4-1: build: FAILED: Compiler output: conformance/interfaces/mq_send/4-1.c: In function ‘main’: conformance/interfaces/mq_send/4-1.c:41: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) @@ -1339,99 +281,13 @@ interrupted using `kill [PID]`. conformance/interfaces/mq_send/4-3.c:51: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) conformance/interfaces/mq_send/4-3.c:51: error: (Each undeclared identifier is reported only once conformance/interfaces/mq_send/4-3.c:51: error: for each function it appears in.) - conformance/interfaces/mq_send/5-1: build: PASS - conformance/interfaces/mq_send/5-1: link: PASS - conformance/interfaces/mq_send/5-2: build: PASS - conformance/interfaces/mq_send/5-2: link: PASS - conformance/interfaces/mq_send/6-1: build: PASS - conformance/interfaces/mq_send/6-1: link: PASS conformance/interfaces/mq_send/7-1: build: FAILED: Compiler output: conformance/interfaces/mq_send/7-1.c: In function ‘main’: conformance/interfaces/mq_send/7-1.c:60: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) conformance/interfaces/mq_send/7-1.c:60: error: (Each undeclared identifier is reported only once conformance/interfaces/mq_send/7-1.c:60: error: for each function it appears in.) - conformance/interfaces/mq_send/8-1: build: PASS - conformance/interfaces/mq_send/8-1: link: PASS - conformance/interfaces/mq_send/9-1: build: PASS - conformance/interfaces/mq_send/9-1: link: PASS - conformance/interfaces/mq_setattr/1-1: build: PASS - conformance/interfaces/mq_setattr/1-1: link: PASS - conformance/interfaces/mq_setattr/1-2: build: PASS - conformance/interfaces/mq_setattr/1-2: link: PASS - conformance/interfaces/mq_setattr/2-1: build: PASS - conformance/interfaces/mq_setattr/2-1: link: PASS - conformance/interfaces/mq_setattr/5-1: build: PASS - conformance/interfaces/mq_setattr/5-1: link: PASS - conformance/interfaces/mq_timedreceive/1-1: build: PASS - conformance/interfaces/mq_timedreceive/1-1: link: PASS - conformance/interfaces/mq_timedreceive/10-1: build: PASS - conformance/interfaces/mq_timedreceive/10-1: link: PASS - conformance/interfaces/mq_timedreceive/10-2: build: PASS - conformance/interfaces/mq_timedreceive/10-2: link: PASS - conformance/interfaces/mq_timedreceive/11-1: build: PASS - conformance/interfaces/mq_timedreceive/11-1: link: PASS - conformance/interfaces/mq_timedreceive/13-1: build: PASS - conformance/interfaces/mq_timedreceive/13-1: link: PASS - conformance/interfaces/mq_timedreceive/14-1: build: PASS - conformance/interfaces/mq_timedreceive/14-1: link: PASS - conformance/interfaces/mq_timedreceive/15-1: build: PASS - conformance/interfaces/mq_timedreceive/15-1: link: PASS - conformance/interfaces/mq_timedreceive/17-1: build: PASS - conformance/interfaces/mq_timedreceive/17-1: link: PASS - conformance/interfaces/mq_timedreceive/17-2: build: PASS - conformance/interfaces/mq_timedreceive/17-2: link: PASS - conformance/interfaces/mq_timedreceive/17-3: build: PASS - conformance/interfaces/mq_timedreceive/17-3: link: PASS - conformance/interfaces/mq_timedreceive/18-1: build: PASS - conformance/interfaces/mq_timedreceive/18-1: link: PASS - conformance/interfaces/mq_timedreceive/18-2: build: PASS - conformance/interfaces/mq_timedreceive/18-2: link: PASS - conformance/interfaces/mq_timedreceive/2-1: build: PASS - conformance/interfaces/mq_timedreceive/2-1: link: PASS - conformance/interfaces/mq_timedreceive/5-1: build: PASS - conformance/interfaces/mq_timedreceive/5-1: link: PASS - conformance/interfaces/mq_timedreceive/5-2: build: PASS - conformance/interfaces/mq_timedreceive/5-2: link: PASS - conformance/interfaces/mq_timedreceive/5-3: build: PASS - conformance/interfaces/mq_timedreceive/5-3: link: PASS - conformance/interfaces/mq_timedreceive/7-1: build: PASS - conformance/interfaces/mq_timedreceive/7-1: link: PASS - conformance/interfaces/mq_timedreceive/8-1: build: PASS - conformance/interfaces/mq_timedreceive/8-1: link: PASS - conformance/interfaces/mq_timedreceive/speculative/10-2: build: PASS - conformance/interfaces/mq_timedreceive/speculative/10-2: link: PASS - conformance/interfaces/mq_timedsend/1-1: build: PASS - conformance/interfaces/mq_timedsend/1-1: link: PASS - conformance/interfaces/mq_timedsend/10-1: build: PASS - conformance/interfaces/mq_timedsend/10-1: link: PASS - conformance/interfaces/mq_timedsend/11-1: build: PASS - conformance/interfaces/mq_timedsend/11-1: link: PASS - conformance/interfaces/mq_timedsend/11-2: build: PASS - conformance/interfaces/mq_timedsend/11-2: link: PASS - conformance/interfaces/mq_timedsend/12-1: build: PASS - conformance/interfaces/mq_timedsend/12-1: link: PASS conformance/interfaces/mq_timedsend/13-1: build: FAILED: Compiler output: conformance/interfaces/mq_timedsend/13-1.c:31: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function) - conformance/interfaces/mq_timedsend/14-1: build: PASS - conformance/interfaces/mq_timedsend/14-1: link: PASS - conformance/interfaces/mq_timedsend/15-1: build: PASS - conformance/interfaces/mq_timedsend/15-1: link: PASS - conformance/interfaces/mq_timedsend/16-1: build: PASS - conformance/interfaces/mq_timedsend/16-1: link: PASS - conformance/interfaces/mq_timedsend/17-1: build: PASS - conformance/interfaces/mq_timedsend/17-1: link: PASS - conformance/interfaces/mq_timedsend/18-1: build: PASS - conformance/interfaces/mq_timedsend/18-1: link: PASS - conformance/interfaces/mq_timedsend/19-1: build: PASS - conformance/interfaces/mq_timedsend/19-1: link: PASS - conformance/interfaces/mq_timedsend/2-1: build: PASS - conformance/interfaces/mq_timedsend/2-1: link: PASS - conformance/interfaces/mq_timedsend/20-1: build: PASS - conformance/interfaces/mq_timedsend/20-1: link: PASS - conformance/interfaces/mq_timedsend/3-1: build: PASS - conformance/interfaces/mq_timedsend/3-1: link: PASS - conformance/interfaces/mq_timedsend/3-2: build: PASS - conformance/interfaces/mq_timedsend/3-2: link: PASS conformance/interfaces/mq_timedsend/4-1: build: FAILED: Compiler output: conformance/interfaces/mq_timedsend/4-1.c: In function ‘main’: conformance/interfaces/mq_timedsend/4-1.c:45: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) @@ -1447,112 +303,6 @@ interrupted using `kill [PID]`. conformance/interfaces/mq_timedsend/4-3.c:55: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function) conformance/interfaces/mq_timedsend/4-3.c:55: error: (Each undeclared identifier is reported only once conformance/interfaces/mq_timedsend/4-3.c:55: error: for each function it appears in.) - conformance/interfaces/mq_timedsend/5-1: build: PASS - conformance/interfaces/mq_timedsend/5-1: link: PASS - conformance/interfaces/mq_timedsend/5-2: build: PASS - conformance/interfaces/mq_timedsend/5-2: link: PASS - conformance/interfaces/mq_timedsend/5-3: build: PASS - conformance/interfaces/mq_timedsend/5-3: link: PASS - conformance/interfaces/mq_timedsend/6-1: build: PASS - conformance/interfaces/mq_timedsend/6-1: link: PASS - conformance/interfaces/mq_timedsend/7-1: build: PASS - conformance/interfaces/mq_timedsend/7-1: link: PASS - conformance/interfaces/mq_timedsend/8-1: build: PASS - conformance/interfaces/mq_timedsend/8-1: link: PASS - conformance/interfaces/mq_timedsend/9-1: build: PASS - conformance/interfaces/mq_timedsend/9-1: link: PASS - conformance/interfaces/mq_timedsend/speculative/18-2: build: PASS - conformance/interfaces/mq_timedsend/speculative/18-2: link: PASS - conformance/interfaces/mq_unlink/1-1: build: PASS - conformance/interfaces/mq_unlink/1-1: link: PASS - conformance/interfaces/mq_unlink/2-1: build: PASS - conformance/interfaces/mq_unlink/2-1: link: PASS - conformance/interfaces/mq_unlink/2-2: build: PASS - conformance/interfaces/mq_unlink/2-2: link: PASS - conformance/interfaces/mq_unlink/2-3: build: PASS - conformance/interfaces/mq_unlink/2-3: link: PASS - conformance/interfaces/mq_unlink/7-1: build: PASS - conformance/interfaces/mq_unlink/7-1: link: PASS - conformance/interfaces/mq_unlink/speculative/7-2: build: PASS - conformance/interfaces/mq_unlink/speculative/7-2: link: PASS - conformance/interfaces/munlock/10-1: build: PASS - conformance/interfaces/munlock/10-1: link: PASS - conformance/interfaces/munlock/11-1: build: PASS - conformance/interfaces/munlock/11-1: link: PASS - conformance/interfaces/munlock/7-1: build: PASS - conformance/interfaces/munlock/7-1: link: PASS - conformance/interfaces/munlockall/5-1: build: PASS - conformance/interfaces/munlockall/5-1: link: PASS - conformance/interfaces/munmap/1-1: build: PASS - conformance/interfaces/munmap/1-1: link: PASS - conformance/interfaces/munmap/1-2: build: PASS - conformance/interfaces/munmap/1-2: link: PASS - conformance/interfaces/munmap/2-1: build: PASS - conformance/interfaces/munmap/2-1: link: PASS - conformance/interfaces/munmap/3-1: build: PASS - conformance/interfaces/munmap/3-1: link: PASS - conformance/interfaces/munmap/4-1: build: PASS - conformance/interfaces/munmap/4-1: link: PASS - conformance/interfaces/munmap/8-1: build: PASS - conformance/interfaces/munmap/8-1: link: PASS - conformance/interfaces/munmap/9-1: build: PASS - conformance/interfaces/munmap/9-1: link: PASS - conformance/interfaces/nanosleep/10000-1: build: PASS - conformance/interfaces/nanosleep/10000-1: link: PASS - conformance/interfaces/nanosleep/1-1: build: PASS - conformance/interfaces/nanosleep/1-1: link: PASS - conformance/interfaces/nanosleep/1-2: build: PASS - conformance/interfaces/nanosleep/1-2: link: PASS - conformance/interfaces/nanosleep/1-3: build: PASS - conformance/interfaces/nanosleep/1-3: link: PASS - conformance/interfaces/nanosleep/2-1: build: PASS - conformance/interfaces/nanosleep/2-1: link: PASS - conformance/interfaces/nanosleep/3-1: build: PASS - conformance/interfaces/nanosleep/3-1: link: PASS - conformance/interfaces/nanosleep/3-2: build: PASS - conformance/interfaces/nanosleep/3-2: link: PASS - conformance/interfaces/nanosleep/5-1: build: PASS - conformance/interfaces/nanosleep/5-1: link: PASS - conformance/interfaces/nanosleep/5-2: build: PASS - conformance/interfaces/nanosleep/5-2: link: PASS - conformance/interfaces/nanosleep/6-1: build: PASS - conformance/interfaces/nanosleep/6-1: link: PASS - conformance/interfaces/nanosleep/7-1: build: PASS - conformance/interfaces/nanosleep/7-1: link: PASS - conformance/interfaces/nanosleep/7-2: build: PASS - conformance/interfaces/nanosleep/7-2: link: PASS - conformance/interfaces/pthread_atfork/1-1: build: PASS - conformance/interfaces/pthread_atfork/1-1: link: PASS - conformance/interfaces/pthread_atfork/1-2: build: PASS - conformance/interfaces/pthread_atfork/1-2: link: PASS - conformance/interfaces/pthread_atfork/2-1: build: PASS - conformance/interfaces/pthread_atfork/2-1: link: PASS - conformance/interfaces/pthread_atfork/2-2: build: PASS - conformance/interfaces/pthread_atfork/2-2: link: PASS - conformance/interfaces/pthread_atfork/3-2: build: PASS - conformance/interfaces/pthread_atfork/3-2: link: PASS - conformance/interfaces/pthread_atfork/3-3: build: PASS - conformance/interfaces/pthread_atfork/3-3: link: PASS - conformance/interfaces/pthread_atfork/4-1: build: PASS - conformance/interfaces/pthread_atfork/4-1: link: PASS - conformance/interfaces/pthread_attr_destroy/1-1: build: PASS - conformance/interfaces/pthread_attr_destroy/1-1: link: PASS - conformance/interfaces/pthread_attr_destroy/2-1: build: PASS - conformance/interfaces/pthread_attr_destroy/2-1: link: PASS - conformance/interfaces/pthread_attr_destroy/3-1: build: PASS - conformance/interfaces/pthread_attr_destroy/3-1: link: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-1: build: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-1: link: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-2: build: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-2: link: PASS - conformance/interfaces/pthread_attr_getinheritsched/1-1: build: PASS - conformance/interfaces/pthread_attr_getinheritsched/1-1: link: PASS - conformance/interfaces/pthread_attr_getschedparam/1-1: build: PASS - conformance/interfaces/pthread_attr_getschedparam/1-1: link: PASS - conformance/interfaces/pthread_attr_getschedpolicy/2-1: build: PASS - conformance/interfaces/pthread_attr_getschedpolicy/2-1: link: PASS - conformance/interfaces/pthread_attr_getscope/1-1: build: PASS - conformance/interfaces/pthread_attr_getscope/1-1: link: PASS conformance/interfaces/pthread_attr_getstack/1-1: build: FAILED: Compiler output: conformance/interfaces/pthread_attr_getstack/1-1.c: In function ‘main’: conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) @@ -1563,58 +313,6 @@ interrupted using `kill [PID]`. conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: (Each undeclared identifier is reported only once conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: for each function it appears in.) - conformance/interfaces/pthread_attr_init/1-1: build: PASS - conformance/interfaces/pthread_attr_init/1-1: link: PASS - conformance/interfaces/pthread_attr_init/2-1: build: PASS - conformance/interfaces/pthread_attr_init/2-1: link: PASS - conformance/interfaces/pthread_attr_init/3-1: build: PASS - conformance/interfaces/pthread_attr_init/3-1: link: PASS - conformance/interfaces/pthread_attr_init/4-1: build: PASS - conformance/interfaces/pthread_attr_init/4-1: link: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-1: build: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-1: link: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-2: build: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-2: link: PASS - conformance/interfaces/pthread_attr_setdetachstate/2-1: build: PASS - conformance/interfaces/pthread_attr_setdetachstate/2-1: link: PASS - conformance/interfaces/pthread_attr_setdetachstate/4-1: build: PASS - conformance/interfaces/pthread_attr_setdetachstate/4-1: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/1-1: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/1-1: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-1: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-1: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-2: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-2: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-3: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-3: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-4: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/2-4: link: PASS - conformance/interfaces/pthread_attr_setinheritsched/4-1: build: PASS - conformance/interfaces/pthread_attr_setinheritsched/4-1: link: PASS - conformance/interfaces/pthread_attr_setschedparam/1-1: build: PASS - conformance/interfaces/pthread_attr_setschedparam/1-1: link: PASS - conformance/interfaces/pthread_attr_setschedparam/1-2: build: PASS - conformance/interfaces/pthread_attr_setschedparam/1-2: link: PASS - conformance/interfaces/pthread_attr_setschedparam/1-3: build: PASS - conformance/interfaces/pthread_attr_setschedparam/1-3: link: PASS - conformance/interfaces/pthread_attr_setschedparam/1-4: build: PASS - conformance/interfaces/pthread_attr_setschedparam/1-4: link: PASS - conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: build: PASS - conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: link: PASS - conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: build: PASS - conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: link: PASS - conformance/interfaces/pthread_attr_setschedpolicy/1-1: build: PASS - conformance/interfaces/pthread_attr_setschedpolicy/1-1: link: PASS - conformance/interfaces/pthread_attr_setschedpolicy/4-1: build: PASS - conformance/interfaces/pthread_attr_setschedpolicy/4-1: link: PASS - conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: build: PASS - conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: link: PASS - conformance/interfaces/pthread_attr_setscope/1-1: build: PASS - conformance/interfaces/pthread_attr_setscope/1-1: link: PASS - conformance/interfaces/pthread_attr_setscope/4-1: build: PASS - conformance/interfaces/pthread_attr_setscope/4-1: link: PASS - conformance/interfaces/pthread_attr_setscope/5-1: build: PASS - conformance/interfaces/pthread_attr_setscope/5-1: link: PASS conformance/interfaces/pthread_attr_setstack/1-1: build: FAILED: Compiler output: conformance/interfaces/pthread_attr_setstack/1-1.c: In function ‘main’: conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) @@ -1655,890 +353,14 @@ interrupted using `kill [PID]`. conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function) conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: (Each undeclared identifier is reported only once conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: for each function it appears in.) - conformance/interfaces/pthread_barrier_destroy/1-1: build: PASS - conformance/interfaces/pthread_barrier_destroy/1-1: link: PASS - conformance/interfaces/pthread_barrier_destroy/2-1: build: PASS - conformance/interfaces/pthread_barrier_destroy/2-1: link: PASS - conformance/interfaces/pthread_barrier_init/1-1: build: PASS - conformance/interfaces/pthread_barrier_init/1-1: link: PASS - conformance/interfaces/pthread_barrier_init/3-1: build: PASS - conformance/interfaces/pthread_barrier_init/3-1: link: PASS - conformance/interfaces/pthread_barrier_init/4-1: build: PASS - conformance/interfaces/pthread_barrier_init/4-1: link: PASS - conformance/interfaces/pthread_barrier_wait/1-1: build: PASS - conformance/interfaces/pthread_barrier_wait/1-1: link: PASS - conformance/interfaces/pthread_barrier_wait/2-1: build: PASS - conformance/interfaces/pthread_barrier_wait/2-1: link: PASS - conformance/interfaces/pthread_barrier_wait/3-1: build: PASS - conformance/interfaces/pthread_barrier_wait/3-1: link: PASS - conformance/interfaces/pthread_barrier_wait/3-2: build: PASS - conformance/interfaces/pthread_barrier_wait/3-2: link: PASS - conformance/interfaces/pthread_barrier_wait/6-1: build: PASS - conformance/interfaces/pthread_barrier_wait/6-1: link: PASS - conformance/interfaces/pthread_barrierattr_destroy/1-1: build: PASS - conformance/interfaces/pthread_barrierattr_destroy/1-1: link: PASS - conformance/interfaces/pthread_barrierattr_getpshared/1-1: build: PASS - conformance/interfaces/pthread_barrierattr_getpshared/1-1: link: PASS - conformance/interfaces/pthread_barrierattr_getpshared/2-1: build: PASS - conformance/interfaces/pthread_barrierattr_getpshared/2-1: link: PASS - conformance/interfaces/pthread_barrierattr_init/1-1: build: PASS - conformance/interfaces/pthread_barrierattr_init/1-1: link: PASS - conformance/interfaces/pthread_barrierattr_init/2-1: build: PASS - conformance/interfaces/pthread_barrierattr_init/2-1: link: PASS - conformance/interfaces/pthread_barrierattr_setpshared/1-1: build: PASS - conformance/interfaces/pthread_barrierattr_setpshared/1-1: link: PASS - conformance/interfaces/pthread_barrierattr_setpshared/2-1: build: PASS - conformance/interfaces/pthread_barrierattr_setpshared/2-1: link: PASS - conformance/interfaces/pthread_cancel/1-1: build: PASS - conformance/interfaces/pthread_cancel/1-1: link: PASS - conformance/interfaces/pthread_cancel/1-2: build: PASS - conformance/interfaces/pthread_cancel/1-2: link: PASS - conformance/interfaces/pthread_cancel/1-3: build: PASS - conformance/interfaces/pthread_cancel/1-3: link: PASS - conformance/interfaces/pthread_cancel/2-1: build: PASS - conformance/interfaces/pthread_cancel/2-1: link: PASS - conformance/interfaces/pthread_cancel/2-2: build: PASS - conformance/interfaces/pthread_cancel/2-2: link: PASS - conformance/interfaces/pthread_cancel/2-3: build: PASS - conformance/interfaces/pthread_cancel/2-3: link: PASS - conformance/interfaces/pthread_cancel/3-1: build: PASS - conformance/interfaces/pthread_cancel/3-1: link: PASS - conformance/interfaces/pthread_cancel/4-1: build: PASS - conformance/interfaces/pthread_cancel/4-1: link: PASS - conformance/interfaces/pthread_cancel/5-1: build: PASS - conformance/interfaces/pthread_cancel/5-1: link: PASS - conformance/interfaces/pthread_cancel/5-2: build: PASS - conformance/interfaces/pthread_cancel/5-2: link: PASS - conformance/interfaces/pthread_cleanup_pop/1-1: build: PASS - conformance/interfaces/pthread_cleanup_pop/1-1: link: PASS - conformance/interfaces/pthread_cleanup_pop/1-2: build: PASS - conformance/interfaces/pthread_cleanup_pop/1-2: link: PASS - conformance/interfaces/pthread_cleanup_pop/1-3: build: PASS - conformance/interfaces/pthread_cleanup_pop/1-3: link: PASS - conformance/interfaces/pthread_cleanup_push/1-1: build: PASS - conformance/interfaces/pthread_cleanup_push/1-1: link: PASS - conformance/interfaces/pthread_cleanup_push/1-2: build: PASS - conformance/interfaces/pthread_cleanup_push/1-2: link: PASS - conformance/interfaces/pthread_cleanup_push/1-3: build: PASS - conformance/interfaces/pthread_cleanup_push/1-3: link: PASS - conformance/interfaces/pthread_cond_broadcast/1-1: build: PASS - conformance/interfaces/pthread_cond_broadcast/1-1: link: PASS - conformance/interfaces/pthread_cond_broadcast/1-2: build: PASS - conformance/interfaces/pthread_cond_broadcast/1-2: link: PASS - conformance/interfaces/pthread_cond_broadcast/2-1: build: PASS - conformance/interfaces/pthread_cond_broadcast/2-1: link: PASS - conformance/interfaces/pthread_cond_broadcast/2-2: build: PASS - conformance/interfaces/pthread_cond_broadcast/2-2: link: PASS - conformance/interfaces/pthread_cond_broadcast/2-3: build: PASS - conformance/interfaces/pthread_cond_broadcast/2-3: link: PASS - conformance/interfaces/pthread_cond_broadcast/4-1: build: PASS - conformance/interfaces/pthread_cond_broadcast/4-1: link: PASS - conformance/interfaces/pthread_cond_broadcast/4-2: build: PASS - conformance/interfaces/pthread_cond_broadcast/4-2: link: PASS - conformance/interfaces/pthread_cond_destroy/1-1: build: PASS - conformance/interfaces/pthread_cond_destroy/1-1: link: PASS - conformance/interfaces/pthread_cond_destroy/2-1: build: PASS - conformance/interfaces/pthread_cond_destroy/2-1: link: PASS - conformance/interfaces/pthread_cond_destroy/3-1: build: PASS - conformance/interfaces/pthread_cond_destroy/3-1: link: PASS - conformance/interfaces/pthread_cond_destroy/speculative/4-1: build: PASS - conformance/interfaces/pthread_cond_destroy/speculative/4-1: link: PASS - conformance/interfaces/pthread_cond_init/1-1: build: PASS - conformance/interfaces/pthread_cond_init/1-1: link: PASS - conformance/interfaces/pthread_cond_init/1-2: build: PASS - conformance/interfaces/pthread_cond_init/1-2: link: PASS - conformance/interfaces/pthread_cond_init/1-3: build: PASS - conformance/interfaces/pthread_cond_init/1-3: link: PASS - conformance/interfaces/pthread_cond_init/2-1: build: PASS - conformance/interfaces/pthread_cond_init/2-1: link: PASS - conformance/interfaces/pthread_cond_init/2-2: build: PASS - conformance/interfaces/pthread_cond_init/2-2: link: PASS - conformance/interfaces/pthread_cond_init/3-1: build: PASS - conformance/interfaces/pthread_cond_init/3-1: link: PASS - conformance/interfaces/pthread_cond_init/4-1: build: PASS - conformance/interfaces/pthread_cond_init/4-1: link: PASS - conformance/interfaces/pthread_cond_init/4-2: build: PASS - conformance/interfaces/pthread_cond_init/4-2: link: PASS - conformance/interfaces/pthread_cond_signal/1-1: build: PASS - conformance/interfaces/pthread_cond_signal/1-1: link: PASS - conformance/interfaces/pthread_cond_signal/1-2: build: PASS - conformance/interfaces/pthread_cond_signal/1-2: link: PASS - conformance/interfaces/pthread_cond_signal/2-1: build: PASS - conformance/interfaces/pthread_cond_signal/2-1: link: PASS - conformance/interfaces/pthread_cond_signal/2-2: build: PASS - conformance/interfaces/pthread_cond_signal/2-2: link: PASS - conformance/interfaces/pthread_cond_signal/4-1: build: PASS - conformance/interfaces/pthread_cond_signal/4-1: link: PASS - conformance/interfaces/pthread_cond_signal/4-2: build: PASS - conformance/interfaces/pthread_cond_signal/4-2: link: PASS - conformance/interfaces/pthread_cond_timedwait/1-1: build: PASS - conformance/interfaces/pthread_cond_timedwait/1-1: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-1: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-1: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-2: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-2: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-3: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-3: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-4: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-4: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-5: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-5: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-6: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-6: link: PASS - conformance/interfaces/pthread_cond_timedwait/2-7: build: PASS - conformance/interfaces/pthread_cond_timedwait/2-7: link: PASS - conformance/interfaces/pthread_cond_timedwait/3-1: build: PASS - conformance/interfaces/pthread_cond_timedwait/3-1: link: PASS - conformance/interfaces/pthread_cond_timedwait/4-1: build: PASS - conformance/interfaces/pthread_cond_timedwait/4-1: link: PASS - conformance/interfaces/pthread_cond_timedwait/4-2: build: PASS - conformance/interfaces/pthread_cond_timedwait/4-2: link: PASS - conformance/interfaces/pthread_cond_timedwait/4-3: build: PASS - conformance/interfaces/pthread_cond_timedwait/4-3: link: PASS - conformance/interfaces/pthread_cond_wait/1-1: build: PASS - conformance/interfaces/pthread_cond_wait/1-1: link: PASS - conformance/interfaces/pthread_cond_wait/2-1: build: PASS - conformance/interfaces/pthread_cond_wait/2-1: link: PASS - conformance/interfaces/pthread_cond_wait/2-2: build: PASS - conformance/interfaces/pthread_cond_wait/2-2: link: PASS - conformance/interfaces/pthread_cond_wait/2-3: build: PASS - conformance/interfaces/pthread_cond_wait/2-3: link: PASS - conformance/interfaces/pthread_cond_wait/3-1: build: PASS - conformance/interfaces/pthread_cond_wait/3-1: link: PASS - conformance/interfaces/pthread_cond_wait/4-1: build: PASS - conformance/interfaces/pthread_cond_wait/4-1: link: PASS - conformance/interfaces/pthread_condattr_destroy/1-1: build: PASS - conformance/interfaces/pthread_condattr_destroy/1-1: link: PASS - conformance/interfaces/pthread_condattr_destroy/2-1: build: PASS - conformance/interfaces/pthread_condattr_destroy/2-1: link: PASS - conformance/interfaces/pthread_condattr_destroy/3-1: build: PASS - conformance/interfaces/pthread_condattr_destroy/3-1: link: PASS - conformance/interfaces/pthread_condattr_destroy/4-1: build: PASS - conformance/interfaces/pthread_condattr_destroy/4-1: link: PASS - conformance/interfaces/pthread_condattr_getclock/1-1: build: PASS - conformance/interfaces/pthread_condattr_getclock/1-1: link: PASS - conformance/interfaces/pthread_condattr_getclock/1-2: build: PASS - conformance/interfaces/pthread_condattr_getclock/1-2: link: PASS - conformance/interfaces/pthread_condattr_getpshared/1-1: build: PASS - conformance/interfaces/pthread_condattr_getpshared/1-1: link: PASS - conformance/interfaces/pthread_condattr_getpshared/1-2: build: PASS - conformance/interfaces/pthread_condattr_getpshared/1-2: link: PASS - conformance/interfaces/pthread_condattr_getpshared/2-1: build: PASS - conformance/interfaces/pthread_condattr_getpshared/2-1: link: PASS - conformance/interfaces/pthread_condattr_init/1-1: build: PASS - conformance/interfaces/pthread_condattr_init/1-1: link: PASS - conformance/interfaces/pthread_condattr_init/3-1: build: PASS - conformance/interfaces/pthread_condattr_init/3-1: link: PASS - conformance/interfaces/pthread_condattr_setclock/1-1: build: PASS - conformance/interfaces/pthread_condattr_setclock/1-1: link: PASS - conformance/interfaces/pthread_condattr_setclock/1-2: build: PASS - conformance/interfaces/pthread_condattr_setclock/1-2: link: PASS - conformance/interfaces/pthread_condattr_setclock/1-3: build: PASS - conformance/interfaces/pthread_condattr_setclock/1-3: link: PASS - conformance/interfaces/pthread_condattr_setclock/2-1: build: PASS - conformance/interfaces/pthread_condattr_setclock/2-1: link: PASS - conformance/interfaces/pthread_condattr_setpshared/1-1: build: PASS - conformance/interfaces/pthread_condattr_setpshared/1-1: link: PASS - conformance/interfaces/pthread_condattr_setpshared/1-2: build: PASS - conformance/interfaces/pthread_condattr_setpshared/1-2: link: PASS - conformance/interfaces/pthread_condattr_setpshared/2-1: build: PASS - conformance/interfaces/pthread_condattr_setpshared/2-1: link: PASS - conformance/interfaces/pthread_create/1-1: build: PASS - conformance/interfaces/pthread_create/1-1: link: PASS - conformance/interfaces/pthread_create/1-2: build: PASS - conformance/interfaces/pthread_create/1-2: link: PASS - conformance/interfaces/pthread_create/1-3: build: PASS - conformance/interfaces/pthread_create/1-3: link: PASS - conformance/interfaces/pthread_create/1-4: build: PASS - conformance/interfaces/pthread_create/1-4: link: PASS - conformance/interfaces/pthread_create/1-5: build: PASS - conformance/interfaces/pthread_create/1-5: link: PASS - conformance/interfaces/pthread_create/1-6: build: PASS - conformance/interfaces/pthread_create/1-6: link: PASS - conformance/interfaces/pthread_create/10-1: build: PASS - conformance/interfaces/pthread_create/10-1: link: PASS - conformance/interfaces/pthread_create/11-1: build: PASS - conformance/interfaces/pthread_create/11-1: link: PASS - conformance/interfaces/pthread_create/12-1: build: PASS - conformance/interfaces/pthread_create/12-1: link: PASS - conformance/interfaces/pthread_create/14-1: build: PASS - conformance/interfaces/pthread_create/14-1: link: PASS - conformance/interfaces/pthread_create/15-1: build: PASS - conformance/interfaces/pthread_create/15-1: link: PASS - conformance/interfaces/pthread_create/2-1: build: PASS - conformance/interfaces/pthread_create/2-1: link: PASS - conformance/interfaces/pthread_create/3-1: build: PASS - conformance/interfaces/pthread_create/3-1: link: PASS - conformance/interfaces/pthread_create/3-2: build: PASS - conformance/interfaces/pthread_create/3-2: link: PASS - conformance/interfaces/pthread_create/4-1: build: PASS - conformance/interfaces/pthread_create/4-1: link: PASS - conformance/interfaces/pthread_create/5-1: build: PASS - conformance/interfaces/pthread_create/5-1: link: PASS - conformance/interfaces/pthread_create/5-2: build: PASS - conformance/interfaces/pthread_create/5-2: link: PASS - conformance/interfaces/pthread_create/8-1: build: PASS - conformance/interfaces/pthread_create/8-1: link: PASS - conformance/interfaces/pthread_create/8-2: build: PASS - conformance/interfaces/pthread_create/8-2: link: PASS - conformance/interfaces/pthread_detach/1-1: build: PASS - conformance/interfaces/pthread_detach/1-1: link: PASS - conformance/interfaces/pthread_detach/1-2: build: PASS - conformance/interfaces/pthread_detach/1-2: link: PASS - conformance/interfaces/pthread_detach/2-1: build: PASS - conformance/interfaces/pthread_detach/2-1: link: PASS - conformance/interfaces/pthread_detach/2-2: build: PASS - conformance/interfaces/pthread_detach/2-2: link: PASS - conformance/interfaces/pthread_detach/3-1: build: PASS - conformance/interfaces/pthread_detach/3-1: link: PASS - conformance/interfaces/pthread_detach/4-1: build: PASS - conformance/interfaces/pthread_detach/4-1: link: PASS - conformance/interfaces/pthread_detach/4-2: build: PASS - conformance/interfaces/pthread_detach/4-2: link: PASS - conformance/interfaces/pthread_detach/4-3: build: PASS - conformance/interfaces/pthread_detach/4-3: link: PASS - conformance/interfaces/pthread_equal/1-1: build: PASS - conformance/interfaces/pthread_equal/1-1: link: PASS - conformance/interfaces/pthread_equal/1-2: build: PASS - conformance/interfaces/pthread_equal/1-2: link: PASS - conformance/interfaces/pthread_equal/2-1: build: PASS - conformance/interfaces/pthread_equal/2-1: link: PASS - conformance/interfaces/pthread_exit/1-1: build: PASS - conformance/interfaces/pthread_exit/1-1: link: PASS - conformance/interfaces/pthread_exit/1-2: build: PASS - conformance/interfaces/pthread_exit/1-2: link: PASS - conformance/interfaces/pthread_exit/2-1: build: PASS - conformance/interfaces/pthread_exit/2-1: link: PASS - conformance/interfaces/pthread_exit/2-2: build: PASS - conformance/interfaces/pthread_exit/2-2: link: PASS - conformance/interfaces/pthread_exit/3-1: build: PASS - conformance/interfaces/pthread_exit/3-1: link: PASS - conformance/interfaces/pthread_exit/3-2: build: PASS - conformance/interfaces/pthread_exit/3-2: link: PASS - conformance/interfaces/pthread_exit/4-1: build: PASS - conformance/interfaces/pthread_exit/4-1: link: PASS - conformance/interfaces/pthread_exit/5-1: build: PASS - conformance/interfaces/pthread_exit/5-1: link: PASS - conformance/interfaces/pthread_exit/6-1: build: PASS - conformance/interfaces/pthread_exit/6-1: link: PASS - conformance/interfaces/pthread_exit/6-2: build: PASS - conformance/interfaces/pthread_exit/6-2: link: PASS - conformance/interfaces/pthread_getcpuclockid/1-1: build: PASS - conformance/interfaces/pthread_getcpuclockid/1-1: link: PASS - conformance/interfaces/pthread_getcpuclockid/speculative/3-1: build: PASS - conformance/interfaces/pthread_getcpuclockid/speculative/3-1: link: PASS - conformance/interfaces/pthread_getschedparam/1-1: build: PASS - conformance/interfaces/pthread_getschedparam/1-1: link: PASS - conformance/interfaces/pthread_getschedparam/1-2: build: PASS - conformance/interfaces/pthread_getschedparam/1-2: link: PASS - conformance/interfaces/pthread_getschedparam/1-3: build: PASS - conformance/interfaces/pthread_getschedparam/1-3: link: PASS - conformance/interfaces/pthread_getschedparam/4-1: build: PASS - conformance/interfaces/pthread_getschedparam/4-1: link: PASS - conformance/interfaces/pthread_getspecific/1-1: build: PASS - conformance/interfaces/pthread_getspecific/1-1: link: PASS - conformance/interfaces/pthread_getspecific/3-1: build: PASS - conformance/interfaces/pthread_getspecific/3-1: link: PASS - conformance/interfaces/pthread_join/1-1: build: PASS - conformance/interfaces/pthread_join/1-1: link: PASS - conformance/interfaces/pthread_join/1-2: build: PASS - conformance/interfaces/pthread_join/1-2: link: PASS - conformance/interfaces/pthread_join/2-1: build: PASS - conformance/interfaces/pthread_join/2-1: link: PASS - conformance/interfaces/pthread_join/3-1: build: PASS - conformance/interfaces/pthread_join/3-1: link: PASS - conformance/interfaces/pthread_join/4-1: build: PASS - conformance/interfaces/pthread_join/4-1: link: PASS - conformance/interfaces/pthread_join/5-1: build: PASS - conformance/interfaces/pthread_join/5-1: link: PASS - conformance/interfaces/pthread_join/6-2: build: PASS - conformance/interfaces/pthread_join/6-2: link: PASS - conformance/interfaces/pthread_join/6-3: build: PASS - conformance/interfaces/pthread_join/6-3: link: PASS - conformance/interfaces/pthread_join/speculative/6-1: build: PASS - conformance/interfaces/pthread_join/speculative/6-1: link: PASS - conformance/interfaces/pthread_key_create/1-1: build: PASS - conformance/interfaces/pthread_key_create/1-1: link: PASS - conformance/interfaces/pthread_key_create/1-2: build: PASS - conformance/interfaces/pthread_key_create/1-2: link: PASS - conformance/interfaces/pthread_key_create/2-1: build: PASS - conformance/interfaces/pthread_key_create/2-1: link: PASS - conformance/interfaces/pthread_key_create/3-1: build: PASS - conformance/interfaces/pthread_key_create/3-1: link: PASS conformance/interfaces/pthread_key_create/speculative/5-1: build: FAILED: Compiler output: conformance/interfaces/pthread_key_create/speculative/5-1.c:37: error: ‘PTHREAD_KEYS_MAX’ undeclared here (not in a function) - conformance/interfaces/pthread_key_delete/1-1: build: PASS - conformance/interfaces/pthread_key_delete/1-1: link: PASS - conformance/interfaces/pthread_key_delete/1-2: build: PASS - conformance/interfaces/pthread_key_delete/1-2: link: PASS - conformance/interfaces/pthread_key_delete/2-1: build: PASS - conformance/interfaces/pthread_key_delete/2-1: link: PASS - conformance/interfaces/pthread_kill/1-1: build: PASS - conformance/interfaces/pthread_kill/1-1: link: PASS - conformance/interfaces/pthread_kill/1-2: build: PASS - conformance/interfaces/pthread_kill/1-2: link: PASS - conformance/interfaces/pthread_kill/2-1: build: PASS - conformance/interfaces/pthread_kill/2-1: link: PASS - conformance/interfaces/pthread_kill/3-1: build: PASS - conformance/interfaces/pthread_kill/3-1: link: PASS - conformance/interfaces/pthread_kill/6-1: build: PASS - conformance/interfaces/pthread_kill/6-1: link: PASS - conformance/interfaces/pthread_kill/7-1: build: PASS - conformance/interfaces/pthread_kill/7-1: link: PASS - conformance/interfaces/pthread_kill/8-1: build: PASS - conformance/interfaces/pthread_kill/8-1: link: PASS - conformance/interfaces/pthread_mutex_destroy/1-1: build: PASS - conformance/interfaces/pthread_mutex_destroy/1-1: link: PASS - conformance/interfaces/pthread_mutex_destroy/2-1: build: PASS - conformance/interfaces/pthread_mutex_destroy/2-1: link: PASS - conformance/interfaces/pthread_mutex_destroy/2-2: build: PASS - conformance/interfaces/pthread_mutex_destroy/2-2: link: PASS - conformance/interfaces/pthread_mutex_destroy/3-1: build: PASS - conformance/interfaces/pthread_mutex_destroy/3-1: link: PASS - conformance/interfaces/pthread_mutex_destroy/5-1: build: PASS - conformance/interfaces/pthread_mutex_destroy/5-1: link: PASS - conformance/interfaces/pthread_mutex_destroy/5-2: build: PASS - conformance/interfaces/pthread_mutex_destroy/5-2: link: PASS - conformance/interfaces/pthread_mutex_destroy/speculative/4-2: build: PASS - conformance/interfaces/pthread_mutex_destroy/speculative/4-2: link: PASS - conformance/interfaces/pthread_mutex_getprioceiling/1-1: build: PASS - conformance/interfaces/pthread_mutex_getprioceiling/1-1: link: PASS - conformance/interfaces/pthread_mutex_init/1-1: build: PASS - conformance/interfaces/pthread_mutex_init/1-1: link: PASS - conformance/interfaces/pthread_mutex_init/1-2: build: PASS - conformance/interfaces/pthread_mutex_init/1-2: link: PASS - conformance/interfaces/pthread_mutex_init/2-1: build: PASS - conformance/interfaces/pthread_mutex_init/2-1: link: PASS - conformance/interfaces/pthread_mutex_init/3-1: build: PASS - conformance/interfaces/pthread_mutex_init/3-1: link: PASS - conformance/interfaces/pthread_mutex_init/3-2: build: PASS - conformance/interfaces/pthread_mutex_init/3-2: link: PASS - conformance/interfaces/pthread_mutex_init/4-1: build: PASS - conformance/interfaces/pthread_mutex_init/4-1: link: PASS - conformance/interfaces/pthread_mutex_init/5-1: build: PASS - conformance/interfaces/pthread_mutex_init/5-1: link: PASS - conformance/interfaces/pthread_mutex_init/5-3: build: PASS - conformance/interfaces/pthread_mutex_init/5-3: link: PASS - conformance/interfaces/pthread_mutex_init/speculative/5-2: build: PASS - conformance/interfaces/pthread_mutex_init/speculative/5-2: link: PASS - conformance/interfaces/pthread_mutex_lock/1-1: build: PASS - conformance/interfaces/pthread_mutex_lock/1-1: link: PASS - conformance/interfaces/pthread_mutex_lock/2-1: build: PASS - conformance/interfaces/pthread_mutex_lock/2-1: link: PASS - conformance/interfaces/pthread_mutex_lock/3-1: build: PASS - conformance/interfaces/pthread_mutex_lock/3-1: link: PASS - conformance/interfaces/pthread_mutex_lock/4-1: build: PASS - conformance/interfaces/pthread_mutex_lock/4-1: link: PASS - conformance/interfaces/pthread_mutex_lock/5-1: build: PASS - conformance/interfaces/pthread_mutex_lock/5-1: link: PASS - conformance/interfaces/pthread_mutex_timedlock/1-1: build: PASS - conformance/interfaces/pthread_mutex_timedlock/1-1: link: PASS - conformance/interfaces/pthread_mutex_timedlock/2-1: build: PASS - conformance/interfaces/pthread_mutex_timedlock/2-1: link: PASS - conformance/interfaces/pthread_mutex_timedlock/4-1: build: PASS - conformance/interfaces/pthread_mutex_timedlock/4-1: link: PASS - conformance/interfaces/pthread_mutex_timedlock/5-1: build: PASS - conformance/interfaces/pthread_mutex_timedlock/5-1: link: PASS - conformance/interfaces/pthread_mutex_timedlock/5-2: build: PASS - conformance/interfaces/pthread_mutex_timedlock/5-2: link: PASS - conformance/interfaces/pthread_mutex_timedlock/5-3: build: PASS - conformance/interfaces/pthread_mutex_timedlock/5-3: link: PASS - conformance/interfaces/pthread_mutex_trylock/1-1: build: PASS - conformance/interfaces/pthread_mutex_trylock/1-1: link: PASS - conformance/interfaces/pthread_mutex_trylock/1-2: build: PASS - conformance/interfaces/pthread_mutex_trylock/1-2: link: PASS - conformance/interfaces/pthread_mutex_trylock/2-1: build: PASS - conformance/interfaces/pthread_mutex_trylock/2-1: link: PASS - conformance/interfaces/pthread_mutex_trylock/3-1: build: PASS - conformance/interfaces/pthread_mutex_trylock/3-1: link: PASS - conformance/interfaces/pthread_mutex_trylock/4-1: build: PASS - conformance/interfaces/pthread_mutex_trylock/4-1: link: PASS - conformance/interfaces/pthread_mutex_trylock/4-2: build: PASS - conformance/interfaces/pthread_mutex_trylock/4-2: link: PASS - conformance/interfaces/pthread_mutex_trylock/4-3: build: PASS - conformance/interfaces/pthread_mutex_trylock/4-3: link: PASS - conformance/interfaces/pthread_mutex_unlock/1-1: build: PASS - conformance/interfaces/pthread_mutex_unlock/1-1: link: PASS - conformance/interfaces/pthread_mutex_unlock/2-1: build: PASS - conformance/interfaces/pthread_mutex_unlock/2-1: link: PASS - conformance/interfaces/pthread_mutex_unlock/3-1: build: PASS - conformance/interfaces/pthread_mutex_unlock/3-1: link: PASS - conformance/interfaces/pthread_mutex_unlock/5-1: build: PASS - conformance/interfaces/pthread_mutex_unlock/5-1: link: PASS - conformance/interfaces/pthread_mutex_unlock/5-2: build: PASS - conformance/interfaces/pthread_mutex_unlock/5-2: link: PASS - conformance/interfaces/pthread_mutexattr_destroy/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_destroy/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_destroy/2-1: build: PASS - conformance/interfaces/pthread_mutexattr_destroy/2-1: link: PASS - conformance/interfaces/pthread_mutexattr_destroy/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_destroy/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_destroy/4-1: build: PASS - conformance/interfaces/pthread_mutexattr_destroy/4-1: link: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: build: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: link: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_getprotocol/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_getprotocol/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_getprotocol/1-2: build: PASS - conformance/interfaces/pthread_mutexattr_getprotocol/1-2: link: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-2: build: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-2: link: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-3: build: PASS - conformance/interfaces/pthread_mutexattr_getpshared/1-3: link: PASS - conformance/interfaces/pthread_mutexattr_getpshared/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_getpshared/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-2: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-2: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-3: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-3: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-4: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-4: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-5: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-5: link: PASS - conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_init/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_init/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_init/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_init/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: build: PASS - conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: link: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-2: build: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-2: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/1-2: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/1-2: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/2-1: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/2-1: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/2-2: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/2-2: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_setpshared/3-2: build: PASS - conformance/interfaces/pthread_mutexattr_setpshared/3-2: link: PASS - conformance/interfaces/pthread_mutexattr_settype/1-1: build: PASS - conformance/interfaces/pthread_mutexattr_settype/1-1: link: PASS - conformance/interfaces/pthread_mutexattr_settype/2-1: build: PASS - conformance/interfaces/pthread_mutexattr_settype/2-1: link: PASS - conformance/interfaces/pthread_mutexattr_settype/3-1: build: PASS - conformance/interfaces/pthread_mutexattr_settype/3-1: link: PASS - conformance/interfaces/pthread_mutexattr_settype/3-2: build: PASS - conformance/interfaces/pthread_mutexattr_settype/3-2: link: PASS - conformance/interfaces/pthread_mutexattr_settype/3-3: build: PASS - conformance/interfaces/pthread_mutexattr_settype/3-3: link: PASS - conformance/interfaces/pthread_mutexattr_settype/3-4: build: PASS - conformance/interfaces/pthread_mutexattr_settype/3-4: link: PASS - conformance/interfaces/pthread_mutexattr_settype/7-1: build: PASS - conformance/interfaces/pthread_mutexattr_settype/7-1: link: PASS - conformance/interfaces/pthread_once/1-1: build: PASS - conformance/interfaces/pthread_once/1-1: link: PASS - conformance/interfaces/pthread_once/1-2: build: PASS - conformance/interfaces/pthread_once/1-2: link: PASS - conformance/interfaces/pthread_once/1-3: build: PASS - conformance/interfaces/pthread_once/1-3: link: PASS - conformance/interfaces/pthread_once/2-1: build: PASS - conformance/interfaces/pthread_once/2-1: link: PASS conformance/interfaces/pthread_once/3-1: build: FAILED: Compiler output: conformance/interfaces/pthread_once/3-1.c: In function ‘main’: conformance/interfaces/pthread_once/3-1.c:71: error: expected expression before ‘{’ token - conformance/interfaces/pthread_once/4-1: build: PASS - conformance/interfaces/pthread_once/4-1: link: SKIP conformance/interfaces/pthread_once/6-1: build: FAILED: Compiler output: conformance/interfaces/pthread_once/6-1.c: In function ‘test’: conformance/interfaces/pthread_once/6-1.c:199: error: expected expression before ‘{’ token - conformance/interfaces/pthread_rwlock_destroy/1-1: build: PASS - conformance/interfaces/pthread_rwlock_destroy/1-1: link: PASS - conformance/interfaces/pthread_rwlock_destroy/3-1: build: PASS - conformance/interfaces/pthread_rwlock_destroy/3-1: link: PASS - conformance/interfaces/pthread_rwlock_init/1-1: build: PASS - conformance/interfaces/pthread_rwlock_init/1-1: link: PASS - conformance/interfaces/pthread_rwlock_init/2-1: build: PASS - conformance/interfaces/pthread_rwlock_init/2-1: link: PASS - conformance/interfaces/pthread_rwlock_init/3-1: build: PASS - conformance/interfaces/pthread_rwlock_init/3-1: link: PASS - conformance/interfaces/pthread_rwlock_init/6-1: build: PASS - conformance/interfaces/pthread_rwlock_init/6-1: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-1: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-1: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-2: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-2: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-3: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/2-3: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/4-1: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/4-1: link: PASS - conformance/interfaces/pthread_rwlock_rdlock/5-1: build: PASS - conformance/interfaces/pthread_rwlock_rdlock/5-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/2-1: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/2-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/3-1: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/3-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/5-1: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/5-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-1: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-1: link: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-2: build: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-2: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/2-1: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/2-1: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/3-1: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/3-1: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/5-1: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/5-1: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-1: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-1: link: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-2: build: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-2: link: PASS - conformance/interfaces/pthread_rwlock_tryrdlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_tryrdlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_trywrlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_trywrlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: build: PASS - conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: link: PASS - conformance/interfaces/pthread_rwlock_unlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_unlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_unlock/2-1: build: PASS - conformance/interfaces/pthread_rwlock_unlock/2-1: link: PASS - conformance/interfaces/pthread_rwlock_unlock/3-1: build: PASS - conformance/interfaces/pthread_rwlock_unlock/3-1: link: PASS - conformance/interfaces/pthread_rwlock_unlock/4-1: build: PASS - conformance/interfaces/pthread_rwlock_unlock/4-1: link: PASS - conformance/interfaces/pthread_rwlock_unlock/4-2: build: PASS - conformance/interfaces/pthread_rwlock_unlock/4-2: link: PASS - conformance/interfaces/pthread_rwlock_wrlock/1-1: build: PASS - conformance/interfaces/pthread_rwlock_wrlock/1-1: link: PASS - conformance/interfaces/pthread_rwlock_wrlock/2-1: build: PASS - conformance/interfaces/pthread_rwlock_wrlock/2-1: link: PASS - conformance/interfaces/pthread_rwlock_wrlock/3-1: build: PASS - conformance/interfaces/pthread_rwlock_wrlock/3-1: link: PASS - conformance/interfaces/pthread_rwlockattr_destroy/1-1: build: PASS - conformance/interfaces/pthread_rwlockattr_destroy/1-1: link: PASS - conformance/interfaces/pthread_rwlockattr_destroy/2-1: build: PASS - conformance/interfaces/pthread_rwlockattr_destroy/2-1: link: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/1-1: build: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/1-1: link: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/2-1: build: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/2-1: link: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/4-1: build: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/4-1: link: PASS - conformance/interfaces/pthread_rwlockattr_init/1-1: build: PASS - conformance/interfaces/pthread_rwlockattr_init/1-1: link: PASS - conformance/interfaces/pthread_rwlockattr_init/2-1: build: PASS - conformance/interfaces/pthread_rwlockattr_init/2-1: link: PASS - conformance/interfaces/pthread_rwlockattr_setpshared/1-1: build: PASS - conformance/interfaces/pthread_rwlockattr_setpshared/1-1: link: PASS - conformance/interfaces/pthread_self/1-1: build: PASS - conformance/interfaces/pthread_self/1-1: link: PASS - conformance/interfaces/pthread_setcancelstate/1-1: build: PASS - conformance/interfaces/pthread_setcancelstate/1-1: link: PASS - conformance/interfaces/pthread_setcancelstate/1-2: build: PASS - conformance/interfaces/pthread_setcancelstate/1-2: link: PASS - conformance/interfaces/pthread_setcancelstate/2-1: build: PASS - conformance/interfaces/pthread_setcancelstate/2-1: link: PASS - conformance/interfaces/pthread_setcancelstate/3-1: build: PASS - conformance/interfaces/pthread_setcancelstate/3-1: link: PASS - conformance/interfaces/pthread_setcanceltype/1-1: build: PASS - conformance/interfaces/pthread_setcanceltype/1-1: link: PASS - conformance/interfaces/pthread_setcanceltype/1-2: build: PASS - conformance/interfaces/pthread_setcanceltype/1-2: link: PASS - conformance/interfaces/pthread_setcanceltype/2-1: build: PASS - conformance/interfaces/pthread_setcanceltype/2-1: link: PASS - conformance/interfaces/pthread_setschedparam/1-1: build: PASS - conformance/interfaces/pthread_setschedparam/1-1: link: PASS - conformance/interfaces/pthread_setschedparam/1-2: build: PASS - conformance/interfaces/pthread_setschedparam/1-2: link: PASS - conformance/interfaces/pthread_setschedparam/4-1: build: PASS - conformance/interfaces/pthread_setschedparam/4-1: link: PASS - conformance/interfaces/pthread_setschedparam/5-1: build: PASS - conformance/interfaces/pthread_setschedparam/5-1: link: PASS - conformance/interfaces/pthread_setschedprio/1-1: build: PASS - conformance/interfaces/pthread_setschedprio/1-1: link: PASS - conformance/interfaces/pthread_setspecific/1-1: build: PASS - conformance/interfaces/pthread_setspecific/1-1: link: PASS - conformance/interfaces/pthread_setspecific/1-2: build: PASS - conformance/interfaces/pthread_setspecific/1-2: link: PASS - conformance/interfaces/pthread_sigmask/10-1: build: PASS - conformance/interfaces/pthread_sigmask/10-1: link: PASS - conformance/interfaces/pthread_sigmask/12-1: build: PASS - conformance/interfaces/pthread_sigmask/12-1: link: PASS - conformance/interfaces/pthread_sigmask/14-1: build: PASS - conformance/interfaces/pthread_sigmask/14-1: link: PASS - conformance/interfaces/pthread_sigmask/15-1: build: PASS - conformance/interfaces/pthread_sigmask/15-1: link: PASS - conformance/interfaces/pthread_sigmask/16-1: build: PASS - conformance/interfaces/pthread_sigmask/16-1: link: PASS - conformance/interfaces/pthread_sigmask/18-1: build: PASS - conformance/interfaces/pthread_sigmask/18-1: link: PASS - conformance/interfaces/pthread_sigmask/4-1: build: PASS - conformance/interfaces/pthread_sigmask/4-1: link: PASS - conformance/interfaces/pthread_sigmask/5-1: build: PASS - conformance/interfaces/pthread_sigmask/5-1: link: PASS - conformance/interfaces/pthread_sigmask/6-1: build: PASS - conformance/interfaces/pthread_sigmask/6-1: link: PASS - conformance/interfaces/pthread_sigmask/7-1: build: PASS - conformance/interfaces/pthread_sigmask/7-1: link: PASS - conformance/interfaces/pthread_sigmask/8-1: build: PASS - conformance/interfaces/pthread_sigmask/8-1: link: PASS - conformance/interfaces/pthread_sigmask/8-2: build: PASS - conformance/interfaces/pthread_sigmask/8-2: link: PASS - conformance/interfaces/pthread_sigmask/8-3: build: PASS - conformance/interfaces/pthread_sigmask/8-3: link: PASS - conformance/interfaces/pthread_sigmask/9-1: build: PASS - conformance/interfaces/pthread_sigmask/9-1: link: PASS - conformance/interfaces/pthread_spin_destroy/1-1: build: PASS - conformance/interfaces/pthread_spin_destroy/1-1: link: PASS - conformance/interfaces/pthread_spin_destroy/3-1: build: PASS - conformance/interfaces/pthread_spin_destroy/3-1: link: PASS - conformance/interfaces/pthread_spin_init/1-1: build: PASS - conformance/interfaces/pthread_spin_init/1-1: link: PASS - conformance/interfaces/pthread_spin_init/2-1: build: PASS - conformance/interfaces/pthread_spin_init/2-1: link: PASS - conformance/interfaces/pthread_spin_init/2-2: build: PASS - conformance/interfaces/pthread_spin_init/2-2: link: PASS - conformance/interfaces/pthread_spin_init/4-1: build: PASS - conformance/interfaces/pthread_spin_init/4-1: link: PASS - conformance/interfaces/pthread_spin_lock/1-1: build: PASS - conformance/interfaces/pthread_spin_lock/1-1: link: PASS - conformance/interfaces/pthread_spin_lock/1-2: build: PASS - conformance/interfaces/pthread_spin_lock/1-2: link: PASS - conformance/interfaces/pthread_spin_lock/3-1: build: PASS - conformance/interfaces/pthread_spin_lock/3-1: link: PASS - conformance/interfaces/pthread_spin_lock/3-2: build: PASS - conformance/interfaces/pthread_spin_lock/3-2: link: PASS - conformance/interfaces/pthread_spin_trylock/1-1: build: PASS - conformance/interfaces/pthread_spin_trylock/1-1: link: PASS - conformance/interfaces/pthread_spin_trylock/4-1: build: PASS - conformance/interfaces/pthread_spin_trylock/4-1: link: PASS - conformance/interfaces/pthread_spin_unlock/1-1: build: PASS - conformance/interfaces/pthread_spin_unlock/1-1: link: PASS - conformance/interfaces/pthread_spin_unlock/1-2: build: PASS - conformance/interfaces/pthread_spin_unlock/1-2: link: PASS - conformance/interfaces/pthread_spin_unlock/3-1: build: PASS - conformance/interfaces/pthread_spin_unlock/3-1: link: PASS - conformance/interfaces/pthread_testcancel/1-1: build: PASS - conformance/interfaces/pthread_testcancel/1-1: link: PASS - conformance/interfaces/pthread_testcancel/2-1: build: PASS - conformance/interfaces/pthread_testcancel/2-1: link: PASS - conformance/interfaces/raise/10000-1: build: PASS - conformance/interfaces/raise/10000-1: link: PASS - conformance/interfaces/raise/1-1: build: PASS - conformance/interfaces/raise/1-1: link: PASS - conformance/interfaces/raise/1-2: build: PASS - conformance/interfaces/raise/1-2: link: PASS - conformance/interfaces/raise/2-1: build: PASS - conformance/interfaces/raise/2-1: link: PASS - conformance/interfaces/raise/4-1: build: PASS - conformance/interfaces/raise/4-1: link: PASS - conformance/interfaces/raise/6-1: build: PASS - conformance/interfaces/raise/6-1: link: PASS - conformance/interfaces/raise/7-1: build: PASS - conformance/interfaces/raise/7-1: link: PASS - conformance/interfaces/sched_get_priority_max/1-1: build: PASS - conformance/interfaces/sched_get_priority_max/1-1: link: PASS - conformance/interfaces/sched_get_priority_max/1-2: build: PASS - conformance/interfaces/sched_get_priority_max/1-2: link: PASS - conformance/interfaces/sched_get_priority_max/1-3: build: PASS - conformance/interfaces/sched_get_priority_max/1-3: link: PASS - conformance/interfaces/sched_get_priority_max/1-4: build: PASS - conformance/interfaces/sched_get_priority_max/1-4: link: PASS - conformance/interfaces/sched_get_priority_max/2-1: build: PASS - conformance/interfaces/sched_get_priority_max/2-1: link: PASS - conformance/interfaces/sched_get_priority_min/1-1: build: PASS - conformance/interfaces/sched_get_priority_min/1-1: link: PASS - conformance/interfaces/sched_get_priority_min/1-2: build: PASS - conformance/interfaces/sched_get_priority_min/1-2: link: PASS - conformance/interfaces/sched_get_priority_min/1-3: build: PASS - conformance/interfaces/sched_get_priority_min/1-3: link: PASS - conformance/interfaces/sched_get_priority_min/1-4: build: PASS - conformance/interfaces/sched_get_priority_min/1-4: link: PASS - conformance/interfaces/sched_get_priority_min/2-1: build: PASS - conformance/interfaces/sched_get_priority_min/2-1: link: PASS - conformance/interfaces/sched_getparam/1-1: build: PASS - conformance/interfaces/sched_getparam/1-1: link: PASS - conformance/interfaces/sched_getparam/2-1: build: PASS - conformance/interfaces/sched_getparam/2-1: link: PASS - conformance/interfaces/sched_getparam/3-1: build: PASS - conformance/interfaces/sched_getparam/3-1: link: PASS - conformance/interfaces/sched_getparam/4-1: build: PASS - conformance/interfaces/sched_getparam/4-1: link: PASS - conformance/interfaces/sched_getparam/6-1: build: PASS - conformance/interfaces/sched_getparam/6-1: link: PASS - conformance/interfaces/sched_getparam/speculative/7-1: build: PASS - conformance/interfaces/sched_getparam/speculative/7-1: link: PASS - conformance/interfaces/sched_getscheduler/1-1: build: PASS - conformance/interfaces/sched_getscheduler/1-1: link: PASS - conformance/interfaces/sched_getscheduler/2-1: build: PASS - conformance/interfaces/sched_getscheduler/2-1: link: PASS - conformance/interfaces/sched_getscheduler/3-1: build: PASS - conformance/interfaces/sched_getscheduler/3-1: link: PASS - conformance/interfaces/sched_getscheduler/4-1: build: PASS - conformance/interfaces/sched_getscheduler/4-1: link: PASS - conformance/interfaces/sched_getscheduler/5-1: build: PASS - conformance/interfaces/sched_getscheduler/5-1: link: PASS - conformance/interfaces/sched_getscheduler/7-1: build: PASS - conformance/interfaces/sched_getscheduler/7-1: link: PASS - conformance/interfaces/sched_rr_get_interval/1-1: build: PASS - conformance/interfaces/sched_rr_get_interval/1-1: link: PASS - conformance/interfaces/sched_rr_get_interval/2-1: build: PASS - conformance/interfaces/sched_rr_get_interval/2-1: link: PASS - conformance/interfaces/sched_rr_get_interval/3-1: build: PASS - conformance/interfaces/sched_rr_get_interval/3-1: link: PASS - conformance/interfaces/sched_rr_get_interval/speculative/5-1: build: PASS - conformance/interfaces/sched_rr_get_interval/speculative/5-1: link: PASS - conformance/interfaces/sched_setparam/1-1: build: PASS - conformance/interfaces/sched_setparam/1-1: link: PASS - conformance/interfaces/sched_setparam/10-1: build: PASS - conformance/interfaces/sched_setparam/10-1: link: PASS - conformance/interfaces/sched_setparam/12-1: build: PASS - conformance/interfaces/sched_setparam/12-1: link: PASS - conformance/interfaces/sched_setparam/13-1: build: PASS - conformance/interfaces/sched_setparam/13-1: link: PASS - conformance/interfaces/sched_setparam/14-1: build: PASS - conformance/interfaces/sched_setparam/14-1: link: PASS - conformance/interfaces/sched_setparam/15-1: build: PASS - conformance/interfaces/sched_setparam/15-1: link: PASS - conformance/interfaces/sched_setparam/16-1: build: PASS - conformance/interfaces/sched_setparam/16-1: link: PASS - conformance/interfaces/sched_setparam/17-1: build: PASS - conformance/interfaces/sched_setparam/17-1: link: PASS - conformance/interfaces/sched_setparam/18-1: build: PASS - conformance/interfaces/sched_setparam/18-1: link: PASS - conformance/interfaces/sched_setparam/19-1: build: PASS - conformance/interfaces/sched_setparam/19-1: link: PASS - conformance/interfaces/sched_setparam/2-1: build: PASS - conformance/interfaces/sched_setparam/2-1: link: PASS - conformance/interfaces/sched_setparam/2-2: build: PASS - conformance/interfaces/sched_setparam/2-2: link: PASS - conformance/interfaces/sched_setparam/20-1: build: PASS - conformance/interfaces/sched_setparam/20-1: link: PASS - conformance/interfaces/sched_setparam/21-1: build: PASS - conformance/interfaces/sched_setparam/21-1: link: PASS - conformance/interfaces/sched_setparam/21-2: build: PASS - conformance/interfaces/sched_setparam/21-2: link: PASS - conformance/interfaces/sched_setparam/22-1: build: PASS - conformance/interfaces/sched_setparam/22-1: link: PASS - conformance/interfaces/sched_setparam/23-1: build: PASS - conformance/interfaces/sched_setparam/23-1: link: PASS - conformance/interfaces/sched_setparam/23-2: build: PASS - conformance/interfaces/sched_setparam/23-2: link: PASS - conformance/interfaces/sched_setparam/23-3: build: PASS - conformance/interfaces/sched_setparam/23-3: link: PASS - conformance/interfaces/sched_setparam/23-4: build: PASS - conformance/interfaces/sched_setparam/23-4: link: PASS - conformance/interfaces/sched_setparam/23-5: build: PASS - conformance/interfaces/sched_setparam/23-5: link: PASS - conformance/interfaces/sched_setparam/23-6: build: PASS - conformance/interfaces/sched_setparam/23-6: link: PASS - conformance/interfaces/sched_setparam/23-7: build: PASS - conformance/interfaces/sched_setparam/23-7: link: PASS - conformance/interfaces/sched_setparam/25-1: build: PASS - conformance/interfaces/sched_setparam/25-1: link: PASS - conformance/interfaces/sched_setparam/25-2: build: PASS - conformance/interfaces/sched_setparam/25-2: link: PASS - conformance/interfaces/sched_setparam/25-3: build: PASS - conformance/interfaces/sched_setparam/25-3: link: SKIP - conformance/interfaces/sched_setparam/25-4: build: PASS - conformance/interfaces/sched_setparam/25-4: link: SKIP - conformance/interfaces/sched_setparam/26-1: build: PASS - conformance/interfaces/sched_setparam/26-1: link: PASS - conformance/interfaces/sched_setparam/27-1: build: PASS - conformance/interfaces/sched_setparam/27-1: link: PASS - conformance/interfaces/sched_setparam/3-1: build: PASS - conformance/interfaces/sched_setparam/3-1: link: PASS - conformance/interfaces/sched_setparam/5-1: build: PASS - conformance/interfaces/sched_setparam/5-1: link: PASS - conformance/interfaces/sched_setparam/6-1: build: PASS - conformance/interfaces/sched_setparam/6-1: link: PASS - conformance/interfaces/sched_setparam/7-1: build: PASS - conformance/interfaces/sched_setparam/7-1: link: PASS - conformance/interfaces/sched_setparam/8-1: build: PASS - conformance/interfaces/sched_setparam/8-1: link: PASS - conformance/interfaces/sched_setparam/9-1: build: PASS - conformance/interfaces/sched_setparam/9-1: link: PASS - conformance/interfaces/sched_setscheduler/1-1: build: PASS - conformance/interfaces/sched_setscheduler/1-1: link: PASS - conformance/interfaces/sched_setscheduler/10-1: build: PASS - conformance/interfaces/sched_setscheduler/10-1: link: PASS - conformance/interfaces/sched_setscheduler/11-1: build: PASS - conformance/interfaces/sched_setscheduler/11-1: link: PASS - conformance/interfaces/sched_setscheduler/12-1: build: PASS - conformance/interfaces/sched_setscheduler/12-1: link: PASS - conformance/interfaces/sched_setscheduler/13-1: build: PASS - conformance/interfaces/sched_setscheduler/13-1: link: PASS - conformance/interfaces/sched_setscheduler/14-1: build: PASS - conformance/interfaces/sched_setscheduler/14-1: link: PASS - conformance/interfaces/sched_setscheduler/15-1: build: PASS - conformance/interfaces/sched_setscheduler/15-1: link: PASS - conformance/interfaces/sched_setscheduler/15-2: build: PASS - conformance/interfaces/sched_setscheduler/15-2: link: PASS - conformance/interfaces/sched_setscheduler/16-1: build: PASS - conformance/interfaces/sched_setscheduler/16-1: link: PASS - conformance/interfaces/sched_setscheduler/17-1: build: PASS - conformance/interfaces/sched_setscheduler/17-1: link: PASS - conformance/interfaces/sched_setscheduler/17-2: build: PASS - conformance/interfaces/sched_setscheduler/17-2: link: PASS - conformance/interfaces/sched_setscheduler/17-3: build: PASS - conformance/interfaces/sched_setscheduler/17-3: link: PASS - conformance/interfaces/sched_setscheduler/17-4: build: PASS - conformance/interfaces/sched_setscheduler/17-4: link: PASS - conformance/interfaces/sched_setscheduler/17-5: build: PASS - conformance/interfaces/sched_setscheduler/17-5: link: PASS - conformance/interfaces/sched_setscheduler/17-6: build: PASS - conformance/interfaces/sched_setscheduler/17-6: link: PASS - conformance/interfaces/sched_setscheduler/17-7: build: PASS - conformance/interfaces/sched_setscheduler/17-7: link: PASS - conformance/interfaces/sched_setscheduler/19-1: build: PASS - conformance/interfaces/sched_setscheduler/19-1: link: PASS - conformance/interfaces/sched_setscheduler/19-2: build: PASS - conformance/interfaces/sched_setscheduler/19-2: link: PASS - conformance/interfaces/sched_setscheduler/19-3: build: PASS - conformance/interfaces/sched_setscheduler/19-3: link: PASS - conformance/interfaces/sched_setscheduler/19-4: build: PASS - conformance/interfaces/sched_setscheduler/19-4: link: PASS - conformance/interfaces/sched_setscheduler/19-5: build: PASS - conformance/interfaces/sched_setscheduler/19-5: link: PASS - conformance/interfaces/sched_setscheduler/2-1: build: PASS - conformance/interfaces/sched_setscheduler/2-1: link: PASS - conformance/interfaces/sched_setscheduler/20-1: build: PASS - conformance/interfaces/sched_setscheduler/20-1: link: PASS - conformance/interfaces/sched_setscheduler/21-1: build: PASS - conformance/interfaces/sched_setscheduler/21-1: link: PASS - conformance/interfaces/sched_setscheduler/22-1: build: PASS - conformance/interfaces/sched_setscheduler/22-1: link: PASS - conformance/interfaces/sched_setscheduler/22-2: build: PASS - conformance/interfaces/sched_setscheduler/22-2: link: PASS - conformance/interfaces/sched_setscheduler/4-1: build: PASS - conformance/interfaces/sched_setscheduler/4-1: link: PASS - conformance/interfaces/sched_setscheduler/5-1: build: PASS - conformance/interfaces/sched_setscheduler/5-1: link: PASS - conformance/interfaces/sched_setscheduler/6-1: build: PASS - conformance/interfaces/sched_setscheduler/6-1: link: PASS - conformance/interfaces/sched_setscheduler/7-1: build: PASS - conformance/interfaces/sched_setscheduler/7-1: link: PASS - conformance/interfaces/sched_setscheduler/9-1: build: PASS - conformance/interfaces/sched_setscheduler/9-1: link: PASS conformance/interfaces/sched_yield/1-1: build: FAILED: Compiler output: cc1: warnings being treated as errors conformance/interfaces/sched_yield/1-1.c: In function ‘set_process_affinity’: @@ -2550,310 +372,16 @@ interrupted using `kill [PID]`. conformance/interfaces/sched_yield/1-1.c:136: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’ conformance/interfaces/sched_yield/1-1.c: In function ‘busy_thread’: conformance/interfaces/sched_yield/1-1.c:159: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’ - conformance/interfaces/sched_yield/2-1: build: PASS - conformance/interfaces/sched_yield/2-1: link: PASS - conformance/interfaces/sem_close/1-1: build: PASS - conformance/interfaces/sem_close/1-1: link: PASS - conformance/interfaces/sem_close/2-1: build: PASS - conformance/interfaces/sem_close/2-1: link: PASS - conformance/interfaces/sem_close/3-1: build: PASS - conformance/interfaces/sem_close/3-1: link: PASS - conformance/interfaces/sem_close/3-2: build: PASS - conformance/interfaces/sem_close/3-2: link: PASS - conformance/interfaces/sem_destroy/3-1: build: PASS - conformance/interfaces/sem_destroy/3-1: link: PASS - conformance/interfaces/sem_destroy/4-1: build: PASS - conformance/interfaces/sem_destroy/4-1: link: PASS - conformance/interfaces/sem_getvalue/1-1: build: PASS - conformance/interfaces/sem_getvalue/1-1: link: PASS - conformance/interfaces/sem_getvalue/2-1: build: PASS - conformance/interfaces/sem_getvalue/2-1: link: PASS - conformance/interfaces/sem_getvalue/2-2: build: PASS - conformance/interfaces/sem_getvalue/2-2: link: PASS - conformance/interfaces/sem_getvalue/4-1: build: PASS - conformance/interfaces/sem_getvalue/4-1: link: PASS - conformance/interfaces/sem_getvalue/5-1: build: PASS - conformance/interfaces/sem_getvalue/5-1: link: PASS - conformance/interfaces/sem_init/1-1: build: PASS - conformance/interfaces/sem_init/1-1: link: PASS - conformance/interfaces/sem_init/2-1: build: PASS - conformance/interfaces/sem_init/2-1: link: PASS - conformance/interfaces/sem_init/2-2: build: PASS - conformance/interfaces/sem_init/2-2: link: PASS - conformance/interfaces/sem_init/3-1: build: PASS - conformance/interfaces/sem_init/3-1: link: PASS - conformance/interfaces/sem_init/3-2: build: PASS - conformance/interfaces/sem_init/3-2: link: PASS - conformance/interfaces/sem_init/3-3: build: PASS - conformance/interfaces/sem_init/3-3: link: PASS - conformance/interfaces/sem_init/5-1: build: PASS - conformance/interfaces/sem_init/5-1: link: PASS - conformance/interfaces/sem_init/5-2: build: PASS - conformance/interfaces/sem_init/5-2: link: PASS conformance/interfaces/sem_init/6-1: build: FAILED: Compiler output: conformance/interfaces/sem_init/6-1.c: In function ‘main’: conformance/interfaces/sem_init/6-1.c:29: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function) conformance/interfaces/sem_init/6-1.c:29: error: (Each undeclared identifier is reported only once conformance/interfaces/sem_init/6-1.c:29: error: for each function it appears in.) - conformance/interfaces/sem_init/7-1: build: PASS - conformance/interfaces/sem_init/7-1: link: PASS - conformance/interfaces/sem_open/1-1: build: PASS - conformance/interfaces/sem_open/1-1: link: PASS - conformance/interfaces/sem_open/1-2: build: PASS - conformance/interfaces/sem_open/1-2: link: PASS - conformance/interfaces/sem_open/1-3: build: PASS - conformance/interfaces/sem_open/1-3: link: PASS - conformance/interfaces/sem_open/1-4: build: PASS - conformance/interfaces/sem_open/1-4: link: PASS - conformance/interfaces/sem_open/10-1: build: PASS - conformance/interfaces/sem_open/10-1: link: PASS - conformance/interfaces/sem_open/15-1: build: PASS - conformance/interfaces/sem_open/15-1: link: PASS - conformance/interfaces/sem_open/2-1: build: PASS - conformance/interfaces/sem_open/2-1: link: PASS - conformance/interfaces/sem_open/2-2: build: PASS - conformance/interfaces/sem_open/2-2: link: PASS - conformance/interfaces/sem_open/3-1: build: PASS - conformance/interfaces/sem_open/3-1: link: PASS - conformance/interfaces/sem_open/4-1: build: PASS - conformance/interfaces/sem_open/4-1: link: PASS conformance/interfaces/sem_open/5-1: build: FAILED: Compiler output: conformance/interfaces/sem_open/5-1.c: In function ‘main’: conformance/interfaces/sem_open/5-1.c:32: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function) conformance/interfaces/sem_open/5-1.c:32: error: (Each undeclared identifier is reported only once conformance/interfaces/sem_open/5-1.c:32: error: for each function it appears in.) - conformance/interfaces/sem_open/6-1: build: PASS - conformance/interfaces/sem_open/6-1: link: PASS - conformance/interfaces/sem_post/1-1: build: PASS - conformance/interfaces/sem_post/1-1: link: PASS - conformance/interfaces/sem_post/1-2: build: PASS - conformance/interfaces/sem_post/1-2: link: PASS - conformance/interfaces/sem_post/2-1: build: PASS - conformance/interfaces/sem_post/2-1: link: PASS - conformance/interfaces/sem_post/4-1: build: PASS - conformance/interfaces/sem_post/4-1: link: PASS - conformance/interfaces/sem_post/5-1: build: PASS - conformance/interfaces/sem_post/5-1: link: PASS - conformance/interfaces/sem_post/6-1: build: PASS - conformance/interfaces/sem_post/6-1: link: PASS - conformance/interfaces/sem_post/8-1: build: PASS - conformance/interfaces/sem_post/8-1: link: PASS - conformance/interfaces/sem_timedwait/1-1: build: PASS - conformance/interfaces/sem_timedwait/1-1: link: PASS - conformance/interfaces/sem_timedwait/10-1: build: PASS - conformance/interfaces/sem_timedwait/10-1: link: PASS - conformance/interfaces/sem_timedwait/11-1: build: PASS - conformance/interfaces/sem_timedwait/11-1: link: PASS - conformance/interfaces/sem_timedwait/2-1: build: PASS - conformance/interfaces/sem_timedwait/2-1: link: PASS - conformance/interfaces/sem_timedwait/2-2: build: PASS - conformance/interfaces/sem_timedwait/2-2: link: PASS - conformance/interfaces/sem_timedwait/3-1: build: PASS - conformance/interfaces/sem_timedwait/3-1: link: PASS - conformance/interfaces/sem_timedwait/4-1: build: PASS - conformance/interfaces/sem_timedwait/4-1: link: PASS - conformance/interfaces/sem_timedwait/6-1: build: PASS - conformance/interfaces/sem_timedwait/6-1: link: PASS - conformance/interfaces/sem_timedwait/6-2: build: PASS - conformance/interfaces/sem_timedwait/6-2: link: PASS - conformance/interfaces/sem_timedwait/7-1: build: PASS - conformance/interfaces/sem_timedwait/7-1: link: PASS - conformance/interfaces/sem_timedwait/9-1: build: PASS - conformance/interfaces/sem_timedwait/9-1: link: PASS - conformance/interfaces/sem_unlink/1-1: build: PASS - conformance/interfaces/sem_unlink/1-1: link: PASS - conformance/interfaces/sem_unlink/2-1: build: PASS - conformance/interfaces/sem_unlink/2-1: link: PASS - conformance/interfaces/sem_unlink/2-2: build: PASS - conformance/interfaces/sem_unlink/2-2: link: PASS - conformance/interfaces/sem_unlink/3-1: build: PASS - conformance/interfaces/sem_unlink/3-1: link: PASS - conformance/interfaces/sem_unlink/4-1: build: PASS - conformance/interfaces/sem_unlink/4-1: link: PASS - conformance/interfaces/sem_unlink/4-2: build: PASS - conformance/interfaces/sem_unlink/4-2: link: PASS - conformance/interfaces/sem_unlink/5-1: build: PASS - conformance/interfaces/sem_unlink/5-1: link: PASS - conformance/interfaces/sem_unlink/6-1: build: PASS - conformance/interfaces/sem_unlink/6-1: link: PASS - conformance/interfaces/sem_unlink/7-1: build: PASS - conformance/interfaces/sem_unlink/7-1: link: PASS - conformance/interfaces/sem_unlink/9-1: build: PASS - conformance/interfaces/sem_unlink/9-1: link: PASS - conformance/interfaces/sem_wait/1-1: build: PASS - conformance/interfaces/sem_wait/1-1: link: PASS - conformance/interfaces/sem_wait/1-2: build: PASS - conformance/interfaces/sem_wait/1-2: link: PASS - conformance/interfaces/sem_wait/11-1: build: PASS - conformance/interfaces/sem_wait/11-1: link: PASS - conformance/interfaces/sem_wait/12-1: build: PASS - conformance/interfaces/sem_wait/12-1: link: PASS - conformance/interfaces/sem_wait/13-1: build: PASS - conformance/interfaces/sem_wait/13-1: link: PASS - conformance/interfaces/sem_wait/3-1: build: PASS - conformance/interfaces/sem_wait/3-1: link: PASS - conformance/interfaces/sem_wait/5-1: build: PASS - conformance/interfaces/sem_wait/5-1: link: PASS - conformance/interfaces/sem_wait/7-1: build: PASS - conformance/interfaces/sem_wait/7-1: link: PASS - conformance/interfaces/shm_open/1-1: build: PASS - conformance/interfaces/shm_open/1-1: link: PASS - conformance/interfaces/shm_open/10-1: build: PASS - conformance/interfaces/shm_open/10-1: link: PASS - conformance/interfaces/shm_open/11-1: build: PASS - conformance/interfaces/shm_open/11-1: link: PASS - conformance/interfaces/shm_open/12-1: build: PASS - conformance/interfaces/shm_open/12-1: link: PASS - conformance/interfaces/shm_open/13-1: build: PASS - conformance/interfaces/shm_open/13-1: link: PASS - conformance/interfaces/shm_open/14-2: build: PASS - conformance/interfaces/shm_open/14-2: link: PASS - conformance/interfaces/shm_open/15-1: build: PASS - conformance/interfaces/shm_open/15-1: link: PASS - conformance/interfaces/shm_open/16-1: build: PASS - conformance/interfaces/shm_open/16-1: link: PASS - conformance/interfaces/shm_open/17-1: build: PASS - conformance/interfaces/shm_open/17-1: link: PASS - conformance/interfaces/shm_open/18-1: build: PASS - conformance/interfaces/shm_open/18-1: link: PASS - conformance/interfaces/shm_open/19-1: build: PASS - conformance/interfaces/shm_open/19-1: link: PASS - conformance/interfaces/shm_open/2-1: build: PASS - conformance/interfaces/shm_open/2-1: link: PASS - conformance/interfaces/shm_open/20-1: build: PASS - conformance/interfaces/shm_open/20-1: link: PASS - conformance/interfaces/shm_open/20-2: build: PASS - conformance/interfaces/shm_open/20-2: link: PASS - conformance/interfaces/shm_open/20-3: build: PASS - conformance/interfaces/shm_open/20-3: link: PASS - conformance/interfaces/shm_open/21-1: build: PASS - conformance/interfaces/shm_open/21-1: link: PASS - conformance/interfaces/shm_open/22-1: build: PASS - conformance/interfaces/shm_open/22-1: link: PASS - conformance/interfaces/shm_open/23-1: build: PASS - conformance/interfaces/shm_open/23-1: link: PASS - conformance/interfaces/shm_open/24-1: build: PASS - conformance/interfaces/shm_open/24-1: link: PASS - conformance/interfaces/shm_open/25-1: build: PASS - conformance/interfaces/shm_open/25-1: link: PASS - conformance/interfaces/shm_open/26-1: build: PASS - conformance/interfaces/shm_open/26-1: link: PASS - conformance/interfaces/shm_open/26-2: build: PASS - conformance/interfaces/shm_open/26-2: link: PASS - conformance/interfaces/shm_open/27-1: build: PASS - conformance/interfaces/shm_open/27-1: link: PASS - conformance/interfaces/shm_open/28-1: build: PASS - conformance/interfaces/shm_open/28-1: link: PASS - conformance/interfaces/shm_open/28-2: build: PASS - conformance/interfaces/shm_open/28-2: link: PASS - conformance/interfaces/shm_open/28-3: build: PASS - conformance/interfaces/shm_open/28-3: link: PASS - conformance/interfaces/shm_open/29-1: build: PASS - conformance/interfaces/shm_open/29-1: link: PASS - conformance/interfaces/shm_open/3-1: build: PASS - conformance/interfaces/shm_open/3-1: link: PASS - conformance/interfaces/shm_open/32-1: build: PASS - conformance/interfaces/shm_open/32-1: link: PASS - conformance/interfaces/shm_open/34-1: build: PASS - conformance/interfaces/shm_open/34-1: link: PASS - conformance/interfaces/shm_open/36-1: build: PASS - conformance/interfaces/shm_open/36-1: link: PASS - conformance/interfaces/shm_open/37-1: build: PASS - conformance/interfaces/shm_open/37-1: link: PASS - conformance/interfaces/shm_open/38-1: build: PASS - conformance/interfaces/shm_open/38-1: link: PASS - conformance/interfaces/shm_open/39-1: build: PASS - conformance/interfaces/shm_open/39-1: link: PASS - conformance/interfaces/shm_open/39-2: build: PASS - conformance/interfaces/shm_open/39-2: link: PASS - conformance/interfaces/shm_open/41-1: build: PASS - conformance/interfaces/shm_open/41-1: link: PASS - conformance/interfaces/shm_open/42-1: build: PASS - conformance/interfaces/shm_open/42-1: link: PASS - conformance/interfaces/shm_open/5-1: build: PASS - conformance/interfaces/shm_open/5-1: link: PASS - conformance/interfaces/shm_open/6-1: build: PASS - conformance/interfaces/shm_open/6-1: link: PASS - conformance/interfaces/shm_open/7-1: build: PASS - conformance/interfaces/shm_open/7-1: link: PASS - conformance/interfaces/shm_open/8-1: build: PASS - conformance/interfaces/shm_open/8-1: link: PASS - conformance/interfaces/shm_open/9-1: build: PASS - conformance/interfaces/shm_open/9-1: link: PASS - conformance/interfaces/shm_unlink/1-1: build: PASS - conformance/interfaces/shm_unlink/1-1: link: PASS - conformance/interfaces/shm_unlink/10-1: build: PASS - conformance/interfaces/shm_unlink/10-1: link: PASS - conformance/interfaces/shm_unlink/10-2: build: PASS - conformance/interfaces/shm_unlink/10-2: link: PASS - conformance/interfaces/shm_unlink/11-1: build: PASS - conformance/interfaces/shm_unlink/11-1: link: PASS - conformance/interfaces/shm_unlink/2-1: build: PASS - conformance/interfaces/shm_unlink/2-1: link: PASS - conformance/interfaces/shm_unlink/3-1: build: PASS - conformance/interfaces/shm_unlink/3-1: link: PASS - conformance/interfaces/shm_unlink/5-1: build: PASS - conformance/interfaces/shm_unlink/5-1: link: PASS - conformance/interfaces/shm_unlink/6-1: build: PASS - conformance/interfaces/shm_unlink/6-1: link: PASS - conformance/interfaces/shm_unlink/8-1: build: PASS - conformance/interfaces/shm_unlink/8-1: link: PASS - conformance/interfaces/shm_unlink/9-1: build: PASS - conformance/interfaces/shm_unlink/9-1: link: PASS - conformance/interfaces/sigaction/8-16: build: PASS - conformance/interfaces/sigaction/8-16: link: PASS - conformance/interfaces/sigaction/1-1: build: PASS - conformance/interfaces/sigaction/1-1: link: PASS - conformance/interfaces/sigaction/1-10: build: PASS - conformance/interfaces/sigaction/1-10: link: PASS - conformance/interfaces/sigaction/1-11: build: PASS - conformance/interfaces/sigaction/1-11: link: PASS - conformance/interfaces/sigaction/1-12: build: PASS - conformance/interfaces/sigaction/1-12: link: PASS - conformance/interfaces/sigaction/1-13: build: PASS - conformance/interfaces/sigaction/1-13: link: PASS - conformance/interfaces/sigaction/1-14: build: PASS - conformance/interfaces/sigaction/1-14: link: PASS - conformance/interfaces/sigaction/1-15: build: PASS - conformance/interfaces/sigaction/1-15: link: PASS - conformance/interfaces/sigaction/1-16: build: PASS - conformance/interfaces/sigaction/1-16: link: PASS - conformance/interfaces/sigaction/1-17: build: PASS - conformance/interfaces/sigaction/1-17: link: PASS - conformance/interfaces/sigaction/1-18: build: PASS - conformance/interfaces/sigaction/1-18: link: PASS - conformance/interfaces/sigaction/1-19: build: PASS - conformance/interfaces/sigaction/1-19: link: PASS - conformance/interfaces/sigaction/1-2: build: PASS - conformance/interfaces/sigaction/1-2: link: PASS - conformance/interfaces/sigaction/1-20: build: PASS - conformance/interfaces/sigaction/1-20: link: PASS - conformance/interfaces/sigaction/1-21: build: PASS - conformance/interfaces/sigaction/1-21: link: PASS - conformance/interfaces/sigaction/1-22: build: PASS - conformance/interfaces/sigaction/1-22: link: PASS - conformance/interfaces/sigaction/1-23: build: PASS - conformance/interfaces/sigaction/1-23: link: PASS - conformance/interfaces/sigaction/1-24: build: PASS - conformance/interfaces/sigaction/1-24: link: PASS - conformance/interfaces/sigaction/1-25: build: PASS - conformance/interfaces/sigaction/1-25: link: PASS - conformance/interfaces/sigaction/1-26: build: PASS - conformance/interfaces/sigaction/1-26: link: PASS - conformance/interfaces/sigaction/1-3: build: PASS - conformance/interfaces/sigaction/1-3: link: PASS - conformance/interfaces/sigaction/1-4: build: PASS - conformance/interfaces/sigaction/1-4: link: PASS - conformance/interfaces/sigaction/1-5: build: PASS - conformance/interfaces/sigaction/1-5: link: PASS - conformance/interfaces/sigaction/1-6: build: PASS - conformance/interfaces/sigaction/1-6: link: PASS - conformance/interfaces/sigaction/1-7: build: PASS - conformance/interfaces/sigaction/1-7: link: PASS - conformance/interfaces/sigaction/1-8: build: PASS - conformance/interfaces/sigaction/1-8: link: PASS - conformance/interfaces/sigaction/1-9: build: PASS - conformance/interfaces/sigaction/1-9: link: PASS conformance/interfaces/sigaction/10-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/10-1.c: In function ‘main’: conformance/interfaces/sigaction/10-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -2864,318 +392,6 @@ interrupted using `kill [PID]`. conformance/interfaces/sigaction/11-1.c:50: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigaction/11-1.c:50: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/11-1.c:50: error: for each function it appears in.) - conformance/interfaces/sigaction/12-1: build: PASS - conformance/interfaces/sigaction/12-1: link: PASS - conformance/interfaces/sigaction/12-10: build: PASS - conformance/interfaces/sigaction/12-10: link: PASS - conformance/interfaces/sigaction/12-11: build: PASS - conformance/interfaces/sigaction/12-11: link: PASS - conformance/interfaces/sigaction/12-12: build: PASS - conformance/interfaces/sigaction/12-12: link: PASS - conformance/interfaces/sigaction/12-13: build: PASS - conformance/interfaces/sigaction/12-13: link: PASS - conformance/interfaces/sigaction/12-14: build: PASS - conformance/interfaces/sigaction/12-14: link: PASS - conformance/interfaces/sigaction/12-15: build: PASS - conformance/interfaces/sigaction/12-15: link: PASS - conformance/interfaces/sigaction/12-16: build: PASS - conformance/interfaces/sigaction/12-16: link: PASS - conformance/interfaces/sigaction/12-17: build: PASS - conformance/interfaces/sigaction/12-17: link: PASS - conformance/interfaces/sigaction/12-18: build: PASS - conformance/interfaces/sigaction/12-18: link: PASS - conformance/interfaces/sigaction/12-19: build: PASS - conformance/interfaces/sigaction/12-19: link: PASS - conformance/interfaces/sigaction/12-2: build: PASS - conformance/interfaces/sigaction/12-2: link: PASS - conformance/interfaces/sigaction/12-20: build: PASS - conformance/interfaces/sigaction/12-20: link: PASS - conformance/interfaces/sigaction/12-21: build: PASS - conformance/interfaces/sigaction/12-21: link: PASS - conformance/interfaces/sigaction/12-22: build: PASS - conformance/interfaces/sigaction/12-22: link: PASS - conformance/interfaces/sigaction/12-23: build: PASS - conformance/interfaces/sigaction/12-23: link: PASS - conformance/interfaces/sigaction/12-24: build: PASS - conformance/interfaces/sigaction/12-24: link: PASS - conformance/interfaces/sigaction/12-25: build: PASS - conformance/interfaces/sigaction/12-25: link: PASS - conformance/interfaces/sigaction/12-26: build: PASS - conformance/interfaces/sigaction/12-26: link: PASS - conformance/interfaces/sigaction/12-27: build: PASS - conformance/interfaces/sigaction/12-27: link: PASS - conformance/interfaces/sigaction/12-28: build: PASS - conformance/interfaces/sigaction/12-28: link: PASS - conformance/interfaces/sigaction/12-29: build: PASS - conformance/interfaces/sigaction/12-29: link: PASS - conformance/interfaces/sigaction/12-3: build: PASS - conformance/interfaces/sigaction/12-3: link: PASS - conformance/interfaces/sigaction/12-30: build: PASS - conformance/interfaces/sigaction/12-30: link: PASS - conformance/interfaces/sigaction/12-31: build: PASS - conformance/interfaces/sigaction/12-31: link: PASS - conformance/interfaces/sigaction/12-32: build: PASS - conformance/interfaces/sigaction/12-32: link: PASS - conformance/interfaces/sigaction/12-33: build: PASS - conformance/interfaces/sigaction/12-33: link: PASS - conformance/interfaces/sigaction/12-34: build: PASS - conformance/interfaces/sigaction/12-34: link: PASS - conformance/interfaces/sigaction/12-35: build: PASS - conformance/interfaces/sigaction/12-35: link: PASS - conformance/interfaces/sigaction/12-36: build: PASS - conformance/interfaces/sigaction/12-36: link: PASS - conformance/interfaces/sigaction/12-37: build: PASS - conformance/interfaces/sigaction/12-37: link: PASS - conformance/interfaces/sigaction/12-38: build: PASS - conformance/interfaces/sigaction/12-38: link: PASS - conformance/interfaces/sigaction/12-39: build: PASS - conformance/interfaces/sigaction/12-39: link: PASS - conformance/interfaces/sigaction/12-4: build: PASS - conformance/interfaces/sigaction/12-4: link: PASS - conformance/interfaces/sigaction/12-40: build: PASS - conformance/interfaces/sigaction/12-40: link: PASS - conformance/interfaces/sigaction/12-41: build: PASS - conformance/interfaces/sigaction/12-41: link: PASS - conformance/interfaces/sigaction/12-42: build: PASS - conformance/interfaces/sigaction/12-42: link: PASS - conformance/interfaces/sigaction/12-43: build: PASS - conformance/interfaces/sigaction/12-43: link: PASS - conformance/interfaces/sigaction/12-44: build: PASS - conformance/interfaces/sigaction/12-44: link: PASS - conformance/interfaces/sigaction/12-45: build: PASS - conformance/interfaces/sigaction/12-45: link: PASS - conformance/interfaces/sigaction/12-46: build: PASS - conformance/interfaces/sigaction/12-46: link: PASS - conformance/interfaces/sigaction/12-47: build: PASS - conformance/interfaces/sigaction/12-47: link: PASS - conformance/interfaces/sigaction/12-48: build: PASS - conformance/interfaces/sigaction/12-48: link: PASS - conformance/interfaces/sigaction/12-49: build: PASS - conformance/interfaces/sigaction/12-49: link: PASS - conformance/interfaces/sigaction/12-5: build: PASS - conformance/interfaces/sigaction/12-5: link: PASS - conformance/interfaces/sigaction/12-50: build: PASS - conformance/interfaces/sigaction/12-50: link: PASS - conformance/interfaces/sigaction/12-51: build: PASS - conformance/interfaces/sigaction/12-51: link: PASS - conformance/interfaces/sigaction/12-52: build: PASS - conformance/interfaces/sigaction/12-52: link: PASS - conformance/interfaces/sigaction/12-6: build: PASS - conformance/interfaces/sigaction/12-6: link: PASS - conformance/interfaces/sigaction/12-7: build: PASS - conformance/interfaces/sigaction/12-7: link: PASS - conformance/interfaces/sigaction/12-8: build: PASS - conformance/interfaces/sigaction/12-8: link: PASS - conformance/interfaces/sigaction/12-9: build: PASS - conformance/interfaces/sigaction/12-9: link: PASS - conformance/interfaces/sigaction/13-1: build: PASS - conformance/interfaces/sigaction/13-1: link: PASS - conformance/interfaces/sigaction/13-10: build: PASS - conformance/interfaces/sigaction/13-10: link: PASS - conformance/interfaces/sigaction/13-11: build: PASS - conformance/interfaces/sigaction/13-11: link: PASS - conformance/interfaces/sigaction/13-12: build: PASS - conformance/interfaces/sigaction/13-12: link: PASS - conformance/interfaces/sigaction/13-13: build: PASS - conformance/interfaces/sigaction/13-13: link: PASS - conformance/interfaces/sigaction/13-14: build: PASS - conformance/interfaces/sigaction/13-14: link: PASS - conformance/interfaces/sigaction/13-15: build: PASS - conformance/interfaces/sigaction/13-15: link: PASS - conformance/interfaces/sigaction/13-16: build: PASS - conformance/interfaces/sigaction/13-16: link: PASS - conformance/interfaces/sigaction/13-17: build: PASS - conformance/interfaces/sigaction/13-17: link: PASS - conformance/interfaces/sigaction/13-18: build: PASS - conformance/interfaces/sigaction/13-18: link: PASS - conformance/interfaces/sigaction/13-19: build: PASS - conformance/interfaces/sigaction/13-19: link: PASS - conformance/interfaces/sigaction/13-2: build: PASS - conformance/interfaces/sigaction/13-2: link: PASS - conformance/interfaces/sigaction/13-20: build: PASS - conformance/interfaces/sigaction/13-20: link: PASS - conformance/interfaces/sigaction/13-21: build: PASS - conformance/interfaces/sigaction/13-21: link: PASS - conformance/interfaces/sigaction/13-22: build: PASS - conformance/interfaces/sigaction/13-22: link: PASS - conformance/interfaces/sigaction/13-23: build: PASS - conformance/interfaces/sigaction/13-23: link: PASS - conformance/interfaces/sigaction/13-24: build: PASS - conformance/interfaces/sigaction/13-24: link: PASS - conformance/interfaces/sigaction/13-25: build: PASS - conformance/interfaces/sigaction/13-25: link: PASS - conformance/interfaces/sigaction/13-26: build: PASS - conformance/interfaces/sigaction/13-26: link: PASS - conformance/interfaces/sigaction/13-3: build: PASS - conformance/interfaces/sigaction/13-3: link: PASS - conformance/interfaces/sigaction/13-4: build: PASS - conformance/interfaces/sigaction/13-4: link: PASS - conformance/interfaces/sigaction/13-5: build: PASS - conformance/interfaces/sigaction/13-5: link: PASS - conformance/interfaces/sigaction/13-6: build: PASS - conformance/interfaces/sigaction/13-6: link: PASS - conformance/interfaces/sigaction/13-7: build: PASS - conformance/interfaces/sigaction/13-7: link: PASS - conformance/interfaces/sigaction/13-8: build: PASS - conformance/interfaces/sigaction/13-8: link: PASS - conformance/interfaces/sigaction/13-9: build: PASS - conformance/interfaces/sigaction/13-9: link: PASS - conformance/interfaces/sigaction/16-1: build: PASS - conformance/interfaces/sigaction/16-1: link: PASS - conformance/interfaces/sigaction/16-10: build: PASS - conformance/interfaces/sigaction/16-10: link: PASS - conformance/interfaces/sigaction/16-11: build: PASS - conformance/interfaces/sigaction/16-11: link: PASS - conformance/interfaces/sigaction/16-12: build: PASS - conformance/interfaces/sigaction/16-12: link: PASS - conformance/interfaces/sigaction/16-13: build: PASS - conformance/interfaces/sigaction/16-13: link: PASS - conformance/interfaces/sigaction/16-14: build: PASS - conformance/interfaces/sigaction/16-14: link: PASS - conformance/interfaces/sigaction/16-15: build: PASS - conformance/interfaces/sigaction/16-15: link: PASS - conformance/interfaces/sigaction/16-16: build: PASS - conformance/interfaces/sigaction/16-16: link: PASS - conformance/interfaces/sigaction/16-17: build: PASS - conformance/interfaces/sigaction/16-17: link: PASS - conformance/interfaces/sigaction/16-18: build: PASS - conformance/interfaces/sigaction/16-18: link: PASS - conformance/interfaces/sigaction/16-19: build: PASS - conformance/interfaces/sigaction/16-19: link: PASS - conformance/interfaces/sigaction/16-2: build: PASS - conformance/interfaces/sigaction/16-2: link: PASS - conformance/interfaces/sigaction/16-20: build: PASS - conformance/interfaces/sigaction/16-20: link: PASS - conformance/interfaces/sigaction/16-21: build: PASS - conformance/interfaces/sigaction/16-21: link: PASS - conformance/interfaces/sigaction/16-22: build: PASS - conformance/interfaces/sigaction/16-22: link: PASS - conformance/interfaces/sigaction/16-23: build: PASS - conformance/interfaces/sigaction/16-23: link: PASS - conformance/interfaces/sigaction/16-24: build: PASS - conformance/interfaces/sigaction/16-24: link: PASS - conformance/interfaces/sigaction/16-25: build: PASS - conformance/interfaces/sigaction/16-25: link: PASS - conformance/interfaces/sigaction/16-26: build: PASS - conformance/interfaces/sigaction/16-26: link: PASS - conformance/interfaces/sigaction/16-3: build: PASS - conformance/interfaces/sigaction/16-3: link: PASS - conformance/interfaces/sigaction/16-4: build: PASS - conformance/interfaces/sigaction/16-4: link: PASS - conformance/interfaces/sigaction/16-5: build: PASS - conformance/interfaces/sigaction/16-5: link: PASS - conformance/interfaces/sigaction/16-6: build: PASS - conformance/interfaces/sigaction/16-6: link: PASS - conformance/interfaces/sigaction/16-7: build: PASS - conformance/interfaces/sigaction/16-7: link: PASS - conformance/interfaces/sigaction/16-8: build: PASS - conformance/interfaces/sigaction/16-8: link: PASS - conformance/interfaces/sigaction/16-9: build: PASS - conformance/interfaces/sigaction/16-9: link: PASS - conformance/interfaces/sigaction/17-1: build: PASS - conformance/interfaces/sigaction/17-1: link: PASS - conformance/interfaces/sigaction/17-10: build: PASS - conformance/interfaces/sigaction/17-10: link: PASS - conformance/interfaces/sigaction/17-11: build: PASS - conformance/interfaces/sigaction/17-11: link: PASS - conformance/interfaces/sigaction/17-12: build: PASS - conformance/interfaces/sigaction/17-12: link: PASS - conformance/interfaces/sigaction/17-13: build: PASS - conformance/interfaces/sigaction/17-13: link: PASS - conformance/interfaces/sigaction/17-14: build: PASS - conformance/interfaces/sigaction/17-14: link: PASS - conformance/interfaces/sigaction/17-15: build: PASS - conformance/interfaces/sigaction/17-15: link: PASS - conformance/interfaces/sigaction/17-16: build: PASS - conformance/interfaces/sigaction/17-16: link: PASS - conformance/interfaces/sigaction/17-17: build: PASS - conformance/interfaces/sigaction/17-17: link: PASS - conformance/interfaces/sigaction/17-18: build: PASS - conformance/interfaces/sigaction/17-18: link: PASS - conformance/interfaces/sigaction/17-19: build: PASS - conformance/interfaces/sigaction/17-19: link: PASS - conformance/interfaces/sigaction/17-2: build: PASS - conformance/interfaces/sigaction/17-2: link: PASS - conformance/interfaces/sigaction/17-20: build: PASS - conformance/interfaces/sigaction/17-20: link: PASS - conformance/interfaces/sigaction/17-21: build: PASS - conformance/interfaces/sigaction/17-21: link: PASS - conformance/interfaces/sigaction/17-22: build: PASS - conformance/interfaces/sigaction/17-22: link: PASS - conformance/interfaces/sigaction/17-23: build: PASS - conformance/interfaces/sigaction/17-23: link: PASS - conformance/interfaces/sigaction/17-24: build: PASS - conformance/interfaces/sigaction/17-24: link: PASS - conformance/interfaces/sigaction/17-25: build: PASS - conformance/interfaces/sigaction/17-25: link: PASS - conformance/interfaces/sigaction/17-26: build: PASS - conformance/interfaces/sigaction/17-26: link: PASS - conformance/interfaces/sigaction/17-3: build: PASS - conformance/interfaces/sigaction/17-3: link: PASS - conformance/interfaces/sigaction/17-4: build: PASS - conformance/interfaces/sigaction/17-4: link: PASS - conformance/interfaces/sigaction/17-5: build: PASS - conformance/interfaces/sigaction/17-5: link: PASS - conformance/interfaces/sigaction/17-6: build: PASS - conformance/interfaces/sigaction/17-6: link: PASS - conformance/interfaces/sigaction/17-7: build: PASS - conformance/interfaces/sigaction/17-7: link: PASS - conformance/interfaces/sigaction/17-8: build: PASS - conformance/interfaces/sigaction/17-8: link: PASS - conformance/interfaces/sigaction/17-9: build: PASS - conformance/interfaces/sigaction/17-9: link: PASS - conformance/interfaces/sigaction/18-1: build: PASS - conformance/interfaces/sigaction/18-1: link: PASS - conformance/interfaces/sigaction/18-10: build: PASS - conformance/interfaces/sigaction/18-10: link: PASS - conformance/interfaces/sigaction/18-11: build: PASS - conformance/interfaces/sigaction/18-11: link: PASS - conformance/interfaces/sigaction/18-12: build: PASS - conformance/interfaces/sigaction/18-12: link: PASS - conformance/interfaces/sigaction/18-13: build: PASS - conformance/interfaces/sigaction/18-13: link: PASS - conformance/interfaces/sigaction/18-14: build: PASS - conformance/interfaces/sigaction/18-14: link: PASS - conformance/interfaces/sigaction/18-15: build: PASS - conformance/interfaces/sigaction/18-15: link: PASS - conformance/interfaces/sigaction/18-16: build: PASS - conformance/interfaces/sigaction/18-16: link: PASS - conformance/interfaces/sigaction/18-17: build: PASS - conformance/interfaces/sigaction/18-17: link: PASS - conformance/interfaces/sigaction/18-18: build: PASS - conformance/interfaces/sigaction/18-18: link: PASS - conformance/interfaces/sigaction/18-19: build: PASS - conformance/interfaces/sigaction/18-19: link: PASS - conformance/interfaces/sigaction/18-2: build: PASS - conformance/interfaces/sigaction/18-2: link: PASS - conformance/interfaces/sigaction/18-20: build: PASS - conformance/interfaces/sigaction/18-20: link: PASS - conformance/interfaces/sigaction/18-21: build: PASS - conformance/interfaces/sigaction/18-21: link: PASS - conformance/interfaces/sigaction/18-22: build: PASS - conformance/interfaces/sigaction/18-22: link: PASS - conformance/interfaces/sigaction/18-23: build: PASS - conformance/interfaces/sigaction/18-23: link: PASS - conformance/interfaces/sigaction/18-24: build: PASS - conformance/interfaces/sigaction/18-24: link: PASS - conformance/interfaces/sigaction/18-25: build: PASS - conformance/interfaces/sigaction/18-25: link: PASS - conformance/interfaces/sigaction/18-26: build: PASS - conformance/interfaces/sigaction/18-26: link: PASS - conformance/interfaces/sigaction/18-3: build: PASS - conformance/interfaces/sigaction/18-3: link: PASS - conformance/interfaces/sigaction/18-4: build: PASS - conformance/interfaces/sigaction/18-4: link: PASS - conformance/interfaces/sigaction/18-5: build: PASS - conformance/interfaces/sigaction/18-5: link: PASS - conformance/interfaces/sigaction/18-6: build: PASS - conformance/interfaces/sigaction/18-6: link: PASS - conformance/interfaces/sigaction/18-7: build: PASS - conformance/interfaces/sigaction/18-7: link: PASS - conformance/interfaces/sigaction/18-8: build: PASS - conformance/interfaces/sigaction/18-8: link: PASS - conformance/interfaces/sigaction/18-9: build: PASS - conformance/interfaces/sigaction/18-9: link: PASS conformance/interfaces/sigaction/19-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/19-1.c: In function ‘main’: conformance/interfaces/sigaction/19-1.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -3306,271 +522,11 @@ interrupted using `kill [PID]`. conformance/interfaces/sigaction/19-9.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigaction/19-9.c:117: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/19-9.c:117: error: for each function it appears in.) - conformance/interfaces/sigaction/2-1: build: PASS - conformance/interfaces/sigaction/2-1: link: PASS - conformance/interfaces/sigaction/2-10: build: PASS - conformance/interfaces/sigaction/2-10: link: PASS - conformance/interfaces/sigaction/2-11: build: PASS - conformance/interfaces/sigaction/2-11: link: PASS - conformance/interfaces/sigaction/2-12: build: PASS - conformance/interfaces/sigaction/2-12: link: PASS - conformance/interfaces/sigaction/2-13: build: PASS - conformance/interfaces/sigaction/2-13: link: PASS - conformance/interfaces/sigaction/2-14: build: PASS - conformance/interfaces/sigaction/2-14: link: PASS - conformance/interfaces/sigaction/2-15: build: PASS - conformance/interfaces/sigaction/2-15: link: PASS - conformance/interfaces/sigaction/2-16: build: PASS - conformance/interfaces/sigaction/2-16: link: PASS - conformance/interfaces/sigaction/2-17: build: PASS - conformance/interfaces/sigaction/2-17: link: PASS - conformance/interfaces/sigaction/2-18: build: PASS - conformance/interfaces/sigaction/2-18: link: PASS - conformance/interfaces/sigaction/2-19: build: PASS - conformance/interfaces/sigaction/2-19: link: PASS - conformance/interfaces/sigaction/2-2: build: PASS - conformance/interfaces/sigaction/2-2: link: PASS - conformance/interfaces/sigaction/2-20: build: PASS - conformance/interfaces/sigaction/2-20: link: PASS - conformance/interfaces/sigaction/2-21: build: PASS - conformance/interfaces/sigaction/2-21: link: PASS - conformance/interfaces/sigaction/2-22: build: PASS - conformance/interfaces/sigaction/2-22: link: PASS - conformance/interfaces/sigaction/2-23: build: PASS - conformance/interfaces/sigaction/2-23: link: PASS - conformance/interfaces/sigaction/2-24: build: PASS - conformance/interfaces/sigaction/2-24: link: PASS - conformance/interfaces/sigaction/2-25: build: PASS - conformance/interfaces/sigaction/2-25: link: PASS - conformance/interfaces/sigaction/2-26: build: PASS - conformance/interfaces/sigaction/2-26: link: PASS - conformance/interfaces/sigaction/2-3: build: PASS - conformance/interfaces/sigaction/2-3: link: PASS - conformance/interfaces/sigaction/2-4: build: PASS - conformance/interfaces/sigaction/2-4: link: PASS - conformance/interfaces/sigaction/2-5: build: PASS - conformance/interfaces/sigaction/2-5: link: PASS - conformance/interfaces/sigaction/2-6: build: PASS - conformance/interfaces/sigaction/2-6: link: PASS - conformance/interfaces/sigaction/2-7: build: PASS - conformance/interfaces/sigaction/2-7: link: PASS - conformance/interfaces/sigaction/2-8: build: PASS - conformance/interfaces/sigaction/2-8: link: PASS - conformance/interfaces/sigaction/2-9: build: PASS - conformance/interfaces/sigaction/2-9: link: PASS conformance/interfaces/sigaction/21-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/21-1.c: In function ‘main’: conformance/interfaces/sigaction/21-1.c:36: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function) conformance/interfaces/sigaction/21-1.c:36: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/21-1.c:36: error: for each function it appears in.) - conformance/interfaces/sigaction/22-1: build: PASS - conformance/interfaces/sigaction/22-1: link: PASS - conformance/interfaces/sigaction/22-10: build: PASS - conformance/interfaces/sigaction/22-10: link: PASS - conformance/interfaces/sigaction/22-11: build: PASS - conformance/interfaces/sigaction/22-11: link: PASS - conformance/interfaces/sigaction/22-12: build: PASS - conformance/interfaces/sigaction/22-12: link: PASS - conformance/interfaces/sigaction/22-13: build: PASS - conformance/interfaces/sigaction/22-13: link: PASS - conformance/interfaces/sigaction/22-14: build: PASS - conformance/interfaces/sigaction/22-14: link: PASS - conformance/interfaces/sigaction/22-15: build: PASS - conformance/interfaces/sigaction/22-15: link: PASS - conformance/interfaces/sigaction/22-16: build: PASS - conformance/interfaces/sigaction/22-16: link: PASS - conformance/interfaces/sigaction/22-17: build: PASS - conformance/interfaces/sigaction/22-17: link: PASS - conformance/interfaces/sigaction/22-18: build: PASS - conformance/interfaces/sigaction/22-18: link: PASS - conformance/interfaces/sigaction/22-19: build: PASS - conformance/interfaces/sigaction/22-19: link: PASS - conformance/interfaces/sigaction/22-2: build: PASS - conformance/interfaces/sigaction/22-2: link: PASS - conformance/interfaces/sigaction/22-20: build: PASS - conformance/interfaces/sigaction/22-20: link: PASS - conformance/interfaces/sigaction/22-21: build: PASS - conformance/interfaces/sigaction/22-21: link: PASS - conformance/interfaces/sigaction/22-22: build: PASS - conformance/interfaces/sigaction/22-22: link: PASS - conformance/interfaces/sigaction/22-23: build: PASS - conformance/interfaces/sigaction/22-23: link: PASS - conformance/interfaces/sigaction/22-24: build: PASS - conformance/interfaces/sigaction/22-24: link: PASS - conformance/interfaces/sigaction/22-25: build: PASS - conformance/interfaces/sigaction/22-25: link: PASS - conformance/interfaces/sigaction/22-26: build: PASS - conformance/interfaces/sigaction/22-26: link: PASS - conformance/interfaces/sigaction/22-3: build: PASS - conformance/interfaces/sigaction/22-3: link: PASS - conformance/interfaces/sigaction/22-4: build: PASS - conformance/interfaces/sigaction/22-4: link: PASS - conformance/interfaces/sigaction/22-5: build: PASS - conformance/interfaces/sigaction/22-5: link: PASS - conformance/interfaces/sigaction/22-6: build: PASS - conformance/interfaces/sigaction/22-6: link: PASS - conformance/interfaces/sigaction/22-7: build: PASS - conformance/interfaces/sigaction/22-7: link: PASS - conformance/interfaces/sigaction/22-8: build: PASS - conformance/interfaces/sigaction/22-8: link: PASS - conformance/interfaces/sigaction/22-9: build: PASS - conformance/interfaces/sigaction/22-9: link: PASS - conformance/interfaces/sigaction/23-1: build: PASS - conformance/interfaces/sigaction/23-1: link: PASS - conformance/interfaces/sigaction/23-10: build: PASS - conformance/interfaces/sigaction/23-10: link: PASS - conformance/interfaces/sigaction/23-11: build: PASS - conformance/interfaces/sigaction/23-11: link: PASS - conformance/interfaces/sigaction/23-12: build: PASS - conformance/interfaces/sigaction/23-12: link: PASS - conformance/interfaces/sigaction/23-13: build: PASS - conformance/interfaces/sigaction/23-13: link: PASS - conformance/interfaces/sigaction/23-14: build: PASS - conformance/interfaces/sigaction/23-14: link: PASS - conformance/interfaces/sigaction/23-15: build: PASS - conformance/interfaces/sigaction/23-15: link: PASS - conformance/interfaces/sigaction/23-16: build: PASS - conformance/interfaces/sigaction/23-16: link: PASS - conformance/interfaces/sigaction/23-17: build: PASS - conformance/interfaces/sigaction/23-17: link: PASS - conformance/interfaces/sigaction/23-18: build: PASS - conformance/interfaces/sigaction/23-18: link: PASS - conformance/interfaces/sigaction/23-19: build: PASS - conformance/interfaces/sigaction/23-19: link: PASS - conformance/interfaces/sigaction/23-2: build: PASS - conformance/interfaces/sigaction/23-2: link: PASS - conformance/interfaces/sigaction/23-20: build: PASS - conformance/interfaces/sigaction/23-20: link: PASS - conformance/interfaces/sigaction/23-21: build: PASS - conformance/interfaces/sigaction/23-21: link: PASS - conformance/interfaces/sigaction/23-22: build: PASS - conformance/interfaces/sigaction/23-22: link: PASS - conformance/interfaces/sigaction/23-23: build: PASS - conformance/interfaces/sigaction/23-23: link: PASS - conformance/interfaces/sigaction/23-24: build: PASS - conformance/interfaces/sigaction/23-24: link: PASS - conformance/interfaces/sigaction/23-25: build: PASS - conformance/interfaces/sigaction/23-25: link: PASS - conformance/interfaces/sigaction/23-26: build: PASS - conformance/interfaces/sigaction/23-26: link: PASS - conformance/interfaces/sigaction/23-3: build: PASS - conformance/interfaces/sigaction/23-3: link: PASS - conformance/interfaces/sigaction/23-4: build: PASS - conformance/interfaces/sigaction/23-4: link: PASS - conformance/interfaces/sigaction/23-5: build: PASS - conformance/interfaces/sigaction/23-5: link: PASS - conformance/interfaces/sigaction/23-6: build: PASS - conformance/interfaces/sigaction/23-6: link: PASS - conformance/interfaces/sigaction/23-7: build: PASS - conformance/interfaces/sigaction/23-7: link: PASS - conformance/interfaces/sigaction/23-8: build: PASS - conformance/interfaces/sigaction/23-8: link: PASS - conformance/interfaces/sigaction/23-9: build: PASS - conformance/interfaces/sigaction/23-9: link: PASS - conformance/interfaces/sigaction/25-1: build: PASS - conformance/interfaces/sigaction/25-1: link: PASS - conformance/interfaces/sigaction/25-10: build: PASS - conformance/interfaces/sigaction/25-10: link: PASS - conformance/interfaces/sigaction/25-11: build: PASS - conformance/interfaces/sigaction/25-11: link: PASS - conformance/interfaces/sigaction/25-12: build: PASS - conformance/interfaces/sigaction/25-12: link: PASS - conformance/interfaces/sigaction/25-13: build: PASS - conformance/interfaces/sigaction/25-13: link: PASS - conformance/interfaces/sigaction/25-14: build: PASS - conformance/interfaces/sigaction/25-14: link: PASS - conformance/interfaces/sigaction/25-15: build: PASS - conformance/interfaces/sigaction/25-15: link: PASS - conformance/interfaces/sigaction/25-16: build: PASS - conformance/interfaces/sigaction/25-16: link: PASS - conformance/interfaces/sigaction/25-17: build: PASS - conformance/interfaces/sigaction/25-17: link: PASS - conformance/interfaces/sigaction/25-18: build: PASS - conformance/interfaces/sigaction/25-18: link: PASS - conformance/interfaces/sigaction/25-19: build: PASS - conformance/interfaces/sigaction/25-19: link: PASS - conformance/interfaces/sigaction/25-2: build: PASS - conformance/interfaces/sigaction/25-2: link: PASS - conformance/interfaces/sigaction/25-20: build: PASS - conformance/interfaces/sigaction/25-20: link: PASS - conformance/interfaces/sigaction/25-21: build: PASS - conformance/interfaces/sigaction/25-21: link: PASS - conformance/interfaces/sigaction/25-22: build: PASS - conformance/interfaces/sigaction/25-22: link: PASS - conformance/interfaces/sigaction/25-23: build: PASS - conformance/interfaces/sigaction/25-23: link: PASS - conformance/interfaces/sigaction/25-24: build: PASS - conformance/interfaces/sigaction/25-24: link: PASS - conformance/interfaces/sigaction/25-25: build: PASS - conformance/interfaces/sigaction/25-25: link: PASS - conformance/interfaces/sigaction/25-26: build: PASS - conformance/interfaces/sigaction/25-26: link: PASS - conformance/interfaces/sigaction/25-3: build: PASS - conformance/interfaces/sigaction/25-3: link: PASS - conformance/interfaces/sigaction/25-4: build: PASS - conformance/interfaces/sigaction/25-4: link: PASS - conformance/interfaces/sigaction/25-5: build: PASS - conformance/interfaces/sigaction/25-5: link: PASS - conformance/interfaces/sigaction/25-6: build: PASS - conformance/interfaces/sigaction/25-6: link: PASS - conformance/interfaces/sigaction/25-7: build: PASS - conformance/interfaces/sigaction/25-7: link: PASS - conformance/interfaces/sigaction/25-8: build: PASS - conformance/interfaces/sigaction/25-8: link: PASS - conformance/interfaces/sigaction/25-9: build: PASS - conformance/interfaces/sigaction/25-9: link: PASS - conformance/interfaces/sigaction/28-1: build: PASS - conformance/interfaces/sigaction/28-1: link: PASS - conformance/interfaces/sigaction/28-10: build: PASS - conformance/interfaces/sigaction/28-10: link: PASS - conformance/interfaces/sigaction/28-11: build: PASS - conformance/interfaces/sigaction/28-11: link: PASS - conformance/interfaces/sigaction/28-12: build: PASS - conformance/interfaces/sigaction/28-12: link: PASS - conformance/interfaces/sigaction/28-13: build: PASS - conformance/interfaces/sigaction/28-13: link: PASS - conformance/interfaces/sigaction/28-14: build: PASS - conformance/interfaces/sigaction/28-14: link: PASS - conformance/interfaces/sigaction/28-15: build: PASS - conformance/interfaces/sigaction/28-15: link: PASS - conformance/interfaces/sigaction/28-16: build: PASS - conformance/interfaces/sigaction/28-16: link: PASS - conformance/interfaces/sigaction/28-17: build: PASS - conformance/interfaces/sigaction/28-17: link: PASS - conformance/interfaces/sigaction/28-18: build: PASS - conformance/interfaces/sigaction/28-18: link: PASS - conformance/interfaces/sigaction/28-19: build: PASS - conformance/interfaces/sigaction/28-19: link: PASS - conformance/interfaces/sigaction/28-2: build: PASS - conformance/interfaces/sigaction/28-2: link: PASS - conformance/interfaces/sigaction/28-20: build: PASS - conformance/interfaces/sigaction/28-20: link: PASS - conformance/interfaces/sigaction/28-21: build: PASS - conformance/interfaces/sigaction/28-21: link: PASS - conformance/interfaces/sigaction/28-22: build: PASS - conformance/interfaces/sigaction/28-22: link: PASS - conformance/interfaces/sigaction/28-23: build: PASS - conformance/interfaces/sigaction/28-23: link: PASS - conformance/interfaces/sigaction/28-24: build: PASS - conformance/interfaces/sigaction/28-24: link: PASS - conformance/interfaces/sigaction/28-25: build: PASS - conformance/interfaces/sigaction/28-25: link: PASS - conformance/interfaces/sigaction/28-26: build: PASS - conformance/interfaces/sigaction/28-26: link: PASS - conformance/interfaces/sigaction/28-3: build: PASS - conformance/interfaces/sigaction/28-3: link: PASS - conformance/interfaces/sigaction/28-4: build: PASS - conformance/interfaces/sigaction/28-4: link: PASS - conformance/interfaces/sigaction/28-5: build: PASS - conformance/interfaces/sigaction/28-5: link: PASS - conformance/interfaces/sigaction/28-6: build: PASS - conformance/interfaces/sigaction/28-6: link: PASS - conformance/interfaces/sigaction/28-7: build: PASS - conformance/interfaces/sigaction/28-7: link: PASS - conformance/interfaces/sigaction/28-8: build: PASS - conformance/interfaces/sigaction/28-8: link: PASS - conformance/interfaces/sigaction/28-9: build: PASS - conformance/interfaces/sigaction/28-9: link: PASS conformance/interfaces/sigaction/29-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/29-1.c: In function ‘handler’: conformance/interfaces/sigaction/29-1.c:95: error: ‘SIGRTMAX’ undeclared (first use in this function) @@ -3579,271 +535,11 @@ interrupted using `kill [PID]`. conformance/interfaces/sigaction/29-1.c: In function ‘main’: conformance/interfaces/sigaction/29-1.c:133: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigaction/29-1.c:145: error: ‘SIGRTMAX’ undeclared (first use in this function) - conformance/interfaces/sigaction/3-1: build: PASS - conformance/interfaces/sigaction/3-1: link: PASS - conformance/interfaces/sigaction/3-10: build: PASS - conformance/interfaces/sigaction/3-10: link: PASS - conformance/interfaces/sigaction/3-11: build: PASS - conformance/interfaces/sigaction/3-11: link: PASS - conformance/interfaces/sigaction/3-12: build: PASS - conformance/interfaces/sigaction/3-12: link: PASS - conformance/interfaces/sigaction/3-13: build: PASS - conformance/interfaces/sigaction/3-13: link: PASS - conformance/interfaces/sigaction/3-14: build: PASS - conformance/interfaces/sigaction/3-14: link: PASS - conformance/interfaces/sigaction/3-15: build: PASS - conformance/interfaces/sigaction/3-15: link: PASS - conformance/interfaces/sigaction/3-16: build: PASS - conformance/interfaces/sigaction/3-16: link: PASS - conformance/interfaces/sigaction/3-17: build: PASS - conformance/interfaces/sigaction/3-17: link: PASS - conformance/interfaces/sigaction/3-18: build: PASS - conformance/interfaces/sigaction/3-18: link: PASS - conformance/interfaces/sigaction/3-19: build: PASS - conformance/interfaces/sigaction/3-19: link: PASS - conformance/interfaces/sigaction/3-2: build: PASS - conformance/interfaces/sigaction/3-2: link: PASS - conformance/interfaces/sigaction/3-20: build: PASS - conformance/interfaces/sigaction/3-20: link: PASS - conformance/interfaces/sigaction/3-21: build: PASS - conformance/interfaces/sigaction/3-21: link: PASS - conformance/interfaces/sigaction/3-22: build: PASS - conformance/interfaces/sigaction/3-22: link: PASS - conformance/interfaces/sigaction/3-23: build: PASS - conformance/interfaces/sigaction/3-23: link: PASS - conformance/interfaces/sigaction/3-24: build: PASS - conformance/interfaces/sigaction/3-24: link: PASS - conformance/interfaces/sigaction/3-25: build: PASS - conformance/interfaces/sigaction/3-25: link: PASS - conformance/interfaces/sigaction/3-26: build: PASS - conformance/interfaces/sigaction/3-26: link: PASS - conformance/interfaces/sigaction/3-3: build: PASS - conformance/interfaces/sigaction/3-3: link: PASS - conformance/interfaces/sigaction/3-4: build: PASS - conformance/interfaces/sigaction/3-4: link: PASS - conformance/interfaces/sigaction/3-5: build: PASS - conformance/interfaces/sigaction/3-5: link: PASS - conformance/interfaces/sigaction/3-6: build: PASS - conformance/interfaces/sigaction/3-6: link: PASS - conformance/interfaces/sigaction/3-7: build: PASS - conformance/interfaces/sigaction/3-7: link: PASS - conformance/interfaces/sigaction/3-8: build: PASS - conformance/interfaces/sigaction/3-8: link: PASS - conformance/interfaces/sigaction/3-9: build: PASS - conformance/interfaces/sigaction/3-9: link: PASS conformance/interfaces/sigaction/30-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/30-1.c: In function ‘main’: conformance/interfaces/sigaction/30-1.c:117: error: ‘SIGRTMAX’ undeclared (first use in this function) conformance/interfaces/sigaction/30-1.c:117: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/30-1.c:117: error: for each function it appears in.) - conformance/interfaces/sigaction/4-1: build: PASS - conformance/interfaces/sigaction/4-1: link: PASS - conformance/interfaces/sigaction/4-10: build: PASS - conformance/interfaces/sigaction/4-10: link: PASS - conformance/interfaces/sigaction/4-100: build: PASS - conformance/interfaces/sigaction/4-100: link: PASS - conformance/interfaces/sigaction/4-101: build: PASS - conformance/interfaces/sigaction/4-101: link: PASS - conformance/interfaces/sigaction/4-102: build: PASS - conformance/interfaces/sigaction/4-102: link: PASS - conformance/interfaces/sigaction/4-103: build: PASS - conformance/interfaces/sigaction/4-103: link: PASS - conformance/interfaces/sigaction/4-104: build: PASS - conformance/interfaces/sigaction/4-104: link: PASS - conformance/interfaces/sigaction/4-11: build: PASS - conformance/interfaces/sigaction/4-11: link: PASS - conformance/interfaces/sigaction/4-12: build: PASS - conformance/interfaces/sigaction/4-12: link: PASS - conformance/interfaces/sigaction/4-13: build: PASS - conformance/interfaces/sigaction/4-13: link: PASS - conformance/interfaces/sigaction/4-14: build: PASS - conformance/interfaces/sigaction/4-14: link: PASS - conformance/interfaces/sigaction/4-15: build: PASS - conformance/interfaces/sigaction/4-15: link: PASS - conformance/interfaces/sigaction/4-16: build: PASS - conformance/interfaces/sigaction/4-16: link: PASS - conformance/interfaces/sigaction/4-17: build: PASS - conformance/interfaces/sigaction/4-17: link: PASS - conformance/interfaces/sigaction/4-18: build: PASS - conformance/interfaces/sigaction/4-18: link: PASS - conformance/interfaces/sigaction/4-19: build: PASS - conformance/interfaces/sigaction/4-19: link: PASS - conformance/interfaces/sigaction/4-2: build: PASS - conformance/interfaces/sigaction/4-2: link: PASS - conformance/interfaces/sigaction/4-20: build: PASS - conformance/interfaces/sigaction/4-20: link: PASS - conformance/interfaces/sigaction/4-21: build: PASS - conformance/interfaces/sigaction/4-21: link: PASS - conformance/interfaces/sigaction/4-22: build: PASS - conformance/interfaces/sigaction/4-22: link: PASS - conformance/interfaces/sigaction/4-23: build: PASS - conformance/interfaces/sigaction/4-23: link: PASS - conformance/interfaces/sigaction/4-24: build: PASS - conformance/interfaces/sigaction/4-24: link: PASS - conformance/interfaces/sigaction/4-25: build: PASS - conformance/interfaces/sigaction/4-25: link: PASS - conformance/interfaces/sigaction/4-26: build: PASS - conformance/interfaces/sigaction/4-26: link: PASS - conformance/interfaces/sigaction/4-27: build: PASS - conformance/interfaces/sigaction/4-27: link: PASS - conformance/interfaces/sigaction/4-28: build: PASS - conformance/interfaces/sigaction/4-28: link: PASS - conformance/interfaces/sigaction/4-29: build: PASS - conformance/interfaces/sigaction/4-29: link: PASS - conformance/interfaces/sigaction/4-3: build: PASS - conformance/interfaces/sigaction/4-3: link: PASS - conformance/interfaces/sigaction/4-30: build: PASS - conformance/interfaces/sigaction/4-30: link: PASS - conformance/interfaces/sigaction/4-31: build: PASS - conformance/interfaces/sigaction/4-31: link: PASS - conformance/interfaces/sigaction/4-32: build: PASS - conformance/interfaces/sigaction/4-32: link: PASS - conformance/interfaces/sigaction/4-33: build: PASS - conformance/interfaces/sigaction/4-33: link: PASS - conformance/interfaces/sigaction/4-34: build: PASS - conformance/interfaces/sigaction/4-34: link: PASS - conformance/interfaces/sigaction/4-35: build: PASS - conformance/interfaces/sigaction/4-35: link: PASS - conformance/interfaces/sigaction/4-36: build: PASS - conformance/interfaces/sigaction/4-36: link: PASS - conformance/interfaces/sigaction/4-37: build: PASS - conformance/interfaces/sigaction/4-37: link: PASS - conformance/interfaces/sigaction/4-38: build: PASS - conformance/interfaces/sigaction/4-38: link: PASS - conformance/interfaces/sigaction/4-39: build: PASS - conformance/interfaces/sigaction/4-39: link: PASS - conformance/interfaces/sigaction/4-4: build: PASS - conformance/interfaces/sigaction/4-4: link: PASS - conformance/interfaces/sigaction/4-40: build: PASS - conformance/interfaces/sigaction/4-40: link: PASS - conformance/interfaces/sigaction/4-41: build: PASS - conformance/interfaces/sigaction/4-41: link: PASS - conformance/interfaces/sigaction/4-42: build: PASS - conformance/interfaces/sigaction/4-42: link: PASS - conformance/interfaces/sigaction/4-43: build: PASS - conformance/interfaces/sigaction/4-43: link: PASS - conformance/interfaces/sigaction/4-44: build: PASS - conformance/interfaces/sigaction/4-44: link: PASS - conformance/interfaces/sigaction/4-45: build: PASS - conformance/interfaces/sigaction/4-45: link: PASS - conformance/interfaces/sigaction/4-46: build: PASS - conformance/interfaces/sigaction/4-46: link: PASS - conformance/interfaces/sigaction/4-47: build: PASS - conformance/interfaces/sigaction/4-47: link: PASS - conformance/interfaces/sigaction/4-48: build: PASS - conformance/interfaces/sigaction/4-48: link: PASS - conformance/interfaces/sigaction/4-49: build: PASS - conformance/interfaces/sigaction/4-49: link: PASS - conformance/interfaces/sigaction/4-5: build: PASS - conformance/interfaces/sigaction/4-5: link: PASS - conformance/interfaces/sigaction/4-50: build: PASS - conformance/interfaces/sigaction/4-50: link: PASS - conformance/interfaces/sigaction/4-51: build: PASS - conformance/interfaces/sigaction/4-51: link: PASS - conformance/interfaces/sigaction/4-52: build: PASS - conformance/interfaces/sigaction/4-52: link: PASS - conformance/interfaces/sigaction/4-53: build: PASS - conformance/interfaces/sigaction/4-53: link: PASS - conformance/interfaces/sigaction/4-54: build: PASS - conformance/interfaces/sigaction/4-54: link: PASS - conformance/interfaces/sigaction/4-55: build: PASS - conformance/interfaces/sigaction/4-55: link: PASS - conformance/interfaces/sigaction/4-56: build: PASS - conformance/interfaces/sigaction/4-56: link: PASS - conformance/interfaces/sigaction/4-57: build: PASS - conformance/interfaces/sigaction/4-57: link: PASS - conformance/interfaces/sigaction/4-58: build: PASS - conformance/interfaces/sigaction/4-58: link: PASS - conformance/interfaces/sigaction/4-59: build: PASS - conformance/interfaces/sigaction/4-59: link: PASS - conformance/interfaces/sigaction/4-6: build: PASS - conformance/interfaces/sigaction/4-6: link: PASS - conformance/interfaces/sigaction/4-60: build: PASS - conformance/interfaces/sigaction/4-60: link: PASS - conformance/interfaces/sigaction/4-61: build: PASS - conformance/interfaces/sigaction/4-61: link: PASS - conformance/interfaces/sigaction/4-62: build: PASS - conformance/interfaces/sigaction/4-62: link: PASS - conformance/interfaces/sigaction/4-63: build: PASS - conformance/interfaces/sigaction/4-63: link: PASS - conformance/interfaces/sigaction/4-64: build: PASS - conformance/interfaces/sigaction/4-64: link: PASS - conformance/interfaces/sigaction/4-65: build: PASS - conformance/interfaces/sigaction/4-65: link: PASS - conformance/interfaces/sigaction/4-66: build: PASS - conformance/interfaces/sigaction/4-66: link: PASS - conformance/interfaces/sigaction/4-67: build: PASS - conformance/interfaces/sigaction/4-67: link: PASS - conformance/interfaces/sigaction/4-68: build: PASS - conformance/interfaces/sigaction/4-68: link: PASS - conformance/interfaces/sigaction/4-69: build: PASS - conformance/interfaces/sigaction/4-69: link: PASS - conformance/interfaces/sigaction/4-7: build: PASS - conformance/interfaces/sigaction/4-7: link: PASS - conformance/interfaces/sigaction/4-70: build: PASS - conformance/interfaces/sigaction/4-70: link: PASS - conformance/interfaces/sigaction/4-71: build: PASS - conformance/interfaces/sigaction/4-71: link: PASS - conformance/interfaces/sigaction/4-72: build: PASS - conformance/interfaces/sigaction/4-72: link: PASS - conformance/interfaces/sigaction/4-73: build: PASS - conformance/interfaces/sigaction/4-73: link: PASS - conformance/interfaces/sigaction/4-74: build: PASS - conformance/interfaces/sigaction/4-74: link: PASS - conformance/interfaces/sigaction/4-75: build: PASS - conformance/interfaces/sigaction/4-75: link: PASS - conformance/interfaces/sigaction/4-76: build: PASS - conformance/interfaces/sigaction/4-76: link: PASS - conformance/interfaces/sigaction/4-77: build: PASS - conformance/interfaces/sigaction/4-77: link: PASS - conformance/interfaces/sigaction/4-78: build: PASS - conformance/interfaces/sigaction/4-78: link: PASS - conformance/interfaces/sigaction/4-79: build: PASS - conformance/interfaces/sigaction/4-79: link: PASS - conformance/interfaces/sigaction/4-8: build: PASS - conformance/interfaces/sigaction/4-8: link: PASS - conformance/interfaces/sigaction/4-80: build: PASS - conformance/interfaces/sigaction/4-80: link: PASS - conformance/interfaces/sigaction/4-81: build: PASS - conformance/interfaces/sigaction/4-81: link: PASS - conformance/interfaces/sigaction/4-82: build: PASS - conformance/interfaces/sigaction/4-82: link: PASS - conformance/interfaces/sigaction/4-83: build: PASS - conformance/interfaces/sigaction/4-83: link: PASS - conformance/interfaces/sigaction/4-84: build: PASS - conformance/interfaces/sigaction/4-84: link: PASS - conformance/interfaces/sigaction/4-85: build: PASS - conformance/interfaces/sigaction/4-85: link: PASS - conformance/interfaces/sigaction/4-86: build: PASS - conformance/interfaces/sigaction/4-86: link: PASS - conformance/interfaces/sigaction/4-87: build: PASS - conformance/interfaces/sigaction/4-87: link: PASS - conformance/interfaces/sigaction/4-88: build: PASS - conformance/interfaces/sigaction/4-88: link: PASS - conformance/interfaces/sigaction/4-89: build: PASS - conformance/interfaces/sigaction/4-89: link: PASS - conformance/interfaces/sigaction/4-9: build: PASS - conformance/interfaces/sigaction/4-9: link: PASS - conformance/interfaces/sigaction/4-90: build: PASS - conformance/interfaces/sigaction/4-90: link: PASS - conformance/interfaces/sigaction/4-91: build: PASS - conformance/interfaces/sigaction/4-91: link: PASS - conformance/interfaces/sigaction/4-92: build: PASS - conformance/interfaces/sigaction/4-92: link: PASS - conformance/interfaces/sigaction/4-93: build: PASS - conformance/interfaces/sigaction/4-93: link: PASS - conformance/interfaces/sigaction/4-94: build: PASS - conformance/interfaces/sigaction/4-94: link: PASS - conformance/interfaces/sigaction/4-95: build: PASS - conformance/interfaces/sigaction/4-95: link: PASS - conformance/interfaces/sigaction/4-96: build: PASS - conformance/interfaces/sigaction/4-96: link: PASS - conformance/interfaces/sigaction/4-97: build: PASS - conformance/interfaces/sigaction/4-97: link: PASS - conformance/interfaces/sigaction/4-98: build: PASS - conformance/interfaces/sigaction/4-98: link: PASS - conformance/interfaces/sigaction/4-99: build: PASS - conformance/interfaces/sigaction/4-99: link: PASS conformance/interfaces/sigaction/6-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/6-1.c: In function ‘main’: conformance/interfaces/sigaction/6-1.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -3974,187 +670,11 @@ interrupted using `kill [PID]`. conformance/interfaces/sigaction/6-9.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigaction/6-9.c:34: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/6-9.c:34: error: for each function it appears in.) - conformance/interfaces/sigaction/8-1: build: PASS - conformance/interfaces/sigaction/8-1: link: PASS - conformance/interfaces/sigaction/8-10: build: PASS - conformance/interfaces/sigaction/8-10: link: PASS - conformance/interfaces/sigaction/8-11: build: PASS - conformance/interfaces/sigaction/8-11: link: PASS - conformance/interfaces/sigaction/8-12: build: PASS - conformance/interfaces/sigaction/8-12: link: PASS - conformance/interfaces/sigaction/8-13: build: PASS - conformance/interfaces/sigaction/8-13: link: PASS - conformance/interfaces/sigaction/8-14: build: PASS - conformance/interfaces/sigaction/8-14: link: PASS - conformance/interfaces/sigaction/8-15: build: PASS - conformance/interfaces/sigaction/8-15: link: PASS - conformance/interfaces/sigaction/8-17: build: PASS - conformance/interfaces/sigaction/8-17: link: PASS - conformance/interfaces/sigaction/8-18: build: PASS - conformance/interfaces/sigaction/8-18: link: PASS - conformance/interfaces/sigaction/8-19: build: PASS - conformance/interfaces/sigaction/8-19: link: PASS - conformance/interfaces/sigaction/8-2: build: PASS - conformance/interfaces/sigaction/8-2: link: PASS - conformance/interfaces/sigaction/8-20: build: PASS - conformance/interfaces/sigaction/8-20: link: PASS - conformance/interfaces/sigaction/8-21: build: PASS - conformance/interfaces/sigaction/8-21: link: PASS - conformance/interfaces/sigaction/8-22: build: PASS - conformance/interfaces/sigaction/8-22: link: PASS - conformance/interfaces/sigaction/8-23: build: PASS - conformance/interfaces/sigaction/8-23: link: PASS - conformance/interfaces/sigaction/8-24: build: PASS - conformance/interfaces/sigaction/8-24: link: PASS - conformance/interfaces/sigaction/8-25: build: PASS - conformance/interfaces/sigaction/8-25: link: PASS - conformance/interfaces/sigaction/8-26: build: PASS - conformance/interfaces/sigaction/8-26: link: PASS - conformance/interfaces/sigaction/8-3: build: PASS - conformance/interfaces/sigaction/8-3: link: PASS - conformance/interfaces/sigaction/8-4: build: PASS - conformance/interfaces/sigaction/8-4: link: PASS - conformance/interfaces/sigaction/8-5: build: PASS - conformance/interfaces/sigaction/8-5: link: PASS - conformance/interfaces/sigaction/8-6: build: PASS - conformance/interfaces/sigaction/8-6: link: PASS - conformance/interfaces/sigaction/8-7: build: PASS - conformance/interfaces/sigaction/8-7: link: PASS - conformance/interfaces/sigaction/8-8: build: PASS - conformance/interfaces/sigaction/8-8: link: PASS - conformance/interfaces/sigaction/8-9: build: PASS - conformance/interfaces/sigaction/8-9: link: PASS conformance/interfaces/sigaction/9-1: build: FAILED: Compiler output: conformance/interfaces/sigaction/9-1.c: In function ‘main’: conformance/interfaces/sigaction/9-1.c:49: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigaction/9-1.c:49: error: (Each undeclared identifier is reported only once conformance/interfaces/sigaction/9-1.c:49: error: for each function it appears in.) - conformance/interfaces/sigaddset/1-3: build: PASS - conformance/interfaces/sigaddset/1-3: link: PASS - conformance/interfaces/sigaddset/2-1: build: PASS - conformance/interfaces/sigaddset/2-1: link: PASS - conformance/interfaces/sigaddset/1-core-buildonly: build: PASS - conformance/interfaces/sigaddset/1-core-buildonly: link: PASS - conformance/interfaces/sigaddset/4-core-buildonly: build: PASS - conformance/interfaces/sigaddset/4-core-buildonly: link: PASS - conformance/interfaces/sigaltstack/1-1: build: PASS - conformance/interfaces/sigaltstack/1-1: link: PASS - conformance/interfaces/sigaltstack/10-1: build: PASS - conformance/interfaces/sigaltstack/10-1: link: PASS - conformance/interfaces/sigaltstack/11-1: build: PASS - conformance/interfaces/sigaltstack/11-1: link: PASS - conformance/interfaces/sigaltstack/12-1: build: PASS - conformance/interfaces/sigaltstack/12-1: link: PASS - conformance/interfaces/sigaltstack/2-1: build: PASS - conformance/interfaces/sigaltstack/2-1: link: PASS - conformance/interfaces/sigaltstack/3-1: build: PASS - conformance/interfaces/sigaltstack/3-1: link: PASS - conformance/interfaces/sigaltstack/5-1: build: PASS - conformance/interfaces/sigaltstack/5-1: link: PASS - conformance/interfaces/sigaltstack/6-1: build: PASS - conformance/interfaces/sigaltstack/6-1: link: PASS - conformance/interfaces/sigaltstack/7-1: build: PASS - conformance/interfaces/sigaltstack/7-1: link: PASS - conformance/interfaces/sigaltstack/8-1: build: PASS - conformance/interfaces/sigaltstack/8-1: link: PASS - conformance/interfaces/sigaltstack/9-1: build: PASS - conformance/interfaces/sigaltstack/9-1: link: PASS - conformance/interfaces/sigaltstack/9-buildonly: build: PASS - conformance/interfaces/sigaltstack/9-buildonly: link: PASS - conformance/interfaces/sigdelset/1-3: build: PASS - conformance/interfaces/sigdelset/1-3: link: PASS - conformance/interfaces/sigdelset/1-4: build: PASS - conformance/interfaces/sigdelset/1-4: link: PASS - conformance/interfaces/sigdelset/2-1: build: PASS - conformance/interfaces/sigdelset/2-1: link: PASS - conformance/interfaces/sigdelset/1-core-buildonly: build: PASS - conformance/interfaces/sigdelset/1-core-buildonly: link: PASS - conformance/interfaces/sigdelset/4-core-buildonly: build: PASS - conformance/interfaces/sigdelset/4-core-buildonly: link: PASS - conformance/interfaces/sigemptyset/1-1: build: PASS - conformance/interfaces/sigemptyset/1-1: link: PASS - conformance/interfaces/sigemptyset/2-1: build: PASS - conformance/interfaces/sigemptyset/2-1: link: PASS - conformance/interfaces/sigfillset/1-1: build: PASS - conformance/interfaces/sigfillset/1-1: link: PASS - conformance/interfaces/sigfillset/2-1: build: PASS - conformance/interfaces/sigfillset/2-1: link: PASS - conformance/interfaces/sighold/1-1: build: PASS - conformance/interfaces/sighold/1-1: link: PASS - conformance/interfaces/sighold/2-1: build: PASS - conformance/interfaces/sighold/2-1: link: PASS - conformance/interfaces/sighold/3-core-buildonly: build: PASS - conformance/interfaces/sighold/3-core-buildonly: link: PASS - conformance/interfaces/sigignore/1-1: build: PASS - conformance/interfaces/sigignore/1-1: link: PASS - conformance/interfaces/sigignore/4-1: build: PASS - conformance/interfaces/sigignore/4-1: link: PASS - conformance/interfaces/sigignore/6-1: build: PASS - conformance/interfaces/sigignore/6-1: link: PASS - conformance/interfaces/sigignore/6-2: build: PASS - conformance/interfaces/sigignore/6-2: link: PASS - conformance/interfaces/sigignore/5-core-buildonly: build: PASS - conformance/interfaces/sigignore/5-core-buildonly: link: PASS - conformance/interfaces/sigismember/3-1: build: PASS - conformance/interfaces/sigismember/3-1: link: PASS - conformance/interfaces/sigismember/4-1: build: PASS - conformance/interfaces/sigismember/4-1: link: PASS - conformance/interfaces/sigismember/5-core-buildonly: build: PASS - conformance/interfaces/sigismember/5-core-buildonly: link: PASS - conformance/interfaces/signal/1-1: build: PASS - conformance/interfaces/signal/1-1: link: PASS - conformance/interfaces/signal/2-1: build: PASS - conformance/interfaces/signal/2-1: link: PASS - conformance/interfaces/signal/3-1: build: PASS - conformance/interfaces/signal/3-1: link: PASS - conformance/interfaces/signal/5-1: build: PASS - conformance/interfaces/signal/5-1: link: PASS - conformance/interfaces/signal/6-1: build: PASS - conformance/interfaces/signal/6-1: link: PASS - conformance/interfaces/signal/7-1: build: PASS - conformance/interfaces/signal/7-1: link: PASS - conformance/interfaces/sigpause/1-1: build: PASS - conformance/interfaces/sigpause/1-1: link: PASS - conformance/interfaces/sigpause/1-2: build: PASS - conformance/interfaces/sigpause/1-2: link: PASS - conformance/interfaces/sigpause/2-1: build: PASS - conformance/interfaces/sigpause/2-1: link: PASS - conformance/interfaces/sigpause/3-1: build: PASS - conformance/interfaces/sigpause/3-1: link: PASS - conformance/interfaces/sigpause/4-1: build: PASS - conformance/interfaces/sigpause/4-1: link: PASS - conformance/interfaces/sigpending/1-1: build: PASS - conformance/interfaces/sigpending/1-1: link: PASS - conformance/interfaces/sigpending/1-2: build: PASS - conformance/interfaces/sigpending/1-2: link: PASS - conformance/interfaces/sigpending/1-3: build: PASS - conformance/interfaces/sigpending/1-3: link: PASS - conformance/interfaces/sigpending/2-1: build: PASS - conformance/interfaces/sigpending/2-1: link: PASS - conformance/interfaces/sigprocmask/10-1: build: PASS - conformance/interfaces/sigprocmask/10-1: link: PASS - conformance/interfaces/sigprocmask/12-1: build: PASS - conformance/interfaces/sigprocmask/12-1: link: PASS - conformance/interfaces/sigprocmask/15-1: build: PASS - conformance/interfaces/sigprocmask/15-1: link: PASS - conformance/interfaces/sigprocmask/4-1: build: PASS - conformance/interfaces/sigprocmask/4-1: link: PASS - conformance/interfaces/sigprocmask/5-1: build: PASS - conformance/interfaces/sigprocmask/5-1: link: PASS - conformance/interfaces/sigprocmask/17-core-buildonly: build: PASS - conformance/interfaces/sigprocmask/17-core-buildonly: link: PASS - conformance/interfaces/sigprocmask/6-1: build: PASS - conformance/interfaces/sigprocmask/6-1: link: PASS - conformance/interfaces/sigprocmask/7-1: build: PASS - conformance/interfaces/sigprocmask/7-1: link: PASS - conformance/interfaces/sigprocmask/8-1: build: PASS - conformance/interfaces/sigprocmask/8-1: link: PASS - conformance/interfaces/sigprocmask/8-2: build: PASS - conformance/interfaces/sigprocmask/8-2: link: PASS - conformance/interfaces/sigprocmask/8-3: build: PASS - conformance/interfaces/sigprocmask/8-3: link: PASS - conformance/interfaces/sigprocmask/9-1: build: PASS - conformance/interfaces/sigprocmask/9-1: link: PASS conformance/interfaces/sigqueue/1-1: build: FAILED: Compiler output: conformance/interfaces/sigqueue/1-1.c: In function ‘myhandler’: conformance/interfaces/sigqueue/1-1.c:33: error: ‘SIGRTMIN’ undeclared (first use in this function) @@ -4163,18 +683,6 @@ interrupted using `kill [PID]`. conformance/interfaces/sigqueue/1-1.c: In function ‘main’: conformance/interfaces/sigqueue/1-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function) conformance/interfaces/sigqueue/1-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) - conformance/interfaces/sigqueue/10-1: build: PASS - conformance/interfaces/sigqueue/10-1: link: PASS - conformance/interfaces/sigqueue/11-1: build: PASS - conformance/interfaces/sigqueue/11-1: link: PASS - conformance/interfaces/sigqueue/12-1: build: PASS - conformance/interfaces/sigqueue/12-1: link: PASS - conformance/interfaces/sigqueue/2-1: build: PASS - conformance/interfaces/sigqueue/2-1: link: PASS - conformance/interfaces/sigqueue/2-2: build: PASS - conformance/interfaces/sigqueue/2-2: link: PASS - conformance/interfaces/sigqueue/3-1: build: PASS - conformance/interfaces/sigqueue/3-1: link: PASS conformance/interfaces/sigqueue/4-1: build: FAILED: Compiler output: conformance/interfaces/sigqueue/4-1.c: In function ‘main’: conformance/interfaces/sigqueue/4-1.c:45: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -4211,75 +719,17 @@ interrupted using `kill [PID]`. conformance/interfaces/sigqueue/9-1.c:46: error: (Each undeclared identifier is reported only once conformance/interfaces/sigqueue/9-1.c:46: error: for each function it appears in.) conformance/interfaces/sigqueue/9-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) - conformance/interfaces/sigrelse/1-1: build: PASS - conformance/interfaces/sigrelse/1-1: link: PASS - conformance/interfaces/sigrelse/2-1: build: PASS - conformance/interfaces/sigrelse/2-1: link: PASS - conformance/interfaces/sigrelse/3-core-buildonly: build: PASS - conformance/interfaces/sigrelse/3-core-buildonly: link: PASS - conformance/interfaces/sigset/1-1: build: PASS - conformance/interfaces/sigset/1-1: link: PASS - conformance/interfaces/sigset/10-1: build: PASS - conformance/interfaces/sigset/10-1: link: PASS - conformance/interfaces/sigset/2-1: build: PASS - conformance/interfaces/sigset/2-1: link: PASS - conformance/interfaces/sigset/3-1: build: PASS - conformance/interfaces/sigset/3-1: link: PASS - conformance/interfaces/sigset/4-1: build: PASS - conformance/interfaces/sigset/4-1: link: PASS - conformance/interfaces/sigset/5-1: build: PASS - conformance/interfaces/sigset/5-1: link: PASS - conformance/interfaces/sigset/6-1: build: PASS - conformance/interfaces/sigset/6-1: link: PASS - conformance/interfaces/sigset/7-1: build: PASS - conformance/interfaces/sigset/7-1: link: PASS - conformance/interfaces/sigset/8-1: build: PASS - conformance/interfaces/sigset/8-1: link: PASS - conformance/interfaces/sigset/9-1: build: PASS - conformance/interfaces/sigset/9-1: link: PASS - conformance/interfaces/sigsuspend/1-1: build: PASS - conformance/interfaces/sigsuspend/1-1: link: PASS - conformance/interfaces/sigsuspend/3-1: build: PASS - conformance/interfaces/sigsuspend/3-1: link: PASS - conformance/interfaces/sigsuspend/4-1: build: PASS - conformance/interfaces/sigsuspend/4-1: link: PASS - conformance/interfaces/sigsuspend/6-1: build: PASS - conformance/interfaces/sigsuspend/6-1: link: PASS - conformance/interfaces/sigtimedwait/1-1: build: PASS - conformance/interfaces/sigtimedwait/1-1: link: PASS - conformance/interfaces/sigtimedwait/2-1: build: PASS - conformance/interfaces/sigtimedwait/2-1: link: PASS - conformance/interfaces/sigtimedwait/4-1: build: PASS - conformance/interfaces/sigtimedwait/4-1: link: PASS - conformance/interfaces/sigtimedwait/5-1: build: PASS - conformance/interfaces/sigtimedwait/5-1: link: PASS - conformance/interfaces/sigtimedwait/6-1: build: PASS - conformance/interfaces/sigtimedwait/6-1: link: PASS - conformance/interfaces/sigwait/1-1: build: PASS - conformance/interfaces/sigwait/1-1: link: PASS conformance/interfaces/sigwait/2-1: build: FAILED: Compiler output: conformance/interfaces/sigwait/2-1.c: In function ‘main’: conformance/interfaces/sigwait/2-1.c:45: error: ‘SIGRTMIN’ undeclared (first use in this function) conformance/interfaces/sigwait/2-1.c:45: error: (Each undeclared identifier is reported only once conformance/interfaces/sigwait/2-1.c:45: error: for each function it appears in.) - conformance/interfaces/sigwait/3-1: build: PASS - conformance/interfaces/sigwait/3-1: link: PASS - conformance/interfaces/sigwait/4-1: build: PASS - conformance/interfaces/sigwait/4-1: link: PASS - conformance/interfaces/sigwait/6-1: build: PASS - conformance/interfaces/sigwait/6-1: link: PASS - conformance/interfaces/sigwait/6-2: build: PASS - conformance/interfaces/sigwait/6-2: link: PASS conformance/interfaces/sigwait/7-1: build: FAILED: Compiler output: conformance/interfaces/sigwait/7-1.c: In function ‘main’: conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMIN’ undeclared (first use in this function) conformance/interfaces/sigwait/7-1.c:114: error: (Each undeclared identifier is reported only once conformance/interfaces/sigwait/7-1.c:114: error: for each function it appears in.) conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMAX’ undeclared (first use in this function) - conformance/interfaces/sigwait/8-1: build: PASS - conformance/interfaces/sigwait/8-1: link: PASS - conformance/interfaces/sigwaitinfo/1-1: build: PASS - conformance/interfaces/sigwaitinfo/1-1: link: PASS conformance/interfaces/sigwaitinfo/2-1: build: FAILED: Compiler output: conformance/interfaces/sigwaitinfo/2-1.c: In function ‘main’: conformance/interfaces/sigwaitinfo/2-1.c:44: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -4287,8 +737,6 @@ interrupted using `kill [PID]`. conformance/interfaces/sigwaitinfo/2-1.c:44: error: for each function it appears in.) conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMAX’ undeclared (first use in this function) conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function) - conformance/interfaces/sigwaitinfo/3-1: build: PASS - conformance/interfaces/sigwaitinfo/3-1: link: PASS conformance/interfaces/sigwaitinfo/5-1: build: FAILED: Compiler output: conformance/interfaces/sigwaitinfo/5-1.c: In function ‘main’: conformance/interfaces/sigwaitinfo/5-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function) @@ -4311,135 +759,6 @@ interrupted using `kill [PID]`. conformance/interfaces/sigwaitinfo/8-1.c:47: error: (Each undeclared identifier is reported only once conformance/interfaces/sigwaitinfo/8-1.c:47: error: for each function it appears in.) conformance/interfaces/sigwaitinfo/8-1.c:50: error: ‘SIGRTMIN’ undeclared (first use in this function) - conformance/interfaces/sigwaitinfo/9-1: build: PASS - conformance/interfaces/sigwaitinfo/9-1: link: PASS - conformance/interfaces/strftime/1-1: build: PASS - conformance/interfaces/strftime/1-1: link: PASS - conformance/interfaces/strftime/2-1: build: PASS - conformance/interfaces/strftime/2-1: link: PASS - conformance/interfaces/strftime/3-1: build: PASS - conformance/interfaces/strftime/3-1: link: PASS - conformance/interfaces/time/1-1: build: PASS - conformance/interfaces/time/1-1: link: PASS - conformance/interfaces/timer_create/1-1: build: PASS - conformance/interfaces/timer_create/1-1: link: PASS - conformance/interfaces/timer_create/10-1: build: PASS - conformance/interfaces/timer_create/10-1: link: PASS - conformance/interfaces/timer_create/11-1: build: PASS - conformance/interfaces/timer_create/11-1: link: PASS - conformance/interfaces/timer_create/16-1: build: PASS - conformance/interfaces/timer_create/16-1: link: PASS - conformance/interfaces/timer_create/3-1: build: PASS - conformance/interfaces/timer_create/3-1: link: PASS - conformance/interfaces/timer_create/7-1: build: PASS - conformance/interfaces/timer_create/7-1: link: PASS - conformance/interfaces/timer_create/8-1: build: PASS - conformance/interfaces/timer_create/8-1: link: PASS - conformance/interfaces/timer_create/9-1: build: PASS - conformance/interfaces/timer_create/9-1: link: PASS - conformance/interfaces/timer_create/speculative/15-1: build: PASS - conformance/interfaces/timer_create/speculative/15-1: link: PASS - conformance/interfaces/timer_create/speculative/2-1: build: PASS - conformance/interfaces/timer_create/speculative/2-1: link: PASS - conformance/interfaces/timer_create/speculative/5-1: build: PASS - conformance/interfaces/timer_create/speculative/5-1: link: PASS - conformance/interfaces/timer_delete/1-1: build: PASS - conformance/interfaces/timer_delete/1-1: link: PASS - conformance/interfaces/timer_delete/1-2: build: PASS - conformance/interfaces/timer_delete/1-2: link: PASS - conformance/interfaces/timer_delete/speculative/5-1: build: PASS - conformance/interfaces/timer_delete/speculative/5-1: link: PASS - conformance/interfaces/timer_delete/speculative/5-2: build: PASS - conformance/interfaces/timer_delete/speculative/5-2: link: PASS - conformance/interfaces/timer_getoverrun/1-1: build: PASS - conformance/interfaces/timer_getoverrun/1-1: link: PASS - conformance/interfaces/timer_getoverrun/2-1: build: PASS - conformance/interfaces/timer_getoverrun/2-1: link: PASS - conformance/interfaces/timer_getoverrun/2-2: build: PASS - conformance/interfaces/timer_getoverrun/2-2: link: PASS - conformance/interfaces/timer_getoverrun/2-3: build: PASS - conformance/interfaces/timer_getoverrun/2-3: link: PASS - conformance/interfaces/timer_getoverrun/3-1: build: PASS - conformance/interfaces/timer_getoverrun/3-1: link: PASS - conformance/interfaces/timer_getoverrun/speculative/6-1: build: PASS - conformance/interfaces/timer_getoverrun/speculative/6-1: link: PASS - conformance/interfaces/timer_getoverrun/speculative/6-2: build: PASS - conformance/interfaces/timer_getoverrun/speculative/6-2: link: PASS - conformance/interfaces/timer_getoverrun/speculative/6-3: build: PASS - conformance/interfaces/timer_getoverrun/speculative/6-3: link: PASS - conformance/interfaces/timer_gettime/1-1: build: PASS - conformance/interfaces/timer_gettime/1-1: link: PASS - conformance/interfaces/timer_gettime/1-2: build: PASS - conformance/interfaces/timer_gettime/1-2: link: PASS - conformance/interfaces/timer_gettime/1-3: build: PASS - conformance/interfaces/timer_gettime/1-3: link: PASS - conformance/interfaces/timer_gettime/1-4: build: PASS - conformance/interfaces/timer_gettime/1-4: link: PASS - conformance/interfaces/timer_gettime/2-1: build: PASS - conformance/interfaces/timer_gettime/2-1: link: PASS - conformance/interfaces/timer_gettime/2-2: build: PASS - conformance/interfaces/timer_gettime/2-2: link: PASS - conformance/interfaces/timer_gettime/3-1: build: PASS - conformance/interfaces/timer_gettime/3-1: link: PASS - conformance/interfaces/timer_gettime/speculative/6-1: build: PASS - conformance/interfaces/timer_gettime/speculative/6-1: link: PASS - conformance/interfaces/timer_gettime/speculative/6-2: build: PASS - conformance/interfaces/timer_gettime/speculative/6-2: link: PASS - conformance/interfaces/timer_gettime/speculative/6-3: build: PASS - conformance/interfaces/timer_gettime/speculative/6-3: link: PASS - conformance/interfaces/timer_settime/1-1: build: PASS - conformance/interfaces/timer_settime/1-1: link: PASS - conformance/interfaces/timer_settime/1-2: build: PASS - conformance/interfaces/timer_settime/1-2: link: PASS - conformance/interfaces/timer_settime/13-1: build: PASS - conformance/interfaces/timer_settime/13-1: link: PASS - conformance/interfaces/timer_settime/2-1: build: PASS - conformance/interfaces/timer_settime/2-1: link: PASS - conformance/interfaces/timer_settime/3-1: build: PASS - conformance/interfaces/timer_settime/3-1: link: PASS - conformance/interfaces/timer_settime/3-2: build: PASS - conformance/interfaces/timer_settime/3-2: link: PASS - conformance/interfaces/timer_settime/3-3: build: PASS - conformance/interfaces/timer_settime/3-3: link: PASS - conformance/interfaces/timer_settime/5-1: build: PASS - conformance/interfaces/timer_settime/5-1: link: PASS - conformance/interfaces/timer_settime/5-2: build: PASS - conformance/interfaces/timer_settime/5-2: link: PASS - conformance/interfaces/timer_settime/5-3: build: PASS - conformance/interfaces/timer_settime/5-3: link: PASS - conformance/interfaces/timer_settime/6-1: build: PASS - conformance/interfaces/timer_settime/6-1: link: PASS - conformance/interfaces/timer_settime/8-1: build: PASS - conformance/interfaces/timer_settime/8-1: link: PASS - conformance/interfaces/timer_settime/8-2: build: PASS - conformance/interfaces/timer_settime/8-2: link: PASS - conformance/interfaces/timer_settime/8-3: build: PASS - conformance/interfaces/timer_settime/8-3: link: PASS - conformance/interfaces/timer_settime/8-4: build: PASS - conformance/interfaces/timer_settime/8-4: link: PASS - conformance/interfaces/timer_settime/9-1: build: PASS - conformance/interfaces/timer_settime/9-1: link: PASS - conformance/interfaces/timer_settime/9-2: build: PASS - conformance/interfaces/timer_settime/9-2: link: PASS - conformance/interfaces/timer_settime/speculative/12-1: build: PASS - conformance/interfaces/timer_settime/speculative/12-1: link: PASS - conformance/interfaces/timer_settime/speculative/12-2: build: PASS - conformance/interfaces/timer_settime/speculative/12-2: link: PASS - conformance/interfaces/timer_settime/speculative/12-3: build: PASS - conformance/interfaces/timer_settime/speculative/12-3: link: PASS - functional/threads/schedule/1-1: build: PASS - functional/threads/schedule/1-1: link: PASS - functional/threads/schedule/1-2: build: PASS - functional/threads/schedule/1-2: link: PASS - conformance/behavior/WIFEXITED/1-1: execution: PASS - conformance/behavior/WIFEXITED/1-2: execution: PASS - conformance/behavior/WIFEXITED/1-3: execution: PASS - conformance/behavior/timers/1-1: execution: PASS - conformance/behavior/timers/2-1: execution: PASS - conformance/definitions/aio_h/2-1: execution: PASS - conformance/definitions/aio_h/4-1: execution: PASS - conformance/definitions/errno_h/3-2: execution: PASS - conformance/definitions/errno_h/4-1: execution: PASS conformance/definitions/mqueue_h/1-1: execution: UNTESTED: Output: Not Implemented! conformance/definitions/mqueue_h/10-1: execution: UNTESTED: Output: @@ -4462,8 +781,6 @@ interrupted using `kill [PID]`. Test not implemented! conformance/definitions/mqueue_h/9-1: execution: UNTESTED: Output: Test not implemented! - conformance/definitions/sched_h/10-1: execution: PASS - conformance/definitions/signal_h/13-1: execution: PASS conformance/interfaces/aio_cancel/1-1: execution: UNSUPPORTED: Output: conformance/interfaces/aio_cancel/10-1: execution: UNSUPPORTED: Output: conformance/interfaces/aio_cancel/2-1: execution: UNSUPPORTED: Output: @@ -4521,58 +838,25 @@ interrupted using `kill [PID]`. conformance/interfaces/aio_write/8-2: execution: UNSUPPORTED: Output: conformance/interfaces/aio_write/9-1: execution: UNSUPPORTED: Output: conformance/interfaces/aio_write/9-2: execution: UNSUPPORTED: Output: - conformance/interfaces/asctime/1-1: execution: PASS - conformance/interfaces/clock/1-1: execution: PASS - conformance/interfaces/clock/2-1: execution: PASS - conformance/interfaces/clock/4-1: execution: PASS conformance/interfaces/clock_getcpuclockid/1-1: execution: UNSUPPORTED: Output: _POSIX_CPUTIME unsupported conformance/interfaces/clock_getcpuclockid/2-1: execution: UNSUPPORTED: Output: _POSIX_CPUTIME unsupported - conformance/interfaces/clock_getres/1-1: execution: PASS - conformance/interfaces/clock_getres/2-1: execution: PASS conformance/interfaces/clock_getres/3-1: execution: FAILED: Output: clock_getres() failed Test FAILED - conformance/interfaces/clock_getres/4-1: execution: PASS - conformance/interfaces/clock_getres/5-1: execution: PASS - conformance/interfaces/clock_getres/6-1: execution: PASS - conformance/interfaces/clock_getres/6-2: execution: PASS conformance/interfaces/clock_getres/7-1: execution: UNSUPPORTED: Output: _POSIX_CPUTIME not supported conformance/interfaces/clock_getres/8-1: execution: UNSUPPORTED: Output: _POSIX_THREAD_CPUTIME not supported - conformance/interfaces/clock_gettime/1-1: execution: PASS - conformance/interfaces/clock_gettime/1-2: execution: PASS - conformance/interfaces/clock_gettime/2-1: execution: PASS conformance/interfaces/clock_gettime/3-1: execution: UNSUPPORTED: Output: CLOCK_MONOTONIC unsupported conformance/interfaces/clock_gettime/4-1: execution: UNSUPPORTED: Output: _POSIX_CPUTIME unsupported - conformance/interfaces/clock_gettime/6-1: execution: PASS - conformance/interfaces/clock_gettime/7-1: execution: PASS - conformance/interfaces/clock_gettime/8-1: execution: PASS - conformance/interfaces/clock_gettime/8-2: execution: PASS - conformance/interfaces/clock_nanosleep/1-1: execution: PASS - conformance/interfaces/clock_nanosleep/1-2: execution: PASS - conformance/interfaces/clock_nanosleep/1-3: execution: PASS - conformance/interfaces/clock_nanosleep/1-4: execution: PASS - conformance/interfaces/clock_nanosleep/1-5: execution: PASS conformance/interfaces/clock_nanosleep/10-1: execution: FAILED: Output: In handler errno != EINTR Test FAILED - conformance/interfaces/clock_nanosleep/11-1: execution: PASS - conformance/interfaces/clock_nanosleep/13-1: execution: PASS - conformance/interfaces/clock_nanosleep/15-1: execution: PASS - conformance/interfaces/clock_nanosleep/2-1: execution: PASS - conformance/interfaces/clock_nanosleep/2-2: execution: PASS - conformance/interfaces/clock_nanosleep/2-3: execution: PASS - conformance/interfaces/clock_nanosleep/3-1: execution: PASS - conformance/interfaces/clock_nanosleep/4-1: execution: PASS - conformance/interfaces/clock_nanosleep/5-1: execution: PASS - conformance/interfaces/clock_nanosleep/6-1: execution: PASS - conformance/interfaces/clock_nanosleep/8-1: execution: PASS conformance/interfaces/clock_nanosleep/9-1: execution: FAILED: Output: In handler clock_nanosleep() did not return EINTR @@ -4580,15 +864,8 @@ interrupted using `kill [PID]`. Test FAILED conformance/interfaces/clock_settime/1-1: execution: UNTESTED: Output: Run this test as ROOT, not as a Regular User - conformance/interfaces/clock_settime/15-1: execution: PASS - conformance/interfaces/clock_settime/16-1: execution: PASS - conformance/interfaces/clock_settime/17-1: execution: PASS - conformance/interfaces/clock_settime/17-2: execution: PASS - conformance/interfaces/clock_settime/18-1: execution: PASS conformance/interfaces/clock_settime/19-1: execution: UNTESTED: Output: Run this test as ROOT, not as a Regular User - conformance/interfaces/clock_settime/20-1: execution: PASS - conformance/interfaces/clock_settime/3-1: execution: PASS conformance/interfaces/clock_settime/4-1: execution: UNTESTED: Output: Run this test as ROOT, not as a Regular User conformance/interfaces/clock_settime/4-2: execution: UNRESOLVED: Output: @@ -4598,7 +875,6 @@ interrupted using `kill [PID]`. Run this test as ROOT, not as a Regular User conformance/interfaces/clock_settime/5-2: execution: UNTESTED: Output: Run this test as ROOT, not as a Regular User - conformance/interfaces/clock_settime/6-1: execution: PASS conformance/interfaces/clock_settime/7-1: execution: UNTESTED: Output: Run this test as ROOT, not as a Regular User conformance/interfaces/clock_settime/7-2: execution: UNTESTED: Output: @@ -4611,9 +887,6 @@ interrupted using `kill [PID]`. conformance/interfaces/clock_settime/speculative/4-4: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/ctime/1-1: execution: PASS - conformance/interfaces/difftime/1-1: execution: PASS - conformance/interfaces/difftime/2-1: execution: PASS conformance/interfaces/fork/1-1: execution: UNRESOLVED: Output: [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore) [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore) @@ -4628,7 +901,6 @@ interrupted using `kill [PID]`. [09:57:14]Test conformance/interfaces/fork/13-1.c unresolved: got 1073741902 (Function not implemented) on line 117 (Failed to set interval timer for ITIMER_VIRTUAL) conformance/interfaces/fork/14-1: execution: UNRESOLVED: Output: [09:57:14]Test conformance/interfaces/fork/14-1.c unresolved: got 1073741869 (Operation not supported) on line 100 (Failed to create the named semaphore) - conformance/interfaces/fork/16-1: execution: PASS conformance/interfaces/fork/17-1: execution: UNRESOLVED: Output: [09:57:15]Test conformance/interfaces/fork/17-1.c unresolved: got 1073741902 (Function not implemented) on line 103 (Failed to get max priority value) conformance/interfaces/fork/17-2: execution: UNRESOLVED: Output: @@ -4641,32 +913,10 @@ interrupted using `kill [PID]`. [09:57:17]Test conformance/interfaces/fork/21-1.c unresolved: got 1073741869 (Operation not supported) on line 128 (Failed to open the semaphore) conformance/interfaces/fork/22-1: execution: UNTESTED: Output: [09:57:17]File conformance/interfaces/fork/22-1.c cannot test: The testcase needs CPUTIME or THREAD_CPUTIME support - conformance/interfaces/fork/3-1: execution: PASS - conformance/interfaces/fork/4-1: execution: PASS - conformance/interfaces/fork/6-1: execution: PASS - conformance/interfaces/fork/7-1: execution: PASS conformance/interfaces/fork/8-1: execution: FAILED: Output: [09:57:20]Test conformance/interfaces/fork/8-1.c FAILED: The process is created with non-zero tms_cutime or tms_cstime - conformance/interfaces/fork/9-1: execution: PASS - conformance/interfaces/fsync/4-1: execution: PASS - conformance/interfaces/fsync/5-1: execution: PASS conformance/interfaces/fsync/7-1: execution: FAILED: Output: fsync/7-1.c Test Fail: Expect EINVAL, get: (ipc/mig) bad request message ID - conformance/interfaces/getpid/1-1: execution: PASS - conformance/interfaces/gmtime/1-1: execution: PASS - conformance/interfaces/gmtime/2-1: execution: PASS - conformance/interfaces/kill/1-1: execution: PASS - conformance/interfaces/kill/1-2: execution: PASS - conformance/interfaces/kill/2-1: execution: PASS - conformance/interfaces/kill/2-2: execution: PASS - conformance/interfaces/kill/3-1: execution: PASS - conformance/interfaces/killpg/1-1: execution: PASS - conformance/interfaces/killpg/1-2: execution: PASS - conformance/interfaces/killpg/2-1: execution: PASS - conformance/interfaces/killpg/4-1: execution: PASS - conformance/interfaces/killpg/5-1: execution: PASS - conformance/interfaces/killpg/6-1: execution: PASS - conformance/interfaces/killpg/8-1: execution: PASS conformance/interfaces/lio_listio/12-1: execution: UNSUPPORTED: Output: conformance/interfaces/lio_listio/13-1: execution: UNSUPPORTED: Output: conformance/interfaces/lio_listio/18-1: execution: UNSUPPORTED: Output: @@ -4674,49 +924,33 @@ interrupted using `kill [PID]`. conformance/interfaces/lio_listio/6-1: execution: UNSUPPORTED: Output: conformance/interfaces/lio_listio/8-1: execution: UNSUPPORTED: Output: conformance/interfaces/lio_listio/9-1: execution: UNSUPPORTED: Output: - conformance/interfaces/localtime/1-1: execution: PASS - conformance/interfaces/mktime/1-1: execution: PASS conformance/interfaces/mlock/10-1: execution: UNRESOLVED: Output: You don't have permission to lock your address space. Try to rerun this test as root. - conformance/interfaces/mlock/2-1: execution: PASS - conformance/interfaces/mlock/4-1: execution: PASS conformance/interfaces/mlock/5-1: execution: UNRESOLVED: Output: You don't have permission to lock your address space. Try to rerun this test as root. - conformance/interfaces/mlock/7-1: execution: PASS conformance/interfaces/mlock/8-1: execution: UNRESOLVED: Output: You don't have permission to lock your address space. Try to rerun this test as root. - conformance/interfaces/mlock/speculative/12-1: execution: PASS conformance/interfaces/mlockall/13-1: execution: FAILED: Output: Unexpected error: Function not implemented conformance/interfaces/mlockall/13-2: execution: FAILED: Output: Unexpected error: Function not implemented - conformance/interfaces/mlockall/2-1: execution: PASS conformance/interfaces/mlockall/3-6: execution: UNRESOLVED: Output: An error occurs when calling mlockall(): Function not implemented conformance/interfaces/mlockall/3-7: execution: UNRESOLVED: Output: An error occurs when calling mlockall(): Function not implemented - conformance/interfaces/mlockall/7-1: execution: PASS conformance/interfaces/mlockall/8-1: execution: UNRESOLVED: Output: Unexpected error: Function not implemented - conformance/interfaces/mlockall/9-1: execution: PASS conformance/interfaces/mlockall/speculative/15-1: execution: UNRESOLVED: Output: Unexpected error: Function not implemented - conformance/interfaces/mmap/1-1: execution: PASS - conformance/interfaces/mmap/1-2: execution: PASS - conformance/interfaces/mmap/10-1: execution: PASS - conformance/interfaces/mmap/11-1: execution: PASS - conformance/interfaces/mmap/11-2: execution: PASS - conformance/interfaces/mmap/11-3: execution: PASS conformance/interfaces/mmap/11-4: execution: FAILED: Output: pa: 0x28000 pa_2: 0x29000 Test Fail: mmap/11-4.c Modification of the partial page at the end of an object is written out conformance/interfaces/mmap/11-5: execution: FAILED: Output: Test Fail: mmap/11-5.c Modification of the partial page at the end of an object is written out - conformance/interfaces/mmap/12-1: execution: PASS conformance/interfaces/mmap/13-1: execution: FAILED: Output: Time before write(): 1248767904 Time before mmap(): 1248767905 @@ -4731,15 +965,10 @@ interrupted using `kill [PID]`. ctime1: 1248767909, ctime2: 1248767909 mtime1: 1248767909, mtime2: 1248767909 Test Fail mmap/14-1.c st_ctime and st_mtime were not updated properly - conformance/interfaces/mmap/16-1: execution: PASS - conformance/interfaces/mmap/17-1: execution: PASS conformance/interfaces/mmap/18-1: execution: UNRESOLVED: Output: mmap/18-1.c Error at mlockall(): Function not implemented - conformance/interfaces/mmap/19-1: execution: PASS - conformance/interfaces/mmap/20-1: execution: PASS conformance/interfaces/mmap/21-1: execution: FAILED: Output: Test FAIL - conformance/interfaces/mmap/23-1: execution: PASS Kernel panic [[!tag open_issue_gnumach]] (at conformance/interfaces/mmap/24-1): @@ -4777,26 +1006,17 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: Test Untested: MAP_FIXED defined conformance/interfaces/mmap/28-1: execution: FAILED: Output: Test Fail: mmap/28-1.c Got no error at mmap() - conformance/interfaces/mmap/3-1: execution: PASS conformance/interfaces/mmap/31-1: execution: FAILED: Output: Test FAIL: expect EOVERFLOW but get other error: Cannot allocate memory off: fffff000, len: fffff000 - conformance/interfaces/mmap/5-1: execution: PASS - conformance/interfaces/mmap/6-1: execution: PASS - conformance/interfaces/mmap/6-2: execution: PASS - conformance/interfaces/mmap/6-3: execution: PASS conformance/interfaces/mmap/6-4: execution: FAILED: Output: Test Fail: Did not get EACCES as expected - conformance/interfaces/mmap/6-5: execution: PASS conformance/interfaces/mmap/6-6: execution: FAILED: Output: Test Fail: Did not get EACCES as expected conformance/interfaces/mmap/7-1: execution: UNRESOLVED: Output: mmap/7-1.c Error at msync(): Error in unknown error system: FFFFFFFF conformance/interfaces/mmap/7-2: execution: UNRESOLVED: Output: mmap/7-2.c Error at msync(): Error in unknown error system: FFFFFFFF - conformance/interfaces/mmap/7-3: execution: PASS - conformance/interfaces/mmap/7-4: execution: PASS - conformance/interfaces/mmap/9-1: execution: PASS conformance/interfaces/mq_close/1-1: execution: UNRESOLVED: Output: mq_open() did not return success: Function not implemented conformance/interfaces/mq_close/2-1: execution: UNRESOLVED: Output: @@ -4815,7 +1035,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/mq_close/5-1: execution: UNTESTED: Output: Functionality of using mqdes after mq_close() and before mq_open() will not be tested as POSIX says this is undefined. - conformance/interfaces/mq_getattr/1-1: execution: PASS conformance/interfaces/mq_getattr/2-1: execution: UNRESOLVED: Output: unexpected error: mq_getattr 2-1: mq_open(): Function not implemented conformance/interfaces/mq_getattr/2-2: execution: UNRESOLVED: Output: @@ -4824,8 +1043,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: mq_getattr 3-1: mq_open(): Function not implemented conformance/interfaces/mq_getattr/4-1: execution: UNRESOLVED: Output: unexpected error: mq_getattr 4-1: mq_open(): Function not implemented - conformance/interfaces/mq_getattr/5-1: execution: PASS - conformance/interfaces/mq_getattr/6-1: execution: PASS conformance/interfaces/mq_getattr/speculative/7-1: execution: UNRESOLVED: Output: unexpected error: mq_getattr 7-1: mq_open(): Function not implemented conformance/interfaces/mq_notify/1-1: execution: UNRESOLVED: Output: @@ -4838,8 +1055,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: mq_notify 4-1: mq_open: Function not implemented conformance/interfaces/mq_notify/5-1: execution: UNRESOLVED: Output: unexpected error: mq_notify 5-1: mq_open: Function not implemented - conformance/interfaces/mq_notify/6-1: execution: PASS - conformance/interfaces/mq_notify/7-1: execution: PASS conformance/interfaces/mq_notify/8-1: execution: UNRESOLVED: Output: unexpected error: mq_notify 8-1: mq_open(): Function not implemented conformance/interfaces/mq_notify/9-1: execution: UNRESOLVED: Output: @@ -4885,7 +1100,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/mq_open/20-1: execution: FAILED: Output: mq_open() did not return success: Function not implemented Test FAILED - conformance/interfaces/mq_open/21-1: execution: PASS conformance/interfaces/mq_open/22-1: execution: UNTESTED: Output: Will not test returning EACCESS when privileges are denied as POSIX does not define when this error occurs. @@ -4917,7 +1131,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/mq_open/29-1: execution: FAILED: Output: errno != ENOENT Test FAILED - conformance/interfaces/mq_open/3-1: execution: PASS conformance/interfaces/mq_open/30-1: execution: UNTESTED: Output: Will not test mq_open() failing with ENOSPC when there is not enough space to create the message queue @@ -4947,13 +1160,10 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/mq_open/9-2: execution: UNRESOLVED: Output: mq_open() did not return success: Function not implemented Test UNRESOLVED - conformance/interfaces/mq_open/speculative/2-2: execution: PASS - conformance/interfaces/mq_open/speculative/2-3: execution: PASS conformance/interfaces/mq_open/speculative/26-1: execution: FAILED: Output: mq_open() failed before expected errno != EMFILE on > _POSIX_OPEN_MAX or _POSIX_MQ_OPEN_MAX queues Test FAILED - conformance/interfaces/mq_open/speculative/6-1: execution: PASS conformance/interfaces/mq_receive/1-1: execution: FAILED: Output: unexpected error: mq_receive 1-1: mq_open: Function not implemented unexpected error: mq_receive 1-1: mq_send: Function not implemented @@ -5003,7 +1213,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: mq_receive 2-1: mq_close: Function not implemented unexpected error: mq_receive 2-1: mq_unlink: Function not implemented Test UNRESOLVED - conformance/interfaces/mq_receive/4-1: execution: PASS conformance/interfaces/mq_receive/5-1: execution: FAILED: Output: unexpected error: mq_receive 5-1: mq_open: Function not implemented unexpected error: mq_receive 5-1: mq_send: Function not implemented @@ -5025,7 +1234,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: FAIL: mq_receive didn't return the selected message size correctly FAIL: mq_receive didn't return the selected message size correctly Test FAILED - conformance/interfaces/mq_receive/9-1: execution: PASS conformance/interfaces/mq_send/1-1: execution: UNRESOLVED: Output: mq_open() did not return success: Function not implemented conformance/interfaces/mq_send/10-1: execution: UNRESOLVED: Output: @@ -5061,8 +1269,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: mq_open() did not return success: Function not implemented conformance/interfaces/mq_setattr/2-1: execution: UNRESOLVED: Output: mq_open() did not return success: Function not implemented - conformance/interfaces/mq_setattr/3-1: execution: PASS - conformance/interfaces/mq_setattr/4-1: execution: PASS conformance/interfaces/mq_setattr/5-1: execution: UNRESOLVED: Output: unexpected error: mq_setattr 5-1: mq_open(): Function not implemented conformance/interfaces/mq_timedreceive/1-1: execution: FAILED: Output: @@ -5102,7 +1308,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: FAIL: mq_timedreceive didn't return the selected message size correctly FAIL: mq_timedreceive didn't return the selected message size correctly Test FAILED - conformance/interfaces/mq_timedreceive/12-1: execution: PASS conformance/interfaces/mq_timedreceive/13-1: execution: FAILED: Output: unexpected error: mq_timedreceive 13-1: mq_open: Function not implemented unexpected error: mq_timedreceive 13-1: mq_close: Function not implemented @@ -5122,7 +1327,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: mq_timedreceive 15-1: mq_unlink: Function not implemented errno != EMSGSIZE Test FAILED - conformance/interfaces/mq_timedreceive/16-1: execution: PASS conformance/interfaces/mq_timedreceive/17-1: execution: FAILED: Output: unexpected error: mq_timedreceive 17-1: mq_open: Function not implemented unexpected error: mq_timedreceive 17-1: mq_close: Function not implemented @@ -5159,7 +1363,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: mq_timedreceive 2-1: mq_close: Function not implemented unexpected error: mq_timedreceive 2-1: mq_unlink: Function not implemented Test UNRESOLVED - conformance/interfaces/mq_timedreceive/4-1: execution: PASS conformance/interfaces/mq_timedreceive/5-1: execution: FAILED: Output: unexpected error: mq_timedreceive 5-1: mq_open: Function not implemented unexpected error: mq_timedreceive 5-1: mq_send: Function not implemented @@ -5261,8 +1464,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: conformance/interfaces/mq_unlink/2-3: execution: UNTESTED: Output: Difficult to detect whether mq_unlink will block until all the reference have been closed for this instance. Will not be tested. - conformance/interfaces/mq_unlink/3-1: execution: PASS - conformance/interfaces/mq_unlink/4-1: execution: PASS conformance/interfaces/mq_unlink/7-1: execution: FAILED: Output: Test FAILED conformance/interfaces/mq_unlink/speculative/7-2: execution: FAILED: Output: @@ -5271,34 +1472,18 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: Unexpected error: Operation not permitted conformance/interfaces/munlock/11-1: execution: UNRESOLVED: Output: Unexpected error: Operation not permitted - conformance/interfaces/munlock/2-1: execution: PASS conformance/interfaces/munlock/7-1: execution: UNRESOLVED: Output: You don't have permission to lock your address space. Try to rerun this test as root. - conformance/interfaces/munlock/9-1: execution: PASS - conformance/interfaces/munlockall/5-1: execution: PASS - conformance/interfaces/munlockall/6-1: execution: PASS - conformance/interfaces/munmap/1-1: execution: PASS - conformance/interfaces/munmap/1-2: execution: PASS - conformance/interfaces/munmap/10-1: execution: PASS - conformance/interfaces/munmap/2-1: execution: PASS conformance/interfaces/munmap/3-1: execution: FAILED: Output: Test FAILED: munmap/3-1.c munmap returns: No such file or directory conformance/interfaces/munmap/4-1: execution: UNRESOLVED: Output: munmap/4-1.c Error at msync(): Error in unknown error system: FFFFFFFF - conformance/interfaces/munmap/7-1: execution: PASS conformance/interfaces/munmap/8-1: execution: FAILED: Output: Test FAILED: Expect EINVAL but get: (os/kern) successful conformance/interfaces/munmap/9-1: execution: FAILED: Output: Test Fail: Expect EINVAL while get No such file or directory conformance/interfaces/nanosleep/10000-1: execution: INTERRUPTED: Output: - conformance/interfaces/nanosleep/1-1: execution: PASS - conformance/interfaces/nanosleep/1-2: execution: PASS - conformance/interfaces/nanosleep/1-3: execution: PASS - conformance/interfaces/nanosleep/2-1: execution: PASS - conformance/interfaces/nanosleep/3-1: execution: PASS - conformance/interfaces/nanosleep/3-2: execution: PASS - conformance/interfaces/nanosleep/4-1: execution: PASS conformance/interfaces/nanosleep/5-1: execution: FAILED: Output: nanosleep() did not return -1 on failure conformance/interfaces/nanosleep/5-2: execution: FAILED: Output: @@ -5326,41 +1511,15 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: Test FAILED: Expected return value success, instead received 1073741902 conformance/interfaces/pthread_atfork/2-2: execution: UNRESOLVED: Output: [11:58:03]Test conformance/interfaces/pthread_atfork/2-2.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers(N,N,N)) - conformance/interfaces/pthread_atfork/3-1: execution: PASS conformance/interfaces/pthread_atfork/3-2: execution: UNRESOLVED: Output: [11:58:03]Test conformance/interfaces/pthread_atfork/3-2.c unresolved: got 1073741902 (Function not implemented) on line 213 (Failed to register the atfork handlers) conformance/interfaces/pthread_atfork/3-3: execution: INTERRUPTED: Output: conformance/interfaces/pthread_atfork/4-1: execution: UNRESOLVED: Output: [12:10:53]Test conformance/interfaces/pthread_atfork/4-1.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers) - conformance/interfaces/pthread_attr_destroy/1-1: execution: PASS - conformance/interfaces/pthread_attr_destroy/2-1: execution: PASS - conformance/interfaces/pthread_attr_destroy/3-1: execution: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-1: execution: PASS - conformance/interfaces/pthread_attr_getdetachstate/1-2: execution: PASS - conformance/interfaces/pthread_attr_getdetachstate/2-1: execution: PASS - conformance/interfaces/pthread_attr_getinheritsched/1-1: execution: PASS - conformance/interfaces/pthread_attr_getinheritsched/2-1: execution: PASS conformance/interfaces/pthread_attr_getschedparam/1-1: execution: UNRESOLVED: Output: unexpected error: pthread_attr_getschedparam 1-1: pthread_attr_setschedpolicy - conformance/interfaces/pthread_attr_getschedparam/2-1: execution: PASS - conformance/interfaces/pthread_attr_getschedpolicy/1-1: execution: PASS conformance/interfaces/pthread_attr_getschedpolicy/2-1: execution: UNRESOLVED: Output: unexpected error: pthread_attr_getschedpolicy 1-1: pthread_attr_setschedpolicy - conformance/interfaces/pthread_attr_getschedpolicy/3-1: execution: PASS - conformance/interfaces/pthread_attr_getscope/1-1: execution: PASS - conformance/interfaces/pthread_attr_getscope/2-1: execution: PASS - conformance/interfaces/pthread_attr_getstack/2-1: execution: PASS - conformance/interfaces/pthread_attr_getstacksize/2-1: execution: PASS - conformance/interfaces/pthread_attr_init/1-1: execution: PASS - conformance/interfaces/pthread_attr_init/2-1: execution: PASS - conformance/interfaces/pthread_attr_init/3-1: execution: PASS - conformance/interfaces/pthread_attr_init/4-1: execution: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-1: execution: PASS - conformance/interfaces/pthread_attr_setdetachstate/1-2: execution: PASS - conformance/interfaces/pthread_attr_setdetachstate/2-1: execution: PASS - conformance/interfaces/pthread_attr_setdetachstate/3-1: execution: PASS - conformance/interfaces/pthread_attr_setdetachstate/4-1: execution: PASS - conformance/interfaces/pthread_attr_setinheritsched/1-1: execution: PASS conformance/interfaces/pthread_attr_setinheritsched/2-1: execution: UNRESOLVED: Output: unexpected error: pthread_attr_setinheritsched 2-1: pthread_attr_setschedpolicy: (os/kern) successful conformance/interfaces/pthread_attr_setinheritsched/2-2: execution: UNRESOLVED: Output: @@ -5368,8 +1527,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: scheduler 4-1: pthread_setschedparam conformance/interfaces/pthread_attr_setinheritsched/2-4: execution: UNRESOLVED: Output: unexpected error: scheduler 4-2: pthread_setschedparam - conformance/interfaces/pthread_attr_setinheritsched/3-1: execution: PASS - conformance/interfaces/pthread_attr_setinheritsched/4-1: execution: PASS conformance/interfaces/pthread_attr_setschedparam/1-1: execution: FAILED: Output: unexpected error: pthread_attr_setschedparam 1-1: pthread_attr_setschedpolicy conformance/interfaces/pthread_attr_setschedparam/1-2: execution: FAILED: Output: @@ -5378,71 +1535,22 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: unexpected error: scheduler 3-1: pthread_attr_setschedpolicy conformance/interfaces/pthread_attr_setschedparam/1-4: execution: UNRESOLVED: Output: unexpected error: scheduler 3-2: pthread_attr_setschedpolicy - conformance/interfaces/pthread_attr_setschedparam/2-1: execution: PASS conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: execution: FAILED: Output: unexpected error: pthread_attr_setschedparam 3-1: pthread_attr_setschedpolicy conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: execution: FAILED: Output: unexpected error: pthread_attr_setschedpaarm 3-2: pthread_attr_setschedpolicyconformance/interfaces/pthread_attr_setschedpolicy/1-1: execution: FAILED: Output: Error on pthread_attr_setschedpolicy() rc=1073741942 - conformance/interfaces/pthread_attr_setschedpolicy/3-1: execution: PASS - conformance/interfaces/pthread_attr_setschedpolicy/4-1: execution: PASS conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: execution: UNRESOLVED: Output: unexpected error: pthread_attr_setschedpolicy 5-1: pthread_attr_setinheritsched - conformance/interfaces/pthread_attr_setscope/1-1: execution: PASS - conformance/interfaces/pthread_attr_setscope/3-1: execution: PASS - conformance/interfaces/pthread_attr_setscope/4-1: execution: PASS conformance/interfaces/pthread_attr_setscope/5-1: execution: UNTESTED: Output: Untested for now, cannot find a unsupported inheritsched value - conformance/interfaces/pthread_attr_setstack/3-1: execution: PASS - conformance/interfaces/pthread_attr_setstack/5-1: execution: PASS - conformance/interfaces/pthread_attr_setstacksize/3-1: execution: PASS - conformance/interfaces/pthread_barrier_destroy/1-1: execution: PASS - conformance/interfaces/pthread_barrier_destroy/2-1: execution: PASS - conformance/interfaces/pthread_barrier_destroy/3-1: execution: PASS - conformance/interfaces/pthread_barrier_init/1-1: execution: PASS - conformance/interfaces/pthread_barrier_init/2-1: execution: PASS - conformance/interfaces/pthread_barrier_init/3-1: execution: PASS - conformance/interfaces/pthread_barrier_init/4-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/1-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/2-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/3-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/3-2: execution: PASS - conformance/interfaces/pthread_barrier_wait/4-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/5-1: execution: PASS - conformance/interfaces/pthread_barrier_wait/6-1: execution: PASS - conformance/interfaces/pthread_barrierattr_destroy/1-1: execution: PASS - conformance/interfaces/pthread_barrierattr_destroy/2-1: execution: PASS - conformance/interfaces/pthread_barrierattr_getpshared/1-1: execution: PASS conformance/interfaces/pthread_barrierattr_getpshared/2-1: execution: UNRESOLVED: Output: Error at pthread_barrierattr_setpshared() - conformance/interfaces/pthread_barrierattr_getpshared/3-1: execution: PASS - conformance/interfaces/pthread_barrierattr_init/1-1: execution: PASS - conformance/interfaces/pthread_barrierattr_init/2-1: execution: PASS - conformance/interfaces/pthread_barrierattr_init/3-1: execution: PASS conformance/interfaces/pthread_barrierattr_setpshared/1-1: execution: FAILED: Output: Test FAILED: Error at pthread_barrierattr_setpshared() - conformance/interfaces/pthread_barrierattr_setpshared/2-1: execution: PASS - conformance/interfaces/pthread_barrierattr_setpshared/3-1: execution: PASS - conformance/interfaces/pthread_cancel/1-1: execution: PASS - conformance/interfaces/pthread_cancel/1-2: execution: PASS - conformance/interfaces/pthread_cancel/1-3: execution: PASS - conformance/interfaces/pthread_cancel/2-1: execution: PASS - conformance/interfaces/pthread_cancel/2-2: execution: PASS - conformance/interfaces/pthread_cancel/2-3: execution: PASS conformance/interfaces/pthread_cancel/3-1: execution: UNRESOLVED: Output: unexpected error: pthread_cancel 3-1: pthread_setschedparam - conformance/interfaces/pthread_cancel/4-1: execution: PASS - conformance/interfaces/pthread_cancel/5-1: execution: PASS conformance/interfaces/pthread_cancel/5-2: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cleanup_pop/1-1: execution: PASS - conformance/interfaces/pthread_cleanup_pop/1-2: execution: PASS - conformance/interfaces/pthread_cleanup_pop/1-3: execution: PASS - conformance/interfaces/pthread_cleanup_pop/2-1: execution: PASS - conformance/interfaces/pthread_cleanup_push/1-1: execution: PASS - conformance/interfaces/pthread_cleanup_push/1-2: execution: PASS - conformance/interfaces/pthread_cleanup_push/1-3: execution: PASS - conformance/interfaces/pthread_cleanup_push/2-1: execution: PASS - conformance/interfaces/pthread_cond_broadcast/1-1: execution: PASS conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNRESOLVED: Output: [12:42:33]Test starting [12:42:33]System abilities: @@ -5453,8 +1561,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [12:42:33]Process-shared attributes won't be tested [12:42:33]Alternative clock won't be tested [12:42:33]Test conformance/interfaces/pthread_cond_broadcast/1-2.c unresolved: got 1073741846 (Invalid argument) on line 393 ([parent] Failed to set thread stack size) - conformance/interfaces/pthread_cond_broadcast/2-1: execution: PASS - conformance/interfaces/pthread_cond_broadcast/2-2: execution: PASS conformance/interfaces/pthread_cond_broadcast/2-3: execution: UNRESOLVED: Output: [12:42:36]Test starting [12:42:36]System abilities: @@ -5465,76 +1571,30 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [12:42:36]Process-shared attributes won't be tested [12:42:36]Alternative clock won't be tested [12:42:36]Test conformance/interfaces/pthread_cond_broadcast/2-3.c unresolved: got 1073741846 (Invalid argument) on line 384 ([parent] Failed to set thread stack size) - conformance/interfaces/pthread_cond_broadcast/4-1: execution: PASS conformance/interfaces/pthread_cond_broadcast/4-2: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cond_destroy/1-1: execution: PASS conformance/interfaces/pthread_cond_destroy/2-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cond_destroy/3-1: execution: PASS - conformance/interfaces/pthread_cond_destroy/speculative/4-1: execution: PASS - conformance/interfaces/pthread_cond_init/1-1: execution: PASS conformance/interfaces/pthread_cond_init/1-2: execution: UNTESTED: Output: File conformance/interfaces/pthread_cond_init/1-2.c cannot test: This test requires unsupported features conformance/interfaces/pthread_cond_init/1-3: execution: UNTESTED: Output: File conformance/interfaces/pthread_cond_init/1-3.c cannot test: This test requires unsupported features - conformance/interfaces/pthread_cond_init/2-1: execution: PASS conformance/interfaces/pthread_cond_init/2-2: execution: UNTESTED: Output: File conformance/interfaces/pthread_cond_init/2-2.c cannot test: This test requires unsupported features - conformance/interfaces/pthread_cond_init/3-1: execution: PASS conformance/interfaces/pthread_cond_init/4-1: execution: UNRESOLVED: Output: Test conformance/interfaces/pthread_cond_init/4-1.c unresolved: got 1073741942 (Not supported) on line 145 (Cond attribute PSHARED failed) conformance/interfaces/pthread_cond_init/4-2: execution: INTERRUPTED: Output: Test conformance/interfaces/pthread_cond_init/4-2.c unresolved: got 1073741942 (Not supported) on line 171 (Cond attribute PSHARED failed) - conformance/interfaces/pthread_cond_signal/1-1: execution: PASS conformance/interfaces/pthread_cond_signal/1-2: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cond_signal/2-1: execution: PASS - conformance/interfaces/pthread_cond_signal/2-2: execution: PASS - conformance/interfaces/pthread_cond_signal/4-1: execution: PASS conformance/interfaces/pthread_cond_signal/4-2: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cond_timedwait/1-1: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-1: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-2: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-3: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-4: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-5: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-6: execution: PASS - conformance/interfaces/pthread_cond_timedwait/2-7: execution: PASS - conformance/interfaces/pthread_cond_timedwait/3-1: execution: PASS - conformance/interfaces/pthread_cond_timedwait/4-1: execution: PASS - conformance/interfaces/pthread_cond_timedwait/4-2: execution: PASS conformance/interfaces/pthread_cond_timedwait/4-3: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_cond_wait/1-1: execution: PASS - conformance/interfaces/pthread_cond_wait/2-1: execution: PASS - conformance/interfaces/pthread_cond_wait/2-2: execution: PASS - conformance/interfaces/pthread_cond_wait/2-3: execution: PASS - conformance/interfaces/pthread_cond_wait/3-1: execution: PASS conformance/interfaces/pthread_cond_wait/4-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_condattr_destroy/1-1: execution: PASS - conformance/interfaces/pthread_condattr_destroy/2-1: execution: PASS - conformance/interfaces/pthread_condattr_destroy/3-1: execution: PASS - conformance/interfaces/pthread_condattr_destroy/4-1: execution: PASS - conformance/interfaces/pthread_condattr_getclock/1-1: execution: PASS - conformance/interfaces/pthread_condattr_getclock/1-2: execution: PASS - conformance/interfaces/pthread_condattr_getclock/2-1: execution: PASS - conformance/interfaces/pthread_condattr_getpshared/1-1: execution: PASS conformance/interfaces/pthread_condattr_getpshared/1-2: execution: UNRESOLVED: Output: Error in pthread_condattr_setpshared(), error: 1073741942 - conformance/interfaces/pthread_condattr_getpshared/2-1: execution: PASS - conformance/interfaces/pthread_condattr_getpshared/3-1: execution: PASS - conformance/interfaces/pthread_condattr_init/1-1: execution: PASS - conformance/interfaces/pthread_condattr_init/3-1: execution: PASS - conformance/interfaces/pthread_condattr_setclock/1-1: execution: PASS conformance/interfaces/pthread_condattr_setclock/1-2: execution: UNSUPPORTED: Output: UNSUPPORTED: CLOCK_MONOTONIC is unsupported conformance/interfaces/pthread_condattr_setclock/1-3: execution: UNSUPPORTED: Output: _POSIX_CPUTIME unsupported - conformance/interfaces/pthread_condattr_setclock/2-1: execution: PASS - conformance/interfaces/pthread_condattr_setpshared/1-1: execution: PASS conformance/interfaces/pthread_condattr_setpshared/1-2: execution: FAILED: Output: Test FAILED: Could not set pshared to PTHREAD_PROCESS_SHARED, error: 1073741942 - conformance/interfaces/pthread_condattr_setpshared/2-1: execution: PASS - conformance/interfaces/pthread_create/1-1: execution: PASS - conformance/interfaces/pthread_create/1-2: execution: PASS - conformance/interfaces/pthread_create/1-3: execution: PASS conformance/interfaces/pthread_create/1-4: execution: UNTESTED: Output: [13:44:56]System abilities: [13:44:56] TSA: -1 @@ -5559,10 +1619,8 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:44:57] pagesize: 4096 [13:44:57] min stack size: -1 [13:44:57]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_create/10-1: execution: PASS conformance/interfaces/pthread_create/11-1: execution: UNSUPPORTED: Output: _POSIX_THREAD_CPUTIME not supported - conformance/interfaces/pthread_create/12-1: execution: PASS conformance/interfaces/pthread_create/14-1: execution: UNTESTED: Output: [13:45:08]System abilities: [13:45:08] TSA: -1 @@ -5579,8 +1637,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:09] pagesize: 4096 [13:45:09] min stack size: -1 [13:45:09]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_create/2-1: execution: PASS - conformance/interfaces/pthread_create/3-1: execution: PASS conformance/interfaces/pthread_create/3-2: execution: UNTESTED: Output: [13:45:11]Growing down stack started upon 0x19fffa0 and we are currently down to 0x19fff60 [13:45:11]Test starting @@ -5593,10 +1649,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:11] pagesize: 4096 [13:45:11] min stack size: -1 [13:45:11]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_create/4-1: execution: PASS - conformance/interfaces/pthread_create/5-1: execution: PASS - conformance/interfaces/pthread_create/5-2: execution: PASS - conformance/interfaces/pthread_create/8-1: execution: PASS conformance/interfaces/pthread_create/8-2: execution: UNTESTED: Output: [13:45:13]System abilities: [13:45:13] TSA: -1 @@ -5605,7 +1657,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:13] pagesize: 4096 [13:45:13] min stack size: -1 [13:45:13]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_detach/1-1: execution: PASS conformance/interfaces/pthread_detach/1-2: execution: UNTESTED: Output: [13:45:13]System abilities: [13:45:13] TSA: -1 @@ -5614,7 +1665,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:13] pagesize: 4096 [13:45:13] min stack size: -1 [13:45:13]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_detach/2-1: execution: PASS conformance/interfaces/pthread_detach/2-2: execution: UNTESTED: Output: [13:45:14]System abilities: [13:45:14] TSA: -1 @@ -5623,9 +1673,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:14] pagesize: 4096 [13:45:14] min stack size: -1 [13:45:14]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_detach/3-1: execution: PASS - conformance/interfaces/pthread_detach/4-1: execution: PASS - conformance/interfaces/pthread_detach/4-2: execution: PASS conformance/interfaces/pthread_detach/4-3: execution: UNTESTED: Output: [13:45:15]System abilities: [13:45:16] TSA: -1 @@ -5634,10 +1681,7 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [13:45:16] pagesize: 4096 [13:45:16] min stack size: -1 [13:45:16]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_equal/1-1: execution: PASS - conformance/interfaces/pthread_equal/1-2: execution: PASS conformance/interfaces/pthread_equal/2-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_exit/1-1: execution: PASS conformance/interfaces/pthread_exit/1-2: execution: UNTESTED: Output: [15:01:43]System abilities: [15:01:43] TSA: -1 @@ -5646,7 +1690,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:01:43] pagesize: 4096 [15:01:43] min stack size: -1 [15:01:43]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_exit/2-1: execution: PASS conformance/interfaces/pthread_exit/2-2: execution: UNTESTED: Output: [15:01:44]System abilities: [15:01:44] TSA: -1 @@ -5655,7 +1698,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:01:44] pagesize: 4096 [15:01:44] min stack size: -1 [15:01:44]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_exit/3-1: execution: PASS conformance/interfaces/pthread_exit/3-2: execution: UNTESTED: Output: [15:01:45]System abilities: [15:01:45] TSA: -1 @@ -5696,9 +1738,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:01:46] pagesize: 4096 [15:01:46] min stack size: -1 [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_getcpuclockid/1-1: execution: PASS - conformance/interfaces/pthread_getcpuclockid/2-1: execution: PASS - conformance/interfaces/pthread_getcpuclockid/speculative/3-1: execution: PASS conformance/interfaces/pthread_getschedparam/1-1: execution: FAILED: Output: Error at pthread_getschedparam: rc=1073741902 conformance/interfaces/pthread_getschedparam/1-2: execution: UNRESOLVED: Output: @@ -5707,9 +1746,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:01:49]Test conformance/interfaces/pthread_getschedparam/1-3.c unresolved: got 1073741902 (Function not implemented) on line 223 (Failed to get min priority) conformance/interfaces/pthread_getschedparam/4-1: execution: UNRESOLVED: Output: [15:01:49]Test conformance/interfaces/pthread_getschedparam/4-1.c unresolved: got 1073741902 (Function not implemented) on line 200 (Unexpected error returned) - conformance/interfaces/pthread_getspecific/1-1: execution: PASS - conformance/interfaces/pthread_getspecific/3-1: execution: PASS - conformance/interfaces/pthread_join/1-1: execution: PASS conformance/interfaces/pthread_join/1-2: execution: UNTESTED: Output: [15:01:54]System abilities: [15:01:54] TSA: -1 @@ -5718,7 +1754,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:01:54] pagesize: 4096 [15:01:54] min stack size: -1 [15:01:54]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_join/2-1: execution: PASS conformance/interfaces/pthread_join/3-1: execution: UNRESOLVED: Output: Error in pthread_testcancel(). Cancel request timed out. : (os/kern) successful @@ -5730,8 +1765,6 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:02:06] pagesize: 4096 [15:02:06] min stack size: -1 [15:02:06]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_join/5-1: execution: PASS - conformance/interfaces/pthread_join/6-2: execution: PASS conformance/interfaces/pthread_join/6-3: execution: UNTESTED: Output: [15:02:07]System abilities: [15:02:07] TSA: -1 @@ -5740,38 +1773,14 @@ Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart: [15:02:07] pagesize: 4096 [15:02:07] min stack size: -1 [15:02:07]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size - conformance/interfaces/pthread_join/speculative/6-1: execution: PASS - conformance/interfaces/pthread_key_create/1-1: execution: PASS - conformance/interfaces/pthread_key_create/1-2: execution: PASS conformance/interfaces/pthread_key_create/2-1: execution: INTERRUPTED: Output: 2-1.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/hurd/pt-getspecific.c:30: pthread_getspecific: Assertion `key < __pthread_key_count' failed. - conformance/interfaces/pthread_key_create/3-1: execution: PASS - conformance/interfaces/pthread_key_delete/1-1: execution: PASS - conformance/interfaces/pthread_key_delete/1-2: execution: PASS - conformance/interfaces/pthread_key_delete/2-1: execution: PASS - conformance/interfaces/pthread_key_delete/3-1: execution: PASS - conformance/interfaces/pthread_kill/1-1: execution: PASS - conformance/interfaces/pthread_kill/1-2: execution: PASS conformance/interfaces/pthread_kill/2-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_kill/3-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_kill/6-1: execution: PASS conformance/interfaces/pthread_kill/7-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_kill/8-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_mutex_destroy/1-1: execution: PASS - conformance/interfaces/pthread_mutex_destroy/2-1: execution: PASS - conformance/interfaces/pthread_mutex_destroy/2-2: execution: PASS - conformance/interfaces/pthread_mutex_destroy/3-1: execution: PASS - conformance/interfaces/pthread_mutex_destroy/5-1: execution: PASS - conformance/interfaces/pthread_mutex_destroy/5-2: execution: PASS - conformance/interfaces/pthread_mutex_destroy/speculative/4-2: execution: PASS conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED: Output: Test FAILED: Error obtaining the priority ceiling - conformance/interfaces/pthread_mutex_init/1-1: execution: PASS - conformance/interfaces/pthread_mutex_init/1-2: execution: PASS - conformance/interfaces/pthread_mutex_init/2-1: execution: PASS - conformance/interfaces/pthread_mutex_init/3-1: execution: PASS - conformance/interfaces/pthread_mutex_init/3-2: execution: PASS - conformance/interfaces/pthread_mutex_init/4-1: execution: PASS Another system crash, due to conformance/interfaces/pthread_mutex_init/5-1: @@ -5783,106 +1792,39 @@ Another system crash, due to conformance/interfaces/pthread_mutex_init/5-1: Disable the panic-causing test (conformance/interfaces/pthread_mutex_init/5-1) and restart: - conformance/interfaces/pthread_mutex_init/5-3: execution: PASS conformance/interfaces/pthread_mutex_init/speculative/5-2: execution: UNTESTED: Output: Implementation is: GNU 0.3 GNU-Mach 1.3.99/Hurd-0.3 This implementation is not tested yet - conformance/interfaces/pthread_mutex_lock/1-1: execution: PASS - conformance/interfaces/pthread_mutex_lock/2-1: execution: PASS - conformance/interfaces/pthread_mutex_lock/3-1: execution: PASS - conformance/interfaces/pthread_mutex_lock/4-1: execution: PASS - conformance/interfaces/pthread_mutex_lock/5-1: execution: PASS - conformance/interfaces/pthread_mutex_timedlock/1-1: execution: PASS - conformance/interfaces/pthread_mutex_timedlock/2-1: execution: PASS - conformance/interfaces/pthread_mutex_timedlock/4-1: execution: PASS conformance/interfaces/pthread_mutex_timedlock/5-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_mutex_timedlock/5-2: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_mutex_timedlock/5-3: execution: PASS - conformance/interfaces/pthread_mutex_trylock/1-1: execution: PASS - conformance/interfaces/pthread_mutex_trylock/1-2: execution: PASS - conformance/interfaces/pthread_mutex_trylock/2-1: execution: PASS - conformance/interfaces/pthread_mutex_trylock/3-1: execution: PASS - conformance/interfaces/pthread_mutex_trylock/4-1: execution: PASS - conformance/interfaces/pthread_mutex_trylock/4-2: execution: PASS conformance/interfaces/pthread_mutex_trylock/4-3: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_mutex_unlock/1-1: execution: PASS - conformance/interfaces/pthread_mutex_unlock/2-1: execution: PASS - conformance/interfaces/pthread_mutex_unlock/3-1: execution: PASS - conformance/interfaces/pthread_mutex_unlock/5-1: execution: PASS - conformance/interfaces/pthread_mutex_unlock/5-2: execution: PASS - conformance/interfaces/pthread_mutexattr_destroy/1-1: execution: PASS - conformance/interfaces/pthread_mutexattr_destroy/2-1: execution: PASS - conformance/interfaces/pthread_mutexattr_destroy/3-1: execution: PASS - conformance/interfaces/pthread_mutexattr_destroy/4-1: execution: PASS conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: execution: UNRESOLVED: Output: Error obtaining the attribute process-shared conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: execution: UNRESOLVED: Output: Error setting prioceiling to -1 - conformance/interfaces/pthread_mutexattr_getprioceiling/2-1: execution: PASS conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: execution: FAILED: Output: Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. - conformance/interfaces/pthread_mutexattr_getprotocol/1-1: execution: PASS conformance/interfaces/pthread_mutexattr_getprotocol/1-2: execution: UNRESOLVED: Output: Error setting protocol to 1 - conformance/interfaces/pthread_mutexattr_getpshared/1-1: execution: PASS conformance/interfaces/pthread_mutexattr_getpshared/1-2: execution: UNRESOLVED: Output: Error in pthread_mutexattr_setpshared(), error: 1073741942 - conformance/interfaces/pthread_mutexattr_getpshared/1-3: execution: PASS - conformance/interfaces/pthread_mutexattr_getpshared/2-1: execution: PASS - conformance/interfaces/pthread_mutexattr_getpshared/3-1: execution: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-1: execution: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-2: execution: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-3: execution: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-4: execution: PASS - conformance/interfaces/pthread_mutexattr_gettype/1-5: execution: PASS conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: execution: FAILED: Output: Test FAILED: Incorrect return code. Expected EINVAL, but got: 0 - conformance/interfaces/pthread_mutexattr_init/1-1: execution: PASS - conformance/interfaces/pthread_mutexattr_init/3-1: execution: PASS conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: execution: FAILED: Output: Test FAILED: Error setting prioceiling to -1 - conformance/interfaces/pthread_mutexattr_setprioceiling/2-1: execution: PASS conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: execution: FAILED: Output: Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: execution: FAILED: Output: Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0. conformance/interfaces/pthread_mutexattr_setprotocol/1-1: execution: UNRESOLVED: Output: Error setting protocol to 1 - conformance/interfaces/pthread_mutexattr_setprotocol/2-2: execution: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-1: execution: PASS - conformance/interfaces/pthread_mutexattr_setprotocol/3-2: execution: PASS conformance/interfaces/pthread_mutexattr_setpshared/1-1: execution: FAILED: Output: Test FAILED: Cannot set pshared attribute to PTHREAD_PROCESS_SHARED. Error code: 1073741942 - conformance/interfaces/pthread_mutexattr_setpshared/1-2: execution: PASS - conformance/interfaces/pthread_mutexattr_setpshared/2-1: execution: PASS conformance/interfaces/pthread_mutexattr_setpshared/2-2: execution: FAILED: Output: Test FAILED: Expected return code 0, got: 1073741942 - conformance/interfaces/pthread_mutexattr_setpshared/3-1: execution: PASS - conformance/interfaces/pthread_mutexattr_setpshared/3-2: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/1-1: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/2-1: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/3-1: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/3-2: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/3-3: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/3-4: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/6-1: execution: PASS - conformance/interfaces/pthread_mutexattr_settype/7-1: execution: PASS - conformance/interfaces/pthread_once/1-1: execution: PASS - conformance/interfaces/pthread_once/1-2: execution: PASS - conformance/interfaces/pthread_once/1-3: execution: PASS - conformance/interfaces/pthread_once/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_destroy/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_destroy/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_destroy/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_init/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_init/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_init/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_init/4-1: execution: PASS - conformance/interfaces/pthread_rwlock_init/6-1: execution: PASS - conformance/interfaces/pthread_rwlock_rdlock/1-1: execution: PASS conformance/interfaces/pthread_rwlock_rdlock/2-1: execution: FAILED: Output: main: has priority: 1 main: attempt read lock @@ -5904,34 +1846,6 @@ and restart: rd_thread: acquired read lock rd_thread: unlock read lock Test FAILED: rd_thread did not block on read lock, when a reader owns the lock, and an equal priority writer is waiting for the lock - conformance/interfaces/pthread_rwlock_rdlock/2-3: execution: PASS - conformance/interfaces/pthread_rwlock_rdlock/4-1: execution: PASS - conformance/interfaces/pthread_rwlock_rdlock/5-1: execution: PASS - conformance/interfaces/pthread_rwlock_rdlock/6-2: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/4-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/5-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/6-2: execution: PASS - conformance/interfaces/pthread_rwlock_timedrdlock/7-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/4-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/5-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-1: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/6-2: execution: PASS - conformance/interfaces/pthread_rwlock_timedwrlock/7-1: execution: PASS - conformance/interfaces/pthread_rwlock_tryrdlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_tryrdlock/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_tryrdlock/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_trywrlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_trywrlock/2-1: execution: PASS - conformance/interfaces/pthread_rwlock_trywrlock/speculative/3-1: execution: PASS - conformance/interfaces/pthread_rwlock_unlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_unlock/2-1: execution: PASS conformance/interfaces/pthread_rwlock_unlock/3-1: execution: FAILED: Output: main: write lock main: create writer1, with priority: 1 @@ -5951,31 +1865,11 @@ and restart: main: acquired read lock main: create un_thread un_thread: unlock read lock - conformance/interfaces/pthread_rwlock_wrlock/1-1: execution: PASS - conformance/interfaces/pthread_rwlock_wrlock/2-1: execution: PASS conformance/interfaces/pthread_rwlock_wrlock/3-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_rwlockattr_destroy/1-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_destroy/2-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_destroy/3-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/1-1: execution: PASS conformance/interfaces/pthread_rwlockattr_getpshared/2-1: execution: UNRESOLVED: Output: Error at pthread_rwlockattr_setpshared() - conformance/interfaces/pthread_rwlockattr_getpshared/4-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_getpshared/5-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_init/1-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_init/2-1: execution: PASS - conformance/interfaces/pthread_rwlockattr_init/3-1: execution: PASS conformance/interfaces/pthread_rwlockattr_setpshared/1-1: execution: FAILED: Output: Test FAILED: Error at pthread_rwlockattr_setpshared(), return error: 1073741942 - conformance/interfaces/pthread_rwlockattr_setpshared/2-1: execution: PASS - conformance/interfaces/pthread_self/1-1: execution: PASS - conformance/interfaces/pthread_setcancelstate/1-1: execution: PASS - conformance/interfaces/pthread_setcancelstate/1-2: execution: PASS - conformance/interfaces/pthread_setcancelstate/2-1: execution: PASS - conformance/interfaces/pthread_setcancelstate/3-1: execution: PASS - conformance/interfaces/pthread_setcanceltype/1-1: execution: PASS - conformance/interfaces/pthread_setcanceltype/1-2: execution: PASS - conformance/interfaces/pthread_setcanceltype/2-1: execution: PASS conformance/interfaces/pthread_setschedparam/1-1: execution: FAILED: Output: Error at pthread_setschedparam: rc=1073741902 conformance/interfaces/pthread_setschedparam/1-2: execution: UNTESTED: Output: @@ -5985,55 +1879,15 @@ and restart: conformance/interfaces/pthread_setschedparam/5-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_setschedprio/1-1: execution: UNRESOLVED: Output: Error at pthread_setschedparam: rc=1073741902 - conformance/interfaces/pthread_setspecific/1-1: execution: PASS - conformance/interfaces/pthread_setspecific/1-2: execution: PASS - conformance/interfaces/pthread_setspecific/3-1: execution: PASS conformance/interfaces/pthread_sigmask/10-1: execution: FAILED: Output: FAIL: SIGKILL was added to the signal mask Test FAILED - conformance/interfaces/pthread_sigmask/12-1: execution: PASS - conformance/interfaces/pthread_sigmask/14-1: execution: PASS - conformance/interfaces/pthread_sigmask/15-1: execution: PASS - conformance/interfaces/pthread_sigmask/16-1: execution: PASS conformance/interfaces/pthread_sigmask/18-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_sigmask/4-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_sigmask/5-1: execution: INTERRUPTED: Output: conformance/interfaces/pthread_sigmask/6-1: execution: HUNG: Output: - conformance/interfaces/pthread_sigmask/7-1: execution: PASS - conformance/interfaces/pthread_sigmask/8-1: execution: PASS - conformance/interfaces/pthread_sigmask/8-2: execution: PASS - conformance/interfaces/pthread_sigmask/8-3: execution: PASS conformance/interfaces/pthread_sigmask/9-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_spin_destroy/1-1: execution: PASS - conformance/interfaces/pthread_spin_destroy/2-1: execution: PASS - conformance/interfaces/pthread_spin_destroy/3-1: execution: PASS - conformance/interfaces/pthread_spin_init/1-1: execution: PASS - conformance/interfaces/pthread_spin_init/2-1: execution: PASS - conformance/interfaces/pthread_spin_init/2-2: execution: PASS - conformance/interfaces/pthread_spin_init/3-1: execution: PASS - conformance/interfaces/pthread_spin_init/4-1: execution: PASS conformance/interfaces/pthread_spin_lock/1-1: execution: INTERRUPTED: Output: - conformance/interfaces/pthread_spin_lock/1-2: execution: PASS - conformance/interfaces/pthread_spin_lock/2-1: execution: PASS - conformance/interfaces/pthread_spin_lock/3-1: execution: PASS - conformance/interfaces/pthread_spin_lock/3-2: execution: PASS - conformance/interfaces/pthread_spin_trylock/1-1: execution: PASS - conformance/interfaces/pthread_spin_trylock/2-1: execution: PASS - conformance/interfaces/pthread_spin_trylock/3-1: execution: PASS - conformance/interfaces/pthread_spin_trylock/4-1: execution: PASS - conformance/interfaces/pthread_spin_unlock/1-1: execution: PASS - conformance/interfaces/pthread_spin_unlock/1-2: execution: PASS - conformance/interfaces/pthread_spin_unlock/2-1: execution: PASS - conformance/interfaces/pthread_spin_unlock/3-1: execution: PASS - conformance/interfaces/pthread_testcancel/1-1: execution: PASS - conformance/interfaces/pthread_testcancel/2-1: execution: PASS - conformance/interfaces/raise/10000-1: execution: PASS - conformance/interfaces/raise/1-1: execution: PASS - conformance/interfaces/raise/1-2: execution: PASS - conformance/interfaces/raise/2-1: execution: PASS - conformance/interfaces/raise/4-1: execution: PASS - conformance/interfaces/raise/6-1: execution: PASS - conformance/interfaces/raise/7-1: execution: PASS conformance/interfaces/sched_get_priority_max/1-1: execution: FAILED: Output: An error occurs: Function not implemented conformance/interfaces/sched_get_priority_max/1-2: execution: FAILED: Output: @@ -6044,7 +1898,6 @@ and restart: An error occurs: Function not implemented conformance/interfaces/sched_get_priority_max/2-1: execution: FAILED: Output: error is not EINVAL: Function not implemented - conformance/interfaces/sched_get_priority_max/3-1: execution: PASS conformance/interfaces/sched_get_priority_min/1-1: execution: FAILED: Output: An error occurs: Function not implemented conformance/interfaces/sched_get_priority_min/1-2: execution: FAILED: Output: @@ -6055,7 +1908,6 @@ and restart: An error occurs: Function not implemented conformance/interfaces/sched_get_priority_min/2-1: execution: FAILED: Output: error is not EINVAL: Function not implemented - conformance/interfaces/sched_get_priority_min/3-1: execution: PASS conformance/interfaces/sched_getparam/1-1: execution: FAILED: Output: Return code is not zero. conformance/interfaces/sched_getparam/2-1: execution: FAILED: Output: @@ -6064,7 +1916,6 @@ and restart: Unexpected error: Function not implemented conformance/interfaces/sched_getparam/4-1: execution: FAILED: Output: errno is not ESRCH: Function not implemented - conformance/interfaces/sched_getparam/5-1: execution: PASS conformance/interfaces/sched_getparam/6-1: execution: UNRESOLVED: Output: errno is not EPERM: The system allows a non-rootuser to use sched_getparam(): Function not implemented conformance/interfaces/sched_getparam/speculative/7-1: execution: UNRESOLVED: Output: @@ -6078,8 +1929,6 @@ and restart: Returned code is -1. conformance/interfaces/sched_getscheduler/4-1: execution: FAILED: Output: Unexpected error: Function not implemented - conformance/interfaces/sched_getscheduler/5-1: execution: PASS - conformance/interfaces/sched_getscheduler/6-1: execution: PASS conformance/interfaces/sched_getscheduler/7-1: execution: FAILED: Output: errno is not EPERM: Function not implemented conformance/interfaces/sched_rr_get_interval/1-1: execution: FAILED: Output: @@ -6088,14 +1937,12 @@ and restart: interval.tv_sec not updated. conformance/interfaces/sched_rr_get_interval/3-1: execution: FAILED: Output: Returned error is not ESRCH: Function not implemented - conformance/interfaces/sched_rr_get_interval/4-1: execution: PASS conformance/interfaces/sched_rr_get_interval/speculative/5-1: execution: UNRESOLVED: Output: sched_rr_get_interval() return -1 and sets errno == 1073741902. conformance/interfaces/sched_setparam/1-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setparam/10-1: execution: UNRESOLVED: Output: An error occurs when calling shmget(): Invalid argument - conformance/interfaces/sched_setparam/11-1: execution: PASS conformance/interfaces/sched_setparam/12-1: execution: UNTESTED: Output: Not yet tested. conformance/interfaces/sched_setparam/13-1: execution: UNTESTED: Output: @@ -6124,9 +1971,6 @@ and restart: An error occurs when calling sched_setscheduler(): Function not implemented conformance/interfaces/sched_setparam/2-2: execution: UNRESOLVED: Output: An error occurs when calling sched_setscheduler(): Function not implemented - conformance/interfaces/sched_setparam/20-1: execution: PASS - conformance/interfaces/sched_setparam/21-1: execution: PASS - conformance/interfaces/sched_setparam/21-2: execution: PASS conformance/interfaces/sched_setparam/22-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setparam/23-1: execution: UNRESOLVED: Output: @@ -6143,7 +1987,6 @@ and restart: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setparam/23-7: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented - conformance/interfaces/sched_setparam/24-1: execution: PASS conformance/interfaces/sched_setparam/25-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getscheduler(): Function not implemented conformance/interfaces/sched_setparam/25-2: execution: UNSUPPORTED: Output: @@ -6155,7 +1998,6 @@ and restart: conformance/interfaces/sched_setparam/3-1: execution: UNTESTED: Output: Will not test the behavior of sched_setparam() when pid is negative because it is unspecified. - conformance/interfaces/sched_setparam/4-1: execution: PASS conformance/interfaces/sched_setparam/5-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setparam/6-1: execution: UNTESTED: Output: @@ -6193,7 +2035,6 @@ and restart: contention scope threads are not be affected by sched_setscheduler(). conformance/interfaces/sched_setscheduler/15-1: execution: UNSUPPORTED: Output: Process contention scope threads are not supported. - conformance/interfaces/sched_setscheduler/15-2: execution: PASS conformance/interfaces/sched_setscheduler/16-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getscheduler(): Function not implemented conformance/interfaces/sched_setscheduler/17-1: execution: UNRESOLVED: Output: @@ -6211,7 +2052,6 @@ and restart: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setscheduler/17-7: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented - conformance/interfaces/sched_setscheduler/18-1: execution: PASS conformance/interfaces/sched_setscheduler/19-1: execution: UNRESOLVED: Output: Policy: SCHED_FIFO An error occurs when calling sched_get_priority_max(): Function not implemented @@ -6230,9 +2070,6 @@ and restart: errno is not EPERM: Function not implemented conformance/interfaces/sched_setscheduler/21-1: execution: FAILED: Output: errno is not ESRCH: Function not implemented - conformance/interfaces/sched_setscheduler/22-1: execution: PASS - conformance/interfaces/sched_setscheduler/22-2: execution: PASS - conformance/interfaces/sched_setscheduler/3-1: execution: PASS conformance/interfaces/sched_setscheduler/4-1: execution: UNRESOLVED: Output: An error occurs when calling sched_getparam(): Function not implemented conformance/interfaces/sched_setscheduler/5-1: execution: UNTESTED: Output: @@ -6247,11 +2084,8 @@ and restart: Will not test if implementation-defined restrictions apply as to the appropriate privileges required to set a process' own scheduling policy, or another process' scheduling policy, to a particular value. - conformance/interfaces/sched_setscheduler/8-1: execution: PASS conformance/interfaces/sched_setscheduler/9-1: execution: UNTESTED: Output: Not yet tested. - conformance/interfaces/sched_yield/2-1: execution: PASS - conformance/interfaces/sched_yield/3-1: execution: PASS conformance/interfaces/sem_close/1-1: execution: INTERRUPTED: Output: unexpected error: sem_close 1-1: sem_open: Operation not supported conformance/interfaces/sem_close/2-1: execution: INTERRUPTED: Output: @@ -6260,33 +2094,23 @@ and restart: unexpected error: sem_close 3-1: sem_open: Operation not supported conformance/interfaces/sem_close/3-2: execution: UNRESOLVED: Output: [08:56:54]Test conformance/interfaces/sem_close/3-2.c unresolved: got 1073741869 (Operation not supported) on line 113 (Failed to create the semaphore) - conformance/interfaces/sem_destroy/3-1: execution: PASS - conformance/interfaces/sem_destroy/4-1: execution: PASS conformance/interfaces/sem_getvalue/1-1: execution: UNRESOLVED: Output: unexpected error: sem_getvalue 1-1: sem_open: Operation not supported conformance/interfaces/sem_getvalue/2-1: execution: UNRESOLVED: Output: unexpected error: sem_getvalue 2-1: sem_open: Operation not supported - conformance/interfaces/sem_getvalue/2-2: execution: PASS conformance/interfaces/sem_getvalue/4-1: execution: UNRESOLVED: Output: unexpected error: sem_getvalue 4-1: sem_open: Operation not supported conformance/interfaces/sem_getvalue/5-1: execution: UNRESOLVED: Output: unexpected error: sem_getvalue 5-1: sem_open: Operation not supported - conformance/interfaces/sem_init/1-1: execution: PASS - conformance/interfaces/sem_init/2-1: execution: PASS - conformance/interfaces/sem_init/2-2: execution: PASS - conformance/interfaces/sem_init/3-1: execution: PASS conformance/interfaces/sem_init/3-2: execution: UNRESOLVED: Output: [08:56:59]Test conformance/interfaces/sem_init/3-2.c unresolved: got 1073741869 (Operation not supported) on line 135 (Failed to init the semaphore) conformance/interfaces/sem_init/3-3: execution: UNRESOLVED: Output: [08:57:00]Test conformance/interfaces/sem_init/3-3.c unresolved: got 1073741869 (Operation not supported) on line 134 (Failed to init the semaphore) - conformance/interfaces/sem_init/5-1: execution: PASS - conformance/interfaces/sem_init/5-2: execution: PASS conformance/interfaces/sem_init/7-1: execution: UNTESTED: Output: [08:57:01]sysconf( _SC_SEM_NSEMS_MAX ) = -1 [08:57:01]File conformance/interfaces/sem_init/7-1.c cannot test: There is no constraint on SEM_NSEMS_MAX conformance/interfaces/sem_open/1-1: execution: FAILED: Output: TEST FAILED - conformance/interfaces/sem_open/1-2: execution: PASS conformance/interfaces/sem_open/1-3: execution: UNRESOLVED: Output: unexpected error: sem_open 1-3: sem_open: Operation not supported conformance/interfaces/sem_open/1-4: execution: UNRESOLVED: Output: @@ -6319,16 +2143,6 @@ and restart: unexpected error: sem_post 6-1: sem_open: Operation not supported conformance/interfaces/sem_post/8-1: execution: UNTESTED: Output: _POSIX_PRIORITY_SCHEDULING not defined - conformance/interfaces/sem_timedwait/1-1: execution: PASS - conformance/interfaces/sem_timedwait/10-1: execution: PASS - conformance/interfaces/sem_timedwait/11-1: execution: PASS - conformance/interfaces/sem_timedwait/2-1: execution: PASS - conformance/interfaces/sem_timedwait/2-2: execution: PASS - conformance/interfaces/sem_timedwait/3-1: execution: PASS - conformance/interfaces/sem_timedwait/4-1: execution: PASS - conformance/interfaces/sem_timedwait/6-1: execution: PASS - conformance/interfaces/sem_timedwait/6-2: execution: PASS - conformance/interfaces/sem_timedwait/7-1: execution: PASS conformance/interfaces/sem_timedwait/9-1: execution: FAILED: Output: In handler TEST FAILED: errno != EINTR @@ -6345,7 +2159,6 @@ and restart: conformance/interfaces/sem_unlink/4-2: execution: FAILED: Output: [08:57:24]Error 1073741869: Operation not supported [08:57:24]Test conformance/interfaces/sem_unlink/4-2.c FAILED: The error was not ENOENT - conformance/interfaces/sem_unlink/5-1: execution: PASS conformance/interfaces/sem_unlink/6-1: execution: UNRESOLVED: Output: [08:57:25]Test conformance/interfaces/sem_unlink/6-1.c unresolved: got 1073741869 (Operation not supported) on line 107 (Failed to create the semaphore) conformance/interfaces/sem_unlink/7-1: execution: UNRESOLVED: Output: @@ -6360,7 +2173,6 @@ and restart: unexpected error: sem_trywait 11-1: sem_open: Operation not supported conformance/interfaces/sem_wait/12-1: execution: INTERRUPTED: Output: unexpected error: sem_trywait 12-1: sem_open: Operation not supported - conformance/interfaces/sem_wait/13-1: execution: PASS conformance/interfaces/sem_wait/3-1: execution: UNRESOLVED: Output: unexpected error: sem_wait 3-1: sem_open: Operation not supported conformance/interfaces/sem_wait/5-1: execution: INTERRUPTED: Output: @@ -6370,18 +2182,10 @@ and restart: conformance/interfaces/shm_open/1-1: execution: INTERRUPTED: Output: conformance/interfaces/shm_open/10-1: execution: UNTESTED: Output: Will not test whether the file offset is set because it is unspecified. - conformance/interfaces/shm_open/11-1: execution: PASS conformance/interfaces/shm_open/12-1: execution: UNTESTED: Output: Will not test the behavior of implementation when an application does not specify exactly one of two values: O_RDONLY and O_RDWR. - conformance/interfaces/shm_open/13-1: execution: PASS - conformance/interfaces/shm_open/13-2: execution: PASS - conformance/interfaces/shm_open/14-1: execution: PASS conformance/interfaces/shm_open/14-2: execution: INTERRUPTED: Output: - conformance/interfaces/shm_open/15-1: execution: PASS - conformance/interfaces/shm_open/16-1: execution: PASS - conformance/interfaces/shm_open/17-1: execution: PASS - conformance/interfaces/shm_open/18-1: execution: PASS conformance/interfaces/shm_open/19-1: execution: UNTESTED: Output: Will not test the effect of calling shm_open() when the shared memory object does not exists, the O_CREAT flags is set, and bits in mode other than the @@ -6389,18 +2193,11 @@ and restart: conformance/interfaces/shm_open/2-1: execution: UNTESTED: Output: Will not test that the shm_open() function create an open file description that refers to the shared memory object and a file descriptor that refers to - that open file description.conformance/interfaces/shm_open/20-1: execution: PASS - conformance/interfaces/shm_open/20-2: execution: PASS - conformance/interfaces/shm_open/20-3: execution: PASS - conformance/interfaces/shm_open/21-1: execution: PASS - conformance/interfaces/shm_open/22-1: execution: PASS conformance/interfaces/shm_open/23-1: execution: UNRESOLVED: Output: error at sem_open: Operation not supported conformance/interfaces/shm_open/24-1: execution: UNTESTED: Output: Will not test the result of shm_open() when O_EXCL is set and O_CREAT is not set because it is undefined. - conformance/interfaces/shm_open/25-1: execution: PASS - conformance/interfaces/shm_open/26-1: execution: PASS conformance/interfaces/shm_open/26-2: execution: UNRESOLVED: Output: You don't have permission to change your UID. Try to rerun this test as root. @@ -6408,7 +2205,6 @@ and restart: Will not test the result of shm_open() when using O_TRUNC with O_RDONLY. It is undefined. conformance/interfaces/shm_open/28-1: execution: INTERRUPTED: Output: - conformance/interfaces/shm_open/28-2: execution: PASS conformance/interfaces/shm_open/28-3: execution: INTERRUPTED: Output: conformance/interfaces/shm_open/29-1: execution: UNTESTED: Output: Will not test whether the name and shared memory object state remain valid @@ -6416,11 +2212,6 @@ and restart: conformance/interfaces/shm_open/3-1: execution: UNTESTED: Output: Will not test whether the name appears in the file system and is visible to other functions that take pathnames as arguments because it is unspecified. - conformance/interfaces/shm_open/30-1: execution: PASS - conformance/interfaces/shm_open/31-1: execution: PASS - conformance/interfaces/shm_open/32-1: execution: PASS - conformance/interfaces/shm_open/34-1: execution: PASS - conformance/interfaces/shm_open/35-1: execution: PASS conformance/interfaces/shm_open/36-1: execution: UNTESTED: Output: It is very difficult to test that the shm_open() function sets errno = EINTR when it is interrupted by a signal. @@ -6439,12 +2230,8 @@ and restart: Name: '/abc' OK: open with success. Test FAILED - conformance/interfaces/shm_open/38-1: execution: PASS - conformance/interfaces/shm_open/39-1: execution: PASS conformance/interfaces/shm_open/39-2: execution: UNRESOLVED: Output: An error occurs when calling pathconf(): Invalid argument - conformance/interfaces/shm_open/4-1: execution: PASS - conformance/interfaces/shm_open/41-1: execution: PASS conformance/interfaces/shm_open/42-1: execution: UNTESTED: Output: Will not test that the shm_open() function sets errno to ENOSPC if there is insufficient space for the creation of the new shared memory object. @@ -6456,48 +2243,25 @@ and restart: conformance/interfaces/shm_open/7-1: execution: UNTESTED: Output: Will not test the interpretation of slash characters other than the leading slash character in name because it is implementation-defined. - conformance/interfaces/shm_open/8-1: execution: PASS conformance/interfaces/shm_open/9-1: execution: UNTESTED: Output: Will not test that the open file description is new. - conformance/interfaces/shm_unlink/1-1: execution: PASS - conformance/interfaces/shm_unlink/10-1: execution: PASS conformance/interfaces/shm_unlink/10-2: execution: UNRESOLVED: Output: An error occurs when calling pathconf(): Invalid argument - conformance/interfaces/shm_unlink/11-1: execution: PASS - conformance/interfaces/shm_unlink/2-1: execution: PASS - conformance/interfaces/shm_unlink/3-1: execution: PASS - conformance/interfaces/shm_unlink/4-1: execution: PASS - conformance/interfaces/shm_unlink/5-1: execution: PASS - conformance/interfaces/shm_unlink/6-1: execution: PASS - conformance/interfaces/shm_unlink/7-1: execution: PASS conformance/interfaces/shm_unlink/8-1: execution: UNRESOLVED: Output: You don't have permission to change your UID. Try to rerun this test as root. conformance/interfaces/shm_unlink/9-1: execution: UNRESOLVED: Output: You don't have permission to change your UID. Try to rerun this test as root. - conformance/interfaces/sigaction/4-98: execution: PASS conformance/interfaces/sigaction/4-37: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/13-3: execution: PASS - conformance/interfaces/sigaction/3-14: execution: PASS - conformance/interfaces/sigaction/2-23: execution: PASS - conformance/interfaces/sigaction/1-11: execution: PASS - conformance/interfaces/sigaction/3-10: execution: PASS - conformance/interfaces/sigaction/8-9: execution: PASS - conformance/interfaces/sigaction/28-18: execution: PASS - conformance/interfaces/sigaction/22-24: execution: PASS - conformance/interfaces/sigaction/4-67: execution: PASS - conformance/interfaces/sigaction/4-93: execution: PASS conformance/interfaces/sigaction/17-23: execution: FAILED: Output: Caught SIGURG Test FAILED conformance/interfaces/sigaction/12-41: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-100: execution: PASS conformance/interfaces/sigaction/12-4: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-91: execution: PASS conformance/interfaces/sigaction/4-28: execution: FAILED: Output: About to stop child Child has continued @@ -6506,144 +2270,41 @@ and restart: Caught SIGXFSZ Test FAILED conformance/interfaces/sigaction/12-49: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-87: execution: PASS - conformance/interfaces/sigaction/18-5: execution: PASS - conformance/interfaces/sigaction/4-97: execution: PASS - conformance/interfaces/sigaction/1-23: execution: PASS - conformance/interfaces/sigaction/23-10: execution: PASS - conformance/interfaces/sigaction/16-4: execution: PASS - conformance/interfaces/sigaction/4-95: execution: PASS conformance/interfaces/sigaction/12-8: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-22: execution: PASS - conformance/interfaces/sigaction/13-19: execution: PASS - conformance/interfaces/sigaction/22-10: execution: PASS - conformance/interfaces/sigaction/28-7: execution: PASS - conformance/interfaces/sigaction/18-14: execution: PASS - conformance/interfaces/sigaction/2-6: execution: PASS conformance/interfaces/sigaction/12-45: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-18: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/4-42: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/25-1: execution: PASS - conformance/interfaces/sigaction/16-13: execution: PASS - conformance/interfaces/sigaction/2-24: execution: PASS - conformance/interfaces/sigaction/3-18: execution: PASS - conformance/interfaces/sigaction/25-5: execution: PASS - conformance/interfaces/sigaction/28-9: execution: PASS - conformance/interfaces/sigaction/4-3: execution: PASS - conformance/interfaces/sigaction/28-25: execution: PASS conformance/interfaces/sigaction/12-15: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/22-1: execution: PASS - conformance/interfaces/sigaction/28-3: execution: PASS - conformance/interfaces/sigaction/22-21: execution: PASS - conformance/interfaces/sigaction/16-2: execution: PASS - conformance/interfaces/sigaction/1-17: execution: PASS conformance/interfaces/sigaction/12-25: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-81: execution: PASS - conformance/interfaces/sigaction/4-18: execution: PASS conformance/interfaces/sigaction/17-7: execution: FAILED: Output: Caught SIGHUP Test FAILED - conformance/interfaces/sigaction/23-3: execution: PASS conformance/interfaces/sigaction/4-48: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/16-22: execution: PASS - conformance/interfaces/sigaction/16-24: execution: PASS - conformance/interfaces/sigaction/1-2: execution: PASS - conformance/interfaces/sigaction/22-20: execution: PASS - conformance/interfaces/sigaction/13-13: execution: PASS - conformance/interfaces/sigaction/23-5: execution: PASS - conformance/interfaces/sigaction/16-10: execution: PASS conformance/interfaces/sigaction/12-23: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-99: execution: PASS - conformance/interfaces/sigaction/16-20: execution: PASS - conformance/interfaces/sigaction/13-14: execution: PASS conformance/interfaces/sigaction/4-34: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/8-12: execution: PASS - conformance/interfaces/sigaction/4-74: execution: PASS - conformance/interfaces/sigaction/13-15: execution: PASS - conformance/interfaces/sigaction/18-18: execution: PASS - conformance/interfaces/sigaction/18-4: execution: PASS - conformance/interfaces/sigaction/4-54: execution: PASS - conformance/interfaces/sigaction/4-12: execution: PASS - conformance/interfaces/sigaction/4-69: execution: PASS - conformance/interfaces/sigaction/28-16: execution: PASS - conformance/interfaces/sigaction/13-1: execution: PASS - conformance/interfaces/sigaction/4-94: execution: PASS conformance/interfaces/sigaction/12-24: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/1-21: execution: PASS - conformance/interfaces/sigaction/1-8: execution: PASS - conformance/interfaces/sigaction/3-23: execution: PASS - conformance/interfaces/sigaction/4-55: execution: PASS - conformance/interfaces/sigaction/4-11: execution: PASS - conformance/interfaces/sigaction/22-7: execution: PASS - conformance/interfaces/sigaction/28-21: execution: PASS - conformance/interfaces/sigaction/16-7: execution: PASS - conformance/interfaces/sigaction/28-26: execution: PASS - conformance/interfaces/sigaction/4-62: execution: PASS conformance/interfaces/sigaction/4-43: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/23-6: execution: PASS - conformance/interfaces/sigaction/28-5: execution: PASS - conformance/interfaces/sigaction/2-10: execution: PASS - conformance/interfaces/sigaction/22-5: execution: PASS - conformance/interfaces/sigaction/8-3: execution: PASS - conformance/interfaces/sigaction/1-24: execution: PASS - conformance/interfaces/sigaction/8-18: execution: PASS - conformance/interfaces/sigaction/4-65: execution: PASS - conformance/interfaces/sigaction/8-1: execution: PASS - conformance/interfaces/sigaction/18-22: execution: PASS - conformance/interfaces/sigaction/13-21: execution: PASS - conformance/interfaces/sigaction/25-19: execution: PASS conformance/interfaces/sigaction/17-22: execution: FAILED: Output: Caught SIGTRAP Test FAILED - conformance/interfaces/sigaction/3-8: execution: PASS - conformance/interfaces/sigaction/1-7: execution: PASS - conformance/interfaces/sigaction/25-14: execution: PASS - conformance/interfaces/sigaction/3-5: execution: PASS - conformance/interfaces/sigaction/3-24: execution: PASS - conformance/interfaces/sigaction/4-101: execution: PASS - conformance/interfaces/sigaction/22-14: execution: PASS - conformance/interfaces/sigaction/25-2: execution: PASS - conformance/interfaces/sigaction/4-82: execution: PASS - conformance/interfaces/sigaction/2-16: execution: PASS - conformance/interfaces/sigaction/4-77: execution: PASS - conformance/interfaces/sigaction/4-16: execution: PASS conformance/interfaces/sigaction/12-31: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/22-3: execution: PASS - conformance/interfaces/sigaction/2-14: execution: PASS - conformance/interfaces/sigaction/16-5: execution: PASS - conformance/interfaces/sigaction/25-10: execution: PASS conformance/interfaces/sigaction/12-35: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-46: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/23-1: execution: PASS - conformance/interfaces/sigaction/13-10: execution: PASS - conformance/interfaces/sigaction/4-8: execution: PASS - conformance/interfaces/sigaction/22-12: execution: PASS - conformance/interfaces/sigaction/4-84: execution: PASS - conformance/interfaces/sigaction/2-19: execution: PASS - conformance/interfaces/sigaction/16-26: execution: PASS - conformance/interfaces/sigaction/1-26: execution: PASS - conformance/interfaces/sigaction/8-14: execution: PASS - conformance/interfaces/sigaction/25-24: execution: PASS conformance/interfaces/sigaction/12-7: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/3-17: execution: PASS - conformance/interfaces/sigaction/16-17: execution: PASS conformance/interfaces/sigaction/12-34: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-53: execution: PASS - conformance/interfaces/sigaction/18-2: execution: PASS conformance/interfaces/sigaction/12-3: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-96: execution: PASS conformance/interfaces/sigaction/4-52: execution: FAILED: Output: About to stop child Child has continued @@ -6656,13 +2317,7 @@ and restart: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/13-16: execution: PASS - conformance/interfaces/sigaction/23-7: execution: PASS - conformance/interfaces/sigaction/28-4: execution: PASS - conformance/interfaces/sigaction/1-1: execution: PASS conformance/interfaces/sigaction/12-13: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/16-6: execution: PASS - conformance/interfaces/sigaction/23-18: execution: PASS conformance/interfaces/sigaction/4-36: execution: FAILED: Output: About to stop child Child has continued @@ -6670,52 +2325,22 @@ and restart: conformance/interfaces/sigaction/17-21: execution: FAILED: Output: Caught SIGSYS Test FAILED - conformance/interfaces/sigaction/1-22: execution: PASS - conformance/interfaces/sigaction/4-71: execution: PASS - conformance/interfaces/sigaction/3-9: execution: PASS - conformance/interfaces/sigaction/4-80: execution: PASS - conformance/interfaces/sigaction/28-22: execution: PASS - conformance/interfaces/sigaction/18-19: execution: PASS - conformance/interfaces/sigaction/4-14: execution: PASS - conformance/interfaces/sigaction/3-6: execution: PASS conformance/interfaces/sigaction/17-11: execution: FAILED: Output: Caught SIGQUIT Test FAILED - conformance/interfaces/sigaction/13-26: execution: PASS conformance/interfaces/sigaction/4-38: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/4-1: execution: PASS - conformance/interfaces/sigaction/13-18: execution: PASS conformance/interfaces/sigaction/12-47: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-30: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/1-15: execution: PASS - conformance/interfaces/sigaction/18-25: execution: PASS - conformance/interfaces/sigaction/22-23: execution: PASS - conformance/interfaces/sigaction/25-3: execution: PASS - conformance/interfaces/sigaction/2-25: execution: PASS - conformance/interfaces/sigaction/16-23: execution: PASS - conformance/interfaces/sigaction/22-16: execution: PASS - conformance/interfaces/sigaction/18-6: execution: PASS - conformance/interfaces/sigaction/4-76: execution: PASS - conformance/interfaces/sigaction/16-1: execution: PASS - conformance/interfaces/sigaction/16-21: execution: PASS - conformance/interfaces/sigaction/3-26: execution: PASS conformance/interfaces/sigaction/12-44: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/25-12: execution: PASS - conformance/interfaces/sigaction/2-7: execution: PASS - conformance/interfaces/sigaction/16-14: execution: PASS conformance/interfaces/sigaction/4-50: execution: FAILED: Output: About to stop child Child has continued Test FAILED conformance/interfaces/sigaction/12-27: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/13-4: execution: PASS - conformance/interfaces/sigaction/25-26: execution: PASS - conformance/interfaces/sigaction/13-12: execution: PASS conformance/interfaces/sigaction/12-20: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-104: execution: PASS conformance/interfaces/sigaction/4-40: execution: FAILED: Output: About to stop child Child has continued @@ -6723,145 +2348,47 @@ and restart: conformance/interfaces/sigaction/17-19: execution: FAILED: Output: Caught SIGPOLL Test FAILED - conformance/interfaces/sigaction/2-3: execution: PASS conformance/interfaces/sigaction/12-16: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/16-18: execution: PASS - conformance/interfaces/sigaction/4-5: execution: PASS conformance/interfaces/sigaction/12-51: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/23-25: execution: PASS - conformance/interfaces/sigaction/18-13: execution: PASS conformance/interfaces/sigaction/12-21: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-86: execution: PASS - conformance/interfaces/sigaction/4-6: execution: PASS - conformance/interfaces/sigaction/18-10: execution: PASS - conformance/interfaces/sigaction/4-7: execution: PASS - conformance/interfaces/sigaction/4-70: execution: PASS - conformance/interfaces/sigaction/4-64: execution: PASS - conformance/interfaces/sigaction/4-78: execution: PASS - conformance/interfaces/sigaction/4-75: execution: PASS - conformance/interfaces/sigaction/3-2: execution: PASS - conformance/interfaces/sigaction/23-26: execution: PASS - conformance/interfaces/sigaction/28-8: execution: PASS - conformance/interfaces/sigaction/18-15: execution: PASS - conformance/interfaces/sigaction/16-12: execution: PASS - conformance/interfaces/sigaction/22-19: execution: PASS - conformance/interfaces/sigaction/8-20: execution: PASS - conformance/interfaces/sigaction/3-16: execution: PASS - conformance/interfaces/sigaction/18-26: execution: PASS - conformance/interfaces/sigaction/18-24: execution: PASS conformance/interfaces/sigaction/17-1: execution: FAILED: Output: Caught SIGABRT Test FAILED - conformance/interfaces/sigaction/4-90: execution: PASS conformance/interfaces/sigaction/4-32: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/18-8: execution: PASS - conformance/interfaces/sigaction/4-102: execution: PASS - conformance/interfaces/sigaction/1-16: execution: PASS - conformance/interfaces/sigaction/2-20: execution: PASS - conformance/interfaces/sigaction/4-23: execution: PASS - conformance/interfaces/sigaction/4-92: execution: PASS - conformance/interfaces/sigaction/8-2: execution: PASS - conformance/interfaces/sigaction/22-2: execution: PASS - conformance/interfaces/sigaction/28-20: execution: PASS - conformance/interfaces/sigaction/8-19: execution: PASS - conformance/interfaces/sigaction/4-26: execution: PASS - conformance/interfaces/sigaction/23-19: execution: PASS - conformance/interfaces/sigaction/28-17: execution: PASS conformance/interfaces/sigaction/17-12: execution: FAILED: Output: Caught SIGSEGV Test FAILED - conformance/interfaces/sigaction/2-22: execution: PASS - conformance/interfaces/sigaction/13-9: execution: PASS - conformance/interfaces/sigaction/4-61: execution: PASS - conformance/interfaces/sigaction/22-4: execution: PASS - conformance/interfaces/sigaction/4-63: execution: PASS - conformance/interfaces/sigaction/28-1: execution: PASS - conformance/interfaces/sigaction/22-13: execution: PASS - conformance/interfaces/sigaction/25-22: execution: PASS conformance/interfaces/sigaction/12-52: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-10: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/3-13: execution: PASS - conformance/interfaces/sigaction/4-103: execution: PASS - conformance/interfaces/sigaction/4-10: execution: PASS conformance/interfaces/sigaction/12-36: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/3-11: execution: PASS - conformance/interfaces/sigaction/4-2: execution: PASS - conformance/interfaces/sigaction/13-22: execution: PASS - conformance/interfaces/sigaction/8-6: execution: PASS - conformance/interfaces/sigaction/8-8: execution: PASS - conformance/interfaces/sigaction/25-11: execution: PASS conformance/interfaces/sigaction/17-9: execution: FAILED: Output: Caught SIGINT Test FAILED - conformance/interfaces/sigaction/1-18: execution: PASS - conformance/interfaces/sigaction/23-17: execution: PASS - conformance/interfaces/sigaction/8-25: execution: PASS conformance/interfaces/sigaction/4-47: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/2-9: execution: PASS conformance/interfaces/sigaction/12-11: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/25-23: execution: PASS - conformance/interfaces/sigaction/1-4: execution: PASS - conformance/interfaces/sigaction/2-15: execution: PASS - conformance/interfaces/sigaction/28-23: execution: PASS - conformance/interfaces/sigaction/2-11: execution: PASS - conformance/interfaces/sigaction/8-17: execution: PASS - conformance/interfaces/sigaction/16-9: execution: PASS - conformance/interfaces/sigaction/13-20: execution: PASS - conformance/interfaces/sigaction/16-8: execution: PASS - conformance/interfaces/sigaction/8-13: execution: PASS - conformance/interfaces/sigaction/13-17: execution: PASS - conformance/interfaces/sigaction/18-1: execution: PASS - conformance/interfaces/sigaction/3-12: execution: PASS - conformance/interfaces/sigaction/4-60: execution: PASS - conformance/interfaces/sigaction/13-25: execution: PASS - conformance/interfaces/sigaction/2-8: execution: PASS - conformance/interfaces/sigaction/1-19: execution: PASS - conformance/interfaces/sigaction/16-25: execution: PASS - conformance/interfaces/sigaction/23-14: execution: PASS - conformance/interfaces/sigaction/4-88: execution: PASS - conformance/interfaces/sigaction/4-85: execution: PASS - conformance/interfaces/sigaction/28-24: execution: PASS - conformance/interfaces/sigaction/23-24: execution: PASS - conformance/interfaces/sigaction/2-5: execution: PASS - conformance/interfaces/sigaction/23-22: execution: PASS - conformance/interfaces/sigaction/13-7: execution: PASS - conformance/interfaces/sigaction/13-5: execution: PASS - conformance/interfaces/sigaction/23-15: execution: PASS - conformance/interfaces/sigaction/3-22: execution: PASS conformance/interfaces/sigaction/17-10: execution: FAILED: Output: Caught SIGPIPE Test FAILED conformance/interfaces/sigaction/12-5: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-48: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/25-25: execution: PASS - conformance/interfaces/sigaction/8-10: execution: PASS - conformance/interfaces/sigaction/22-11: execution: PASS - conformance/interfaces/sigaction/1-5: execution: PASS conformance/interfaces/sigaction/12-19: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/4-46: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/3-4: execution: PASS - conformance/interfaces/sigaction/4-15: execution: PASS conformance/interfaces/sigaction/17-17: execution: FAILED: Output: Caught SIGUSR1 Test FAILED - conformance/interfaces/sigaction/4-21: execution: PASS conformance/interfaces/sigaction/12-14: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/3-15: execution: PASS - conformance/interfaces/sigaction/25-15: execution: PASS - conformance/interfaces/sigaction/3-1: execution: PASS conformance/interfaces/sigaction/17-14: execution: FAILED: Output: Caught SIGTSTP Test FAILED - conformance/interfaces/sigaction/4-20: execution: PASS conformance/interfaces/sigaction/17-18: execution: FAILED: Output: Caught SIGUSR2 Test FAILED @@ -6869,35 +2396,24 @@ and restart: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/2-2: execution: PASS conformance/interfaces/sigaction/12-43: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/12-28: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/17-6: execution: FAILED: Output: Caught SIGFPE Test FAILED - conformance/interfaces/sigaction/3-20: execution: PASS - conformance/interfaces/sigaction/13-23: execution: PASS - conformance/interfaces/sigaction/13-8: execution: PASS - conformance/interfaces/sigaction/4-56: execution: PASS - conformance/interfaces/sigaction/23-12: execution: PASS conformance/interfaces/sigaction/4-45: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/16-15: execution: PASS - conformance/interfaces/sigaction/4-25: execution: PASS conformance/interfaces/sigaction/4-35: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/16-16: execution: PASS conformance/interfaces/sigaction/12-6: execution: INTERRUPTED: Output: conformance/interfaces/sigaction/4-29: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/23-8: execution: PASS - conformance/interfaces/sigaction/18-17: execution: PASS conformance/interfaces/sigaction/17-16: execution: FAILED: Output: Caught SIGTTOU Test FAILED @@ -6905,185 +2421,73 @@ and restart: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/4-24: execution: PASS - conformance/interfaces/sigaction/25-20: execution: PASS - conformance/interfaces/sigaction/23-16: execution: PASS - conformance/interfaces/sigaction/2-12: execution: PASS - conformance/interfaces/sigaction/8-26: execution: PASS - conformance/interfaces/sigaction/13-11: execution: PASS conformance/interfaces/sigaction/12-29: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/16-3: execution: PASS - conformance/interfaces/sigaction/18-16: execution: PASS conformance/interfaces/sigaction/12-9: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/22-9: execution: PASS - conformance/interfaces/sigaction/8-15: execution: PASS conformance/interfaces/sigaction/17-25: execution: FAILED: Output: Caught SIGXCPU Test FAILED - conformance/interfaces/sigaction/1-10: execution: PASS conformance/interfaces/sigaction/17-4: execution: FAILED: Output: Caught SIGCHLD Test FAILED - conformance/interfaces/sigaction/16-11: execution: PASS - conformance/interfaces/sigaction/8-11: execution: PASS - conformance/interfaces/sigaction/2-26: execution: PASS conformance/interfaces/sigaction/12-22: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-58: execution: PASS conformance/interfaces/sigaction/17-13: execution: FAILED: Output: Caught SIGTERM Test FAILED - conformance/interfaces/sigaction/2-17: execution: PASS - conformance/interfaces/sigaction/2-1: execution: PASS - conformance/interfaces/sigaction/1-13: execution: PASS - conformance/interfaces/sigaction/18-3: execution: PASS - conformance/interfaces/sigaction/13-6: execution: PASS - conformance/interfaces/sigaction/23-9: execution: PASS conformance/interfaces/sigaction/4-31: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/18-7: execution: PASS - conformance/interfaces/sigaction/4-83: execution: PASS conformance/interfaces/sigaction/12-38: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-19: execution: PASS conformance/interfaces/sigaction/12-1: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/8-16: execution: PASS - conformance/interfaces/sigaction/1-3: execution: PASS - conformance/interfaces/sigaction/25-4: execution: PASS - conformance/interfaces/sigaction/23-2: execution: PASS - conformance/interfaces/sigaction/2-13: execution: PASS - conformance/interfaces/sigaction/25-8: execution: PASS - conformance/interfaces/sigaction/3-25: execution: PASS - conformance/interfaces/sigaction/4-66: execution: PASS conformance/interfaces/sigaction/12-12: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/18-9: execution: PASS - conformance/interfaces/sigaction/8-7: execution: PASS - conformance/interfaces/sigaction/3-21: execution: PASS - conformance/interfaces/sigaction/28-6: execution: PASS - conformance/interfaces/sigaction/25-18: execution: PASS - conformance/interfaces/sigaction/28-14: execution: PASS conformance/interfaces/sigaction/4-44: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/22-17: execution: PASS - conformance/interfaces/sigaction/2-18: execution: PASS conformance/interfaces/sigaction/4-49: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/18-21: execution: PASS - conformance/interfaces/sigaction/18-20: execution: PASS - conformance/interfaces/sigaction/1-14: execution: PASS - conformance/interfaces/sigaction/13-24: execution: PASS - conformance/interfaces/sigaction/25-16: execution: PASS conformance/interfaces/sigaction/12-40: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/25-13: execution: PASS conformance/interfaces/sigaction/12-42: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/1-12: execution: PASS - conformance/interfaces/sigaction/23-23: execution: PASS - conformance/interfaces/sigaction/4-68: execution: PASS conformance/interfaces/sigaction/17-15: execution: FAILED: Output: Caught SIGTTIN Test FAILED - conformance/interfaces/sigaction/25-21: execution: PASS - conformance/interfaces/sigaction/25-7: execution: PASS - conformance/interfaces/sigaction/18-11: execution: PASS - conformance/interfaces/sigaction/4-89: execution: PASS - conformance/interfaces/sigaction/13-2: execution: PASS - conformance/interfaces/sigaction/28-19: execution: PASS - conformance/interfaces/sigaction/28-11: execution: PASS - conformance/interfaces/sigaction/4-79: execution: PASS conformance/interfaces/sigaction/17-3: execution: FAILED: Output: Caught SIGBUS Test FAILED - conformance/interfaces/sigaction/18-23: execution: PASS - conformance/interfaces/sigaction/23-11: execution: PASS conformance/interfaces/sigaction/12-2: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/3-7: execution: PASS conformance/interfaces/sigaction/17-5: execution: FAILED: Output: Caught SIGCONT Test FAILED conformance/interfaces/sigaction/12-33: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/22-26: execution: PASS - conformance/interfaces/sigaction/8-4: execution: PASS - conformance/interfaces/sigaction/4-17: execution: PASS - conformance/interfaces/sigaction/22-22: execution: PASS - conformance/interfaces/sigaction/2-21: execution: PASS - conformance/interfaces/sigaction/8-22: execution: PASS conformance/interfaces/sigaction/12-17: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/22-18: execution: PASS conformance/interfaces/sigaction/17-2: execution: FAILED: Output: Caught SIGALRM Test FAILED conformance/interfaces/sigaction/12-37: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/25-17: execution: PASS - conformance/interfaces/sigaction/4-59: execution: PASS - conformance/interfaces/sigaction/18-12: execution: PASS - conformance/interfaces/sigaction/23-13: execution: PASS conformance/interfaces/sigaction/17-20: execution: FAILED: Output: Caught SIGPROF Test FAILED - conformance/interfaces/sigaction/8-21: execution: PASS - conformance/interfaces/sigaction/8-23: execution: PASS - conformance/interfaces/sigaction/22-15: execution: PASS conformance/interfaces/sigaction/17-8: execution: FAILED: Output: Caught SIGILL Test FAILED - conformance/interfaces/sigaction/4-73: execution: PASS conformance/interfaces/sigaction/4-33: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/4-4: execution: PASS - conformance/interfaces/sigaction/4-72: execution: PASS - conformance/interfaces/sigaction/8-5: execution: PASS - conformance/interfaces/sigaction/28-10: execution: PASS conformance/interfaces/sigaction/12-39: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/4-57: execution: PASS - conformance/interfaces/sigaction/28-12: execution: PASS - conformance/interfaces/sigaction/25-6: execution: PASS - conformance/interfaces/sigaction/22-8: execution: PASS - conformance/interfaces/sigaction/3-3: execution: PASS - conformance/interfaces/sigaction/3-19: execution: PASS - conformance/interfaces/sigaction/1-6: execution: PASS conformance/interfaces/sigaction/12-50: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/28-15: execution: PASS conformance/interfaces/sigaction/12-32: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/1-20: execution: PASS conformance/interfaces/sigaction/4-27: execution: FAILED: Output: About to stop child Child has continued Test FAILED - conformance/interfaces/sigaction/4-13: execution: PASS - conformance/interfaces/sigaction/4-9: execution: PASS - conformance/interfaces/sigaction/23-4: execution: PASS - conformance/interfaces/sigaction/1-9: execution: PASS - conformance/interfaces/sigaction/16-19: execution: PASS - conformance/interfaces/sigaction/22-25: execution: PASS - conformance/interfaces/sigaction/25-9: execution: PASS - conformance/interfaces/sigaction/8-24: execution: PASS - conformance/interfaces/sigaction/1-25: execution: PASS conformance/interfaces/sigaction/17-24: execution: FAILED: Output: Caught SIGVTALRM Test FAILED - conformance/interfaces/sigaction/28-13: execution: PASS - conformance/interfaces/sigaction/22-6: execution: PASS - conformance/interfaces/sigaction/23-20: execution: PASS - conformance/interfaces/sigaction/28-2: execution: PASS - conformance/interfaces/sigaction/2-4: execution: PASS conformance/interfaces/sigaction/12-26: execution: INTERRUPTED: Output: - conformance/interfaces/sigaction/23-21: execution: PASS - conformance/interfaces/sigaddset/1-1: execution: PASS - conformance/interfaces/sigaddset/1-2: execution: PASS - conformance/interfaces/sigaddset/1-3: execution: PASS - conformance/interfaces/sigaddset/2-1: execution: PASS - conformance/interfaces/sigaddset/4-1: execution: PASS - conformance/interfaces/sigaddset/4-2: execution: PASS - conformance/interfaces/sigaddset/4-3: execution: PASS - conformance/interfaces/sigaddset/4-4: execution: PASS conformance/interfaces/sigaltstack/1-1: execution: INTERRUPTED: Output: - conformance/interfaces/sigaltstack/10-1: execution: PASS conformance/interfaces/sigaltstack/11-1: execution: FAILED: Output: Test FAILED: Expected return value of -1. conformance/interfaces/sigaltstack/12-1: execution: FAILED: Output: @@ -7091,77 +2495,14 @@ and restart: conformance/interfaces/sigaltstack/2-1: execution: FAILED: Output: Test FAILED: ss_sp of the handler's stack changed even though SS_DISABLE was set conformance/interfaces/sigaltstack/3-1: execution: INTERRUPTED: Output: - conformance/interfaces/sigaltstack/5-1: execution: PASS conformance/interfaces/sigaltstack/6-1: execution: INTERRUPTED: Output: conformance/interfaces/sigaltstack/7-1: execution: INTERRUPTED: Output: - conformance/interfaces/sigaltstack/8-1: execution: PASS - conformance/interfaces/sigaltstack/9-1: execution: PASS - conformance/interfaces/sigdelset/1-1: execution: PASS - conformance/interfaces/sigdelset/1-2: execution: PASS - conformance/interfaces/sigdelset/1-3: execution: PASS - conformance/interfaces/sigdelset/1-4: execution: PASS - conformance/interfaces/sigdelset/2-1: execution: PASS - conformance/interfaces/sigdelset/4-1: execution: PASS - conformance/interfaces/sigdelset/4-2: execution: PASS - conformance/interfaces/sigdelset/4-3: execution: PASS - conformance/interfaces/sigdelset/4-4: execution: PASS - conformance/interfaces/sigemptyset/1-1: execution: PASS - conformance/interfaces/sigemptyset/2-1: execution: PASS - conformance/interfaces/sigfillset/1-1: execution: PASS - conformance/interfaces/sigfillset/2-1: execution: PASS - conformance/interfaces/sighold/1-1: execution: PASS - conformance/interfaces/sighold/2-1: execution: PASS - conformance/interfaces/sighold/3-1: execution: PASS - conformance/interfaces/sighold/3-2: execution: PASS - conformance/interfaces/sighold/3-3: execution: PASS - conformance/interfaces/sighold/3-4: execution: PASS - conformance/interfaces/sigignore/1-1: execution: PASS - conformance/interfaces/sigignore/4-1: execution: PASS - conformance/interfaces/sigignore/5-1: execution: PASS - conformance/interfaces/sigignore/5-2: execution: PASS - conformance/interfaces/sigignore/5-3: execution: PASS - conformance/interfaces/sigignore/5-4: execution: PASS - conformance/interfaces/sigignore/6-1: execution: PASS - conformance/interfaces/sigignore/6-2: execution: PASS - conformance/interfaces/sigismember/3-1: execution: PASS - conformance/interfaces/sigismember/4-1: execution: PASS - conformance/interfaces/sigismember/5-1: execution: PASS - conformance/interfaces/sigismember/5-2: execution: PASS - conformance/interfaces/sigismember/5-3: execution: PASS - conformance/interfaces/sigismember/5-4: execution: PASS - conformance/interfaces/signal/1-1: execution: PASS - conformance/interfaces/signal/2-1: execution: PASS - conformance/interfaces/signal/3-1: execution: PASS - conformance/interfaces/signal/5-1: execution: PASS - conformance/interfaces/signal/6-1: execution: PASS - conformance/interfaces/signal/7-1: execution: PASS - conformance/interfaces/sigpause/1-1: execution: PASS - conformance/interfaces/sigpause/1-2: execution: PASS conformance/interfaces/sigpause/2-1: execution: INTERRUPTED: Output: - conformance/interfaces/sigpause/3-1: execution: PASS - conformance/interfaces/sigpause/4-1: execution: PASS - conformance/interfaces/sigpending/1-1: execution: PASS conformance/interfaces/sigpending/1-2: execution: INTERRUPTED: Output: Not all pending signals found conformance/interfaces/sigpending/1-3: execution: INTERRUPTED: Output: Error with send signals Test FAILED - conformance/interfaces/sigpending/2-1: execution: PASS - conformance/interfaces/sigprocmask/10-1: execution: PASS - conformance/interfaces/sigprocmask/12-1: execution: PASS - conformance/interfaces/sigprocmask/15-1: execution: PASS - conformance/interfaces/sigprocmask/17-1: execution: PASS - conformance/interfaces/sigprocmask/17-2: execution: PASS - conformance/interfaces/sigprocmask/17-3: execution: PASS - conformance/interfaces/sigprocmask/17-4: execution: PASS - conformance/interfaces/sigprocmask/4-1: execution: PASS - conformance/interfaces/sigprocmask/5-1: execution: PASS - conformance/interfaces/sigprocmask/6-1: execution: PASS - conformance/interfaces/sigprocmask/7-1: execution: PASS - conformance/interfaces/sigprocmask/8-1: execution: PASS - conformance/interfaces/sigprocmask/8-2: execution: PASS - conformance/interfaces/sigprocmask/8-3: execution: PASS - conformance/interfaces/sigprocmask/9-1: execution: PASS conformance/interfaces/sigqueue/10-1: execution: FAILED: Output: sigqueue() failed on EINVAL but errno not set correctly conformance/interfaces/sigqueue/11-1: execution: FAILED: Output: @@ -7175,25 +2516,12 @@ and restart: At least one test FAILED -- see output for status conformance/interfaces/sigqueue/3-1: execution: FAILED: Output: Test FAILED: EPERM error not received - conformance/interfaces/sigrelse/1-1: execution: PASS - conformance/interfaces/sigrelse/2-1: execution: PASS - conformance/interfaces/sigrelse/3-1: execution: PASS - conformance/interfaces/sigrelse/3-2: execution: PASS - conformance/interfaces/sigrelse/3-3: execution: PASS - conformance/interfaces/sigrelse/3-4: execution: PASS - conformance/interfaces/sigset/1-1: execution: PASS - conformance/interfaces/sigset/10-1: execution: PASS - conformance/interfaces/sigset/2-1: execution: PASS - conformance/interfaces/sigset/3-1: execution: PASS - conformance/interfaces/sigset/4-1: execution: PASS - conformance/interfaces/sigset/5-1: execution: PASS conformance/interfaces/sigset/6-1: execution: UNRESOLVED: Output: Unexpected error while using sigset(): (os/kern) successful conformance/interfaces/sigset/7-1: execution: UNRESOLVED: Output: Unexpected error while using sigset(): (os/kern) successful conformance/interfaces/sigset/8-1: execution: FAILED: Output: Test FAILED: sigset() didn't return SIG_HOLD - conformance/interfaces/sigset/9-1: execution: PASS conformance/interfaces/sigsuspend/1-1: execution: UNRESOLVED: Output: suspending child SIGUSR2 called. Inside handler @@ -7201,28 +2529,20 @@ and restart: parent sending child a SIGUSR1 signal Exit status from child is 1 Test UNRESOLVED: Either sigsuspend did not successfully block SIGUSR2, OR sigsuspend returned before handling the signal SIGUSR1 - conformance/interfaces/sigsuspend/3-1: execution: PASS - conformance/interfaces/sigsuspend/4-1: execution: PASS - conformance/interfaces/sigsuspend/6-1: execution: PASS conformance/interfaces/sigtimedwait/1-1: execution: FAILED: Output: Test FAILED: sigtimedwait() did not return in the required time - conformance/interfaces/sigtimedwait/2-1: execution: PASS conformance/interfaces/sigtimedwait/4-1: execution: FAILED: Output: Call to sigtimedwait() failed : Function not implemented - conformance/interfaces/sigtimedwait/5-1: execution: PASS conformance/interfaces/sigtimedwait/6-1: execution: FAILED: Output: Test FAILED: sigtimedwait() did set errno to EAGAIN conformance/interfaces/sigwait/1-1: execution: FAILED: Output: Signal SIGALRM is not pending! conformance/interfaces/sigwait/3-1: execution: FAILED: Output: Test FAILED - conformance/interfaces/sigwait/4-1: execution: PASS conformance/interfaces/sigwait/6-1: execution: FAILED: Output: [09:04:10]0 threads were awaken [09:04:10]Test conformance/interfaces/sigwait/6-1.c FAILED: Unexpected number of threads awaken - conformance/interfaces/sigwait/6-2: execution: PASS - conformance/interfaces/sigwait/8-1: execution: PASS conformance/interfaces/sigwaitinfo/1-1: execution: UNRESOLVED: Output: Call to sigwaitinfo() failed : Function not implemented @@ -7236,10 +2556,7 @@ and restart: conformance/interfaces/sigwaitinfo/9-1: execution: FAILED: Output: Call to sigwaitinfo() failed : Function not implemented - conformance/interfaces/strftime/1-1: execution: PASS conformance/interfaces/strftime/2-1: execution: INTERRUPTED: Output: - conformance/interfaces/strftime/3-1: execution: PASS - conformance/interfaces/time/1-1: execution: PASS conformance/interfaces/timer_create/1-1: execution: FAILED: Output: timer_create() did not return success : Function not implemented @@ -7248,16 +2565,12 @@ and restart: conformance/interfaces/timer_create/11-1: execution: UNSUPPORTED: Output: rc = -1 _POSIX_THREAD_CPUTIME unsupported - conformance/interfaces/timer_create/13-1: execution: PASS - conformance/interfaces/timer_create/14-1: execution: PASS conformance/interfaces/timer_create/16-1: execution: FAILED: Output: errno != EINVAL Test FAILED conformance/interfaces/timer_create/3-1: execution: FAILED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_create/4-1: execution: PASS - conformance/interfaces/timer_create/6-1: execution: PASS conformance/interfaces/timer_create/7-1: execution: UNSUPPORTED: Output: CLOCK_MONOTONIC unsupported conformance/interfaces/timer_create/8-1: execution: UNRESOLVED: Output: @@ -7266,7 +2579,6 @@ and restart: conformance/interfaces/timer_create/9-1: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_create/speculative/15-1: execution: PASS conformance/interfaces/timer_create/speculative/2-1: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented @@ -7279,9 +2591,6 @@ and restart: conformance/interfaces/timer_delete/1-2: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_delete/2-1: execution: PASS - conformance/interfaces/timer_delete/3-1: execution: PASS - conformance/interfaces/timer_delete/4-1: execution: PASS conformance/interfaces/timer_delete/speculative/5-1: execution: FAILED: Output: timer_delete() returned -1, but didn't set errno!=EINVAL conformance/interfaces/timer_delete/speculative/5-2: execution: UNRESOLVED: Output: @@ -7302,8 +2611,6 @@ and restart: conformance/interfaces/timer_getoverrun/3-1: execution: UNTESTED: Output: Cannot be tested as DELAYTIMER_MAX is too large. DELAYTIMER_MAX is ffffffff - conformance/interfaces/timer_getoverrun/4-1: execution: PASS - conformance/interfaces/timer_getoverrun/5-1: execution: PASS conformance/interfaces/timer_getoverrun/speculative/6-1: execution: FAILED: Output: fcn returned -1, but errno!=EINVAL Test FAILED @@ -7334,8 +2641,6 @@ and restart: conformance/interfaces/timer_gettime/3-1: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_gettime/4-1: execution: PASS - conformance/interfaces/timer_gettime/5-1: execution: PASS conformance/interfaces/timer_gettime/speculative/6-1: execution: FAILED: Output: fcn returned -1 but errno!=EINVAL Test FAILED @@ -7351,8 +2656,6 @@ and restart: conformance/interfaces/timer_settime/1-2: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_settime/10-1: execution: PASS - conformance/interfaces/timer_settime/11-1: execution: PASS conformance/interfaces/timer_settime/13-1: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented @@ -7368,7 +2671,6 @@ and restart: conformance/interfaces/timer_settime/3-3: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented - conformance/interfaces/timer_settime/4-1: execution: PASS conformance/interfaces/timer_settime/5-1: execution: UNRESOLVED: Output: timer_create() did not return success : Function not implemented -- cgit v1.2.3 From cce88620cb3f9b32e2651ba33d9a7188fbda463d Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sun, 2 Aug 2009 12:26:54 +0200 Subject: open_issues/open_posix_test_suite: Remove garbage. --- open_issues/open_posix_test_suite.mdwn | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'open_issues') diff --git a/open_issues/open_posix_test_suite.mdwn b/open_issues/open_posix_test_suite.mdwn index 50441ae7..089ea1b1 100644 --- a/open_issues/open_posix_test_suite.mdwn +++ b/open_issues/open_posix_test_suite.mdwn @@ -2216,10 +2216,9 @@ and restart: It is very difficult to test that the shm_open() function sets errno = EINTR when it is interrupted by a signal. conformance/interfaces/shm_open/37-1: execution: FAILED: Output: - Name: '$# - @ ,~}' + Name: '[GARBAGE]' OK: open with success. - Name: 'éêîôçà' + Name: '[GARBAGE]' OK: open with success. Name: '..' Unexpected error: Is a directory -- cgit v1.2.3