Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jun 25, 2013 at 10:33 PM, Davidlohr Bueso
<davidlohr.bueso@xxxxxx> wrote:
> On Tue, 2013-06-25 at 18:10 +0200, Sedat Dilek wrote:
> [...]
>
>> I did some more testing with Linux-Testing-Project (release:
>> ltp-full-20130503) and next-20130624 (Monday) which has still the
>> issue, here.
>>
>> If I revert the mentioned two commits from my local
>> revert-ipc-next20130624-5089fd1c6a6a-ab9efc2d0db5 GIT repo, everything
>> is fine.
>>
>> I have tested the LTP ***IPC*** and ***SYSCALLS*** testcases.
>>
>>    root# ./runltp -f ipc
>>
>>    root# ./runltp -f syscalls
>
> These are nice test cases!
>
> So I was able to reproduce the issue with LTP and manually running
> msgctl08. We seemed to be racing at find_msg(), so take to q_perm lock
> before calling it. The following changes fixes the issue and passes all
> 'runltp -f syscall' tests, could you give it a try?
>

Cool, that fixes the issues here.

Building with fakeroot & make deb-pkg is now OK, again.

The syscalls/msgctl08 test-case ran successfully!

<<<test_start>>>
tag=msgctl08 stime=1372195926
cmdline="msgctl08"
contacts=""
analysis=exit
<<<test_output>>>
msgctl08    1  TPASS  :  msgctl08 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=317 cstime=729
<<<test_end>>>

( NOTE: I had to refresh your patch against next-20130624. )

Feel free to add a Reported-by/Tested-by!

Thanks!

- Sedat -

> Thanks,
> Davidlohr
>
> diff --git a/ipc/msg.c b/ipc/msg.c
> index a1cf70e..a1f7d84 100644
> --- a/ipc/msg.c
> +++ b/ipc/msg.c
> @@ -895,6 +895,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
>                 if (ipcperms(ns, &msq->q_perm, S_IRUGO))
>                         goto out_unlock1;
>
> +               ipc_lock_object(&msq->q_perm);
>                 msg = find_msg(msq, &msgtyp, mode);
>                 if (!IS_ERR(msg)) {
>                         /*
> @@ -903,7 +904,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
>                          */
>                         if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
>                                 msg = ERR_PTR(-E2BIG);
> -                               goto out_unlock1;
> +                               goto out_unlock0;
>                         }
>                         /*
>                          * If we are copying, then do not unlink message and do
> @@ -911,10 +912,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
>                          */
>                         if (msgflg & MSG_COPY) {
>                                 msg = copy_msg(msg, copy);
> -                               goto out_unlock1;
> +                               goto out_unlock0;
>                         }
>
> -                       ipc_lock_object(&msq->q_perm);
>                         list_del(&msg->m_list);
>                         msq->q_qnum--;
>                         msq->q_rtime = get_seconds();
> @@ -930,10 +930,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
>                 /* No message waiting. Wait for a message */
>                 if (msgflg & IPC_NOWAIT) {
>                         msg = ERR_PTR(-ENOMSG);
> -                       goto out_unlock1;
> +                       goto out_unlock0;
>                 }
>
> -               ipc_lock_object(&msq->q_perm);
>                 list_add_tail(&msr_d.r_list, &msq->q_receivers);
>                 msr_d.r_tsk = current;
>                 msr_d.r_msgtype = msgtyp;
>
>
> Thanks,
> Davidlohr
>>
>> IPC seems to be fine for both -1 (UNPATCHED) and -2 (with attached two
>> REVERTED patches) kernel, but -1 hangs in the SYSCALLS/msgctl08 test.
>>
>> Previous msgctl07 is OK, but ***msgctl08*** produces this:
>> ...
>> <<<test_start>>>
>> tag=msgctl07 stime=1372174934
>> cmdline="msgctl07"
>> contacts=""
>> analysis=exit
>> <<<test_output>>>
>> msgctl07    1  TPASS  :  msgctl07 ran successfully!
>> <<<execution_status>>>
>> initiation_status="ok"
>> duration=20 termination_type=exited termination_id=0 corefile=no
>> cutime=1995 cstime=3
>> <<<test_end>>>
>> <<<test_start>>>
>> tag=msgctl08 stime=1372174954
>> cmdline="msgctl08"
>> contacts=""
>> analysis=exit
>> <<<test_output>>>
>> msgctl08    0  TWARN  :  Verify error in child 0, *buf = 28, val = 27, size = 8
>> msgctl08    1  TFAIL  :  in child 0 read # = 73,key =  127
>> msgctl08    0  TWARN  :  Verify error in child 3, *buf = ffffff8a, val
>> = ffffff89, size = 52
>> msgctl08    1  TFAIL  :  in child 3 read # = 157,key =  189
>> msgctl08    0  TWARN  :  Verify error in child 2, *buf = ffffff87, val
>> = ffffff86, size = 71
>> msgctl08    1  TFAIL  :  in child 2 read # = 15954,key =  3e86
>> msgctl08    0  TWARN  :  Verify error in child 12, *buf = ffffffa9,
>> val = ffffffa8, size = 22
>> msgctl08    1  TFAIL  :  in child 12 read # = 12904,key =  32a8
>> msgctl08    0  TWARN  :  Verify error in child 13, *buf = 36, val =
>> 35, size = 27
>> msgctl08    1  TFAIL  :  in child 13 read # = 10442,key =  2935
>> msgctl08    0  TWARN  :  Verify error in child 10, *buf = ffffff86,
>> val = ffffff85, size = 63
>> msgctl08    1  TFAIL  :  in child 10 read # = 19713,key =  4d85
>> msgctl08    0  TWARN  :  Verify error in child 4, *buf = 4c, val = 4b, size = 83
>> msgctl08    1  TFAIL  :  in child 4 read # = 23082,key =  5a4b
>> msgctl08    0  TWARN  :  Verify error in child 15, *buf = 61, val =
>> 60, size = 94
>> msgctl08    1  TFAIL  :  in child 15 read # = 23554,key =  5c60
>> msgctl08    0  TWARN  :  Verify error in child 11, *buf = 3b, val =
>> 3a, size = 22
>> msgctl08    1  TFAIL  :  in child 11 read # = 26468,key =  683a
>> msgctl08    0  TWARN  :  Verify error in child 5, *buf = ffffffb5, val
>> = ffffffb4, size = 41
>> msgctl08    1  TFAIL  :  in child 5 read # = 31867,key =  7cb4
>> msgctl08    0  TWARN  :  Verify error in child 1, *buf = 7d, val = 7c, size = 59
>> msgctl08    1  TFAIL  :  in child 1 read # = 41063,key =  a07c
>> msgctl08    0  TWARN  :  Verify error in child 7, *buf = fffffff2, val
>> = fffffff1, size = 83
>> msgctl08    1  TFAIL  :  in child 7 read # = 38476,key =  96f1
>> msgctl08    0  TWARN  :  Verify error in child 9, *buf = ffffff8b, val
>> = ffffff8a, size = 40
>> msgctl08    1  TFAIL  :  in child 9 read # = 90438,key =  1618a
>> msgctl08    0  TWARN  :  Verify error in child 8, *buf = ffffffcd, val
>> = ffffffcc, size = 38
>> msgctl08    1  TFAIL  :  in child 8 read # = 88712,key =  15acc
>> msgctl08    0  TWARN  :  Verify error in child 6, *buf = 6, val = 5, size = 1
>> msgctl08    1  TFAIL  :  in child 6 read # = 83297,key =  14605
>> ***** STOPPED *****
>>
>> See "ltp-full-20130503.git/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c" [1].
>>
>> NOTE: Debian/Ubuntu users with dash as default shell require the patch from [2].
>>
>> - Sedat -
>>
>> P.S.: Unfortunately, fakeroot DEBUG doc file is outdated.
>>
>> [1] https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c
>> [2] https://github.com/linux-test-project/ltp/commit/b88fa5b6ec5a29834a0e52df7b22b9bb47fe0379
>
>
INFO: creating /opt/ltp/results directory
Checking for required user/group ids

'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
NAME="Ubuntu"
VERSION="12.04.2 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.2 LTS)"
VERSION_ID="12.04"
Linux fambox 3.10.0-rc7-next20130624-3-iniza-small #1 SMP Tue Jun 25 23:03:26 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux
 
Gnu C                  gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Gnu make               3.81
util-linux             linux 2.20.1
mount                  linux 2.20.1 (with libblkid and selinux support)
modutils               6
e2fsprogs              1.42
PPP                    2.4.5
Linux C Library        > libc.2.15
Dynamic linker (ldd)   2.15
Procps                 3.2.8
Net-tools              1.60
iproute2              iproute2-ss121211
Kbd                    1.15.2
Sh-utils               8.13
Modules Loaded         parport_pc arc4 ppdev rfcomm bnep iwldvm snd_hda_codec_hdmi mac80211 snd_hda_codec_realtek snd_hda_intel snd_hda_codec uvcvideo snd_hwdep snd_pcm videobuf2_vmalloc joydev videobuf2_memops videobuf2_core snd_page_alloc videodev snd_seq_midi snd_seq_midi_event i915 iwlwifi snd_rawmidi snd_seq snd_timer snd_seq_device psmouse btusb cfg80211 i2c_algo_bit snd bluetooth drm_kms_helper soundcore serio_raw samsung_laptop drm lpc_ich wmi video mac_hid lp parport hid_generic usbhid hid usb_storage r8169 mii

free reports:
             total       used       free     shared    buffers     cached
Mem:       3945272    3817332     127940          0    1099044    1801456
-/+ buffers/cache:     916832    3028440
Swap:       262140         88     262052

/proc/cpuinfo
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1936.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 3192.70
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1920.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 3192.70
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1952.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 3192.70
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 2016.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 3192.70
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

10240+0 records in
10240+0 records out
10240000 bytes (10 MB) copied, 0.054355 s, 188 MB/s
mke2fs 1.42 (29-Nov-2011)
Discarding device blocks:  1024/10000           done                            
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
2512 inodes, 10000 blocks
500 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=10485760
2 block groups
8192 blocks per group, 8192 fragments per group
1256 inodes per group
Superblock backups stored on blocks: 
	8193

Allocating group tables: 0/21/2   done                            
Writing inode tables: 0/21/2   done                            
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: 0/21/2   done

COMMAND:    /opt/ltp/bin/ltp-pan  -e -S   -a 24197     -n 24197  -p  -f /tmp/ltp-LbqYZRF5cO/alltests -l /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.log  -C /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.failed
-e LOG File: /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.log
-e FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.failed
Running tests.......
<<<test_start>>>
tag=abort01 stime=1372195512
cmdline="ulimit -c 1024;abort01"
contacts=""
analysis=exit
<<<test_output>>>
abort01     1  TPASS  :  abort dumped core
abort01     2  TPASS  :  abort raised SIGIOT
abort01     1  TPASS  :  abort dumped core
abort01     2  TPASS  :  abort raised SIGIOT
abort01     3  TPASS  :  abort dumped core
abort01     4  TPASS  :  abort raised SIGIOT
abort01     1  TPASS  :  abort dumped core
abort01     2  TPASS  :  abort raised SIGIOT
abort01     3  TPASS  :  abort dumped core
abort01     4  TPASS  :  abort raised SIGIOT
abort01     5  TPASS  :  abort dumped core
abort01     6  TPASS  :  abort raised SIGIOT
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept01 stime=1372195513
cmdline="accept01"
contacts=""
analysis=exit
<<<test_output>>>
accept01    1  TPASS  :  bad file descriptor successful
accept01    2  TPASS  :  bad file descriptor successful
accept01    3  TPASS  :  invalid socket buffer successful
accept01    4  TPASS  :  invalid salen successful
accept01    5  TPASS  :  invalid salen successful
accept01    6  TPASS  :  no queued connections successful
accept01    7  TPASS  :  UDP accept successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept4_01 stime=1372195513
cmdline="accept4_01"
contacts=""
analysis=exit
<<<test_output>>>
accept04_01    1  TPASS  :  Test passed
accept04_01    2  TPASS  :  Test passed
accept04_01    3  TPASS  :  Test passed
accept04_01    4  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access01 stime=1372195513
cmdline="access01"
contacts=""
analysis=exit
<<<test_output>>>
access01    1  TPASS  :  access(accessfile, F_OK) returned 0
access01    2  TPASS  :  access(accessfile, X_OK) returned 0
access01    3  TPASS  :  access(accessfile, W_OK) returned 0
access01    4  TPASS  :  access(accessfile, R_OK) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access02 stime=1372195513
cmdline="access02"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=access03 stime=1372195513
cmdline="access03"
contacts=""
analysis=exit
<<<test_output>>>
access03    1  TPASS  :  access(0x7f3d0125e000, R_OK) failed as expected with EFAULT
access03    2  TPASS  :  access(0x7f3d0125e000, W_OK) failed as expected with EFAULT
access03    3  TPASS  :  access(0x7f3d0125e000, X_OK) failed as expected with EFAULT
access03    4  TPASS  :  access(0x7f3d0125e000, F_OK) failed as expected with EFAULT
access03    5  TPASS  :  access(0x1f1b001, R_OK) failed as expected with EFAULT
access03    6  TPASS  :  access(0x1f1b001, W_OK) failed as expected with EFAULT
access03    7  TPASS  :  access(0x1f1b001, X_OK) failed as expected with EFAULT
access03    8  TPASS  :  access(0x1f1b001, F_OK) failed as expected with EFAULT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access04 stime=1372195513
cmdline="access04"
contacts=""
analysis=exit
<<<test_output>>>
access04    1  TPASS  :  functionality of access(testdir/testfile, F_OK) ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access05 stime=1372195513
cmdline="access05"
contacts=""
analysis=exit
<<<test_output>>>
access05    1  TPASS  :  access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05    2  TPASS  :  access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05    3  TPASS  :  access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05    4  TPASS  :  access failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
access05    5  TPASS  :  access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05    6  TPASS  :  access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05    7  TPASS  :  access failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
access05    8  TPASS  :  access failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=acct01 stime=1372195513
cmdline="acct01"
contacts=""
analysis=exit
<<<test_output>>>
acct01      1  TPASS  :  Failed with EISDIR as expected
acct01      2  TPASS  :  Failed with EACCES as expected
acct01      3  TPASS  :  Failed with ENOENT as expected
acct01      4  TPASS  :  Failed with ENOTDIR as expected
acct01      5  TPASS  :  Failed with EPERM as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=acct02 stime=1372195513
cmdline="acct02"
contacts=""
analysis=exit
<<<test_output>>>
acct02      1  TPASS  :  Received expected error: EPERM
acct02      2  TPASS  :  Received expected error: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=add_key01 stime=1372195513
cmdline="add_key01"
contacts=""
analysis=exit
<<<test_output>>>
add_key01    1  TPASS  :  add_key call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=add_key02 stime=1372195513
cmdline="add_key02"
contacts=""
analysis=exit
<<<test_output>>>
add_key02    0  TINFO  :  called add_key() with wrong args got EXPECTED errno: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex01 stime=1372195513
cmdline="adjtimex01"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex01    1  TPASS  :  adjtimex() with mode 16447 returned 5
adjtimex01    2  TPASS  :  adjtimex() with mode 32769 returned 5
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex02 stime=1372195513
cmdline="adjtimex02"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex02    1  TPASS  :  Test Passed, adjtimex() returned -1: TEST_ERRNO=EFAULT(14): Bad address
adjtimex02    2  TPASS  :  Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02    3  TPASS  :  Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02    4  TCONF  :  this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02    5  TCONF  :  this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02    6  TPASS  :  Test Passed, adjtimex() returned -1: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm01 stime=1372195513
cmdline="alarm01"
contacts=""
analysis=exit
<<<test_output>>>
alarm01     1  TPASS  :  alarm(1) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm02 stime=1372195513
cmdline="alarm02"
contacts=""
analysis=exit
<<<test_output>>>
alarm02     1  TPASS  :  alarm(18446744073709551615) returned 0 as expected for value -1
alarm02     2  TPASS  :  alarm(18446744073709551615) returned 0 as expected for value ULONG_MAX
alarm02     3  TPASS  :  alarm(0) returned 0 as expected for value ULONG_MAX+1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=alarm03 stime=1372195513
cmdline="alarm03"
contacts=""
analysis=exit
<<<test_output>>>
24366: alarm(100), fork, alarm(0) child's alarm returned 0
alarm03     2  TPASS  :  alarm(100), fork, alarm(0) parent's alarm returned 100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm05 stime=1372195513
cmdline="alarm05"
contacts=""
analysis=exit
<<<test_output>>>
alarm05     1  TPASS  :  Functionality of alarm(5) successful
<<<execution_status>>>
initiation_status="ok"
duration=8 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm06 stime=1372195521
cmdline="alarm06"
contacts=""
analysis=exit
<<<test_output>>>
alarm06     1  TPASS  :  Functionality of alarm(0) successful
<<<execution_status>>>
initiation_status="ok"
duration=15 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm07 stime=1372195536
cmdline="alarm07"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=asyncio02 stime=1372195542
cmdline="asyncio02"
contacts=""
analysis=exit
<<<test_output>>>
asyncio02    1  TPASS  :  More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02    2  TPASS  :  BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02    3  TPASS  :  Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02    4  TPASS  :  More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02    5  TPASS  :  BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02    6  TPASS  :  Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bind01 stime=1372195542
cmdline="bind01"
contacts=""
analysis=exit
<<<test_output>>>
bind01      1  TPASS  :  invalid sockaddr successful
bind01      2  TPASS  :  invalid salen successful
bind01      3  TPASS  :  invalid socket successful
bind01      4  TPASS  :  INADDR_ANYPORT successful
bind01      5  TPASS  :  UNIX-domain of current directory successful
bind01      6  TPASS  :  non-local address successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=bind02 stime=1372195542
cmdline="bind02"
contacts=""
analysis=exit
<<<test_output>>>
bind02      0  TINFO  :  Defaulting to user nobody
bind02      0  TINFO  :  Socket will try to be bind by user: nobody, group: nogroup
bind02      1  TPASS  :  correct error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bdflush01 stime=1372195542
cmdline="bdflush01"
contacts=""
analysis=exit
<<<test_output>>>
bdflush01    2  TCONF  :  syscall __NR_bdflush not supported on your arch
bdflush01    3  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=brk01 stime=1372195542
cmdline="brk01"
contacts=""
analysis=exit
<<<test_output>>>
brk01       1  TPASS  :  brk(34417196) returned 0, new size verified by sbrk
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget01 stime=1372195542
cmdline="capget01"
contacts=""
analysis=exit
<<<test_output>>>
capget01    1  TPASS  :  capget() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget02 stime=1372195542
cmdline="capget02"
contacts=""
analysis=exit
<<<test_output>>>
capget02    1  TPASS  :  capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02    2  TPASS  :  capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02    3  TPASS  :  capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02    4  TPASS  :  capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02    5  TPASS  :  capget failed as expected: TEST_ERRNO=ESRCH(3): No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset01 stime=1372195542
cmdline="capset01"
contacts=""
analysis=exit
<<<test_output>>>
capset01    1  TPASS  :  capset() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset02 stime=1372195542
cmdline="capset02"
contacts=""
analysis=exit
<<<test_output>>>
capset02    1  TPASS  :  capset() returned -1, errno: EFAULT
capset02    2  TPASS  :  capset() returned -1, errno: EFAULT
capset02    3  TPASS  :  capset() returned -1, errno: EINVAL
capset02    4  TPASS  :  capset() returned -1, errno: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=cacheflush01 stime=1372195542
cmdline="cacheflush01"
contacts=""
analysis=exit
<<<test_output>>>
cacheflush01    1  TCONF  :  syscall __NR_cacheflush not supported on your arch
cacheflush01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chdir01 stime=1372195542
cmdline="chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01     0  TINFO  :  Found file .
chdir01     0  TINFO  :  Found file chdirtest
chdir01     0  TINFO  :  Found file ..
chdir01     1  TPASS  :  failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir01A stime=1372195542
cmdline="symlink01 -T chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01     1  TPASS  :  chdir(2) to object file location through symbolic link file is ok
chdir01     2  TPASS  :  chdir(2) to non-existent object file location through symbolic link file failed as expected
chdir01     3  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir02 stime=1372195542
cmdline="chdir02"
contacts=""
analysis=exit
<<<test_output>>>
chdir02     1  TPASS  :  chdir(/) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir03 stime=1372195542
cmdline="chdir03"
contacts=""
analysis=exit
<<<test_output>>>
got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir04 stime=1372195542
cmdline="chdir04"
contacts=""
analysis=exit
<<<test_output>>>
chdir04     1  TPASS  :  failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chdir04     2  TPASS  :  failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chdir04     3  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01 stime=1372195542
cmdline="chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01     1  TPASS  :  Functionality of chmod(testfile, 0) successful
chmod01     2  TPASS  :  Functionality of chmod(testfile, 07) successful
chmod01     3  TPASS  :  Functionality of chmod(testfile, 070) successful
chmod01     4  TPASS  :  Functionality of chmod(testfile, 0700) successful
chmod01     5  TPASS  :  Functionality of chmod(testfile, 0777) successful
chmod01     6  TPASS  :  Functionality of chmod(testfile, 02777) successful
chmod01     7  TPASS  :  Functionality of chmod(testfile, 04777) successful
chmod01     8  TPASS  :  Functionality of chmod(testfile, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01A stime=1372195542
cmdline="symlink01 -T chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01     1  TPASS  :  chmod(2) of object file permissions through symbolic link file is ok
chmod01     2  TPASS  :  chmod(2) error when accessing non-existent object through symbolic link is caught
chmod01     3  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chmod02 stime=1372195542
cmdline="chmod02"
contacts=""
analysis=exit
<<<test_output>>>
chmod02     1  TPASS  :  chmod(tfile, 0) returned 0
chmod02     2  TPASS  :  chmod(tfile, 07) returned 0
chmod02     3  TPASS  :  chmod(tfile, 070) returned 0
chmod02     4  TPASS  :  chmod(tfile, 0700) returned 0
chmod02     5  TPASS  :  chmod(tfile, 0777) returned 0
chmod02     6  TPASS  :  chmod(tfile, 02777) returned 0
chmod02     7  TPASS  :  chmod(tfile, 04777) returned 0
chmod02     8  TPASS  :  chmod(tfile, 06777) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod03 stime=1372195542
cmdline="chmod03"
contacts=""
analysis=exit
<<<test_output>>>
chmod03     1  TPASS  :  Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod04 stime=1372195542
cmdline="chmod04"
contacts=""
analysis=exit
<<<test_output>>>
chmod04     1  TPASS  :  Functionality of chmod(testdir_4, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod05 stime=1372195542
cmdline="chmod05"
contacts=""
analysis=exit
<<<test_output>>>
chmod05     1  TPASS  :  Functionality of chmod(testdir, 043777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod06 stime=1372195542
cmdline="chmod06"
contacts=""
analysis=exit
<<<test_output>>>
chmod06     1  TPASS  :  chmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
chmod06     2  TPASS  :  chmod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
chmod06     3  TPASS  :  chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06     4  TPASS  :  chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06     5  TPASS  :  chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06     6  TPASS  :  chmod failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chmod06     7  TPASS  :  chmod failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chmod06     8  TPASS  :  chmod failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chmod07 stime=1372195542
cmdline="chmod07"
contacts=""
analysis=exit
<<<test_output>>>
chmod07     1  TPASS  :  Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown01 stime=1372195542
cmdline="chown01"
contacts=""
analysis=exit
<<<test_output>>>
chown01     1  TPASS  :  chown(t_24398, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown01_16 stime=1372195542
cmdline="chown01_16"
contacts=""
analysis=exit
<<<test_output>>>
chown01     1  TPASS  :  chown(t_24399, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02 stime=1372195542
cmdline="chown02"
contacts=""
analysis=exit
<<<test_output>>>
chown02     1  TPASS  :  chown(testfile1, ..) succeeded
chown02     2  TPASS  :  chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02_16 stime=1372195542
cmdline="chown02_16"
contacts=""
analysis=exit
<<<test_output>>>
chown02     1  TPASS  :  chown(testfile1, ..) succeeded
chown02     2  TPASS  :  chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03 stime=1372195542
cmdline="chown03"
contacts=""
analysis=exit
<<<test_output>>>
chown03     1  TPASS  :  chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03_16 stime=1372195542
cmdline="chown03_16"
contacts=""
analysis=exit
<<<test_output>>>
chown03     1  TPASS  :  chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chown04 stime=1372195542
cmdline="chown04"
contacts=""
analysis=exit
<<<test_output>>>
chown04     1  TPASS  :  chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04     2  TPASS  :  chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04     3  TPASS  :  chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04     4  TPASS  :  chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04     5  TPASS  :  chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04     6  TPASS  :  chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04     7  TPASS  :  chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown04_16 stime=1372195542
cmdline="chown04_16"
contacts=""
analysis=exit
<<<test_output>>>
chown04     1  TPASS  :  chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04     2  TPASS  :  chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04     3  TPASS  :  chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04     4  TPASS  :  chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04     5  TPASS  :  chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04     6  TPASS  :  chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04     7  TPASS  :  chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05 stime=1372195542
cmdline="chown05"
contacts=""
analysis=exit
<<<test_output>>>
chown05     1  TPASS  :  chown succeeded
chown05     2  TPASS  :  chown succeeded
chown05     3  TPASS  :  chown succeeded
chown05     4  TPASS  :  chown succeeded
chown05     5  TPASS  :  chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05_16 stime=1372195542
cmdline="chown05_16"
contacts=""
analysis=exit
<<<test_output>>>
chown05     1  TPASS  :  chown succeeded
chown05     2  TPASS  :  chown succeeded
chown05     3  TPASS  :  chown succeeded
chown05     4  TPASS  :  chown succeeded
chown05     5  TPASS  :  chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot01 stime=1372195542
cmdline="chroot01"
contacts=""
analysis=exit
<<<test_output>>>
chroot01    1  TPASS  :  chroot set errno to EPERM.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot02 stime=1372195542
cmdline="chroot02"
contacts=""
analysis=exit
<<<test_output>>>
chroot02    1  TPASS  :  chroot functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chroot03 stime=1372195542
cmdline="chroot03"
contacts=""
analysis=exit
<<<test_output>>>
chroot03    1  TPASS  :  failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chroot03    2  TPASS  :  failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
chroot03    3  TPASS  :  failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chroot03    4  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot04 stime=1372195542
cmdline="chroot04"
contacts=""
analysis=exit
<<<test_output>>>
chroot04    1  TPASS  :  got EACCESS as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_getres01 stime=1372195542
cmdline="clock_getres01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
clock_getres01    0  TINFO  :  (case00) START
clock_getres01    1  TPASS  :  (case00) END
clock_getres01    0  TINFO  :  (case01) START
clock_getres01    2  TPASS  :  (case01) END
clock_getres01    0  TINFO  :  (case02) START
clock_getres01    3  TPASS  :  (case02) END
clock_getres01    0  TINFO  :  (case03) START
clock_getres01    4  TPASS  :  (case03) END
clock_getres01    0  TINFO  :  (case04) START
clock_getres01    5  TPASS  :  (case04) END
clock_getres01    0  TINFO  :  (case05) START
clock_getres01    6  TPASS  :  (case05) END
clock_getres01    7  TPASS  :  clock_getres call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep01 stime=1372195542
cmdline="clock_nanosleep01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=4 errno=0 (Success)
RESULT: return value(ret)=4 errno=0 (Success)
clock_nanosleep01    0  TINFO  :  (case00) START
clock_nanosleep01    0  TINFO  :  check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01    0  TINFO  :  remain time: 0 4200395
clock_nanosleep01    0  TINFO  :  (case00) END => OK
clock_nanosleep01    0  TINFO  :  (case01) START
clock_nanosleep01    0  TINFO  :  check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01    0  TINFO  :  remain time: 0 4200395
clock_nanosleep01    0  TINFO  :  (case01) END => OK
clock_nanosleep01    0  TINFO  :  (case02) START
clock_nanosleep01    0  TINFO  :  remain time: 0 4200395
clock_nanosleep01    0  TINFO  :  (case02) END => OK
clock_nanosleep01    0  TINFO  :  (case03) START
clock_nanosleep01    0  TINFO  :  remain time: 0 4200395
clock_nanosleep01    0  TINFO  :  (case03) END => OK
clock_nanosleep01    0  TINFO  :  (case04) START
clock_nanosleep01    0  TINFO  :  remain time: 0 4200395
clock_nanosleep01    0  TINFO  :  (case04) END => OK
clock_nanosleep01    0  TINFO  :  (case05) START
clock_nanosleep01    0  TINFO  :  remain time: 9 499717032
clock_nanosleep01    0  TINFO  :  (case05) END => OK
clock_nanosleep01    1  TPASS  :  clock_nanosleep call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep2_01 stime=1372195543
cmdline="clock_nanosleep2_01"
contacts=""
analysis=exit
<<<test_output>>>
clock_nanosleep2_01    0  TINFO  :  Iteration = 0
clock_nanosleep2_01    0  TINFO  :  Iteration = 1
clock_nanosleep2_01    0  TINFO  :  Iteration = 2
clock_nanosleep2_01    0  TINFO  :  Iteration = 3
clock_nanosleep2_01    0  TINFO  :  Iteration = 4
clock_nanosleep2_01    0  TINFO  :  Iteration = 5
clock_nanosleep2_01    0  TINFO  :  Iteration = 6
clock_nanosleep2_01    0  TINFO  :  Iteration = 7
clock_nanosleep2_01    0  TINFO  :  Iteration = 8
clock_nanosleep2_01    0  TINFO  :  Iteration = 9
clock_nanosleep2_01    0  TINFO  :  Iteration = 10
clock_nanosleep2_01    0  TINFO  :  Iteration = 11
clock_nanosleep2_01    0  TINFO  :  Iteration = 12
clock_nanosleep2_01    0  TINFO  :  Iteration = 13
clock_nanosleep2_01    0  TINFO  :  Iteration = 14
clock_nanosleep2_01    0  TINFO  :  Iteration = 15
clock_nanosleep2_01    0  TINFO  :  Iteration = 16
clock_nanosleep2_01    0  TINFO  :  Iteration = 17
clock_nanosleep2_01    0  TINFO  :  Iteration = 18
clock_nanosleep2_01    0  TINFO  :  Iteration = 19
clock_nanosleep2_01    0  TINFO  :  Iteration = 20
clock_nanosleep2_01    0  TINFO  :  Iteration = 21
clock_nanosleep2_01    0  TINFO  :  Iteration = 22
clock_nanosleep2_01    0  TINFO  :  Iteration = 23
clock_nanosleep2_01    0  TINFO  :  Iteration = 24
clock_nanosleep2_01    0  TINFO  :  Iteration = 25
clock_nanosleep2_01    0  TINFO  :  Iteration = 26
clock_nanosleep2_01    0  TINFO  :  Iteration = 27
clock_nanosleep2_01    0  TINFO  :  Iteration = 28
clock_nanosleep2_01    0  TINFO  :  Iteration = 29
clock_nanosleep2_01    0  TINFO  :  Iteration = 30
clock_nanosleep2_01    0  TINFO  :  Iteration = 31
clock_nanosleep2_01    0  TINFO  :  Iteration = 32
clock_nanosleep2_01    0  TINFO  :  Iteration = 33
clock_nanosleep2_01    0  TINFO  :  Iteration = 34
clock_nanosleep2_01    0  TINFO  :  Iteration = 35
clock_nanosleep2_01    0  TINFO  :  Iteration = 36
clock_nanosleep2_01    0  TINFO  :  Iteration = 37
clock_nanosleep2_01    0  TINFO  :  Iteration = 38
clock_nanosleep2_01    0  TINFO  :  Iteration = 39
clock_nanosleep2_01    0  TINFO  :  Iteration = 40
clock_nanosleep2_01    0  TINFO  :  Iteration = 41
clock_nanosleep2_01    0  TINFO  :  Iteration = 42
clock_nanosleep2_01    0  TINFO  :  Iteration = 43
clock_nanosleep2_01    0  TINFO  :  Iteration = 44
clock_nanosleep2_01    0  TINFO  :  Iteration = 45
clock_nanosleep2_01    0  TINFO  :  Iteration = 46
clock_nanosleep2_01    0  TINFO  :  Iteration = 47
clock_nanosleep2_01    0  TINFO  :  Iteration = 48
clock_nanosleep2_01    0  TINFO  :  Iteration = 49
clock_nanosleep2_01    0  TINFO  :  Iteration = 50
clock_nanosleep2_01    1  TPASS  :  clock_nanosleep2() passed
<<<execution_status>>>
initiation_status="ok"
duration=51 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone01 stime=1372195594
cmdline="clone01"
contacts=""
analysis=exit
<<<test_output>>>
clone01     1  TPASS  :  clone returned 24420
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone02 stime=1372195594
cmdline="clone02"
contacts=""
analysis=exit
<<<test_output>>>
clone02     1  TPASS  :  Test Passed
clone02     1  TPASS  :  Test Passed
clone02     2  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone03 stime=1372195594
cmdline="clone03"
contacts=""
analysis=exit
<<<test_output>>>
clone03     1  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone04 stime=1372195594
cmdline="clone04"
contacts=""
analysis=exit
<<<test_output>>>
clone04     1  TPASS  :  expected failure; Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone05 stime=1372195594
cmdline="clone05"
contacts=""
analysis=exit
<<<test_output>>>
clone05     1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone06 stime=1372195594
cmdline="clone06"
contacts=""
analysis=exit
<<<test_output>>>
clone06     1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone07 stime=1372195594
cmdline="clone07"
contacts=""
analysis=exit
<<<test_output>>>
clone07     1  TPASS  :  Use of return() in child did not cause SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close01 stime=1372195594
cmdline="close01"
contacts=""
analysis=exit
<<<test_output>>>
close01     1  TPASS  :  file appears closed
close01     2  TPASS  :  pipe appears closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close02 stime=1372195594
cmdline="close02"
contacts=""
analysis=exit
<<<test_output>>>
close02     1  TPASS  :  call returned EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close08 stime=1372195594
cmdline="close08"
contacts=""
analysis=exit
<<<test_output>>>
close08     1  TPASS  :  close(tfile_24435) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=confstr01 stime=1372195594
cmdline="confstr01"
contacts=""
analysis=exit
<<<test_output>>>
confstr01    1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=connect01 stime=1372195594
cmdline="connect01"
contacts=""
analysis=exit
<<<test_output>>>
connect01    1  TPASS  :  bad file descriptor successful
connect01    2  TPASS  :  invalid socket buffer successful
connect01    3  TPASS  :  invalid salen successful
connect01    4  TPASS  :  invalid socket successful
connect01    5  TPASS  :  already connected successful
connect01    6  TPASS  :  connection refused successful
connect01    7  TPASS  :  invalid address family successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat01 stime=1372195594
cmdline="creat01"
contacts=""
analysis=exit
<<<test_output>>>
creat01     1  TPASS  :  file was created and written to successfully
creat01     2  TPASS  :  creat truncated existing file to 0 bytes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat03 stime=1372195594
cmdline="creat03"
contacts=""
analysis=exit
<<<test_output>>>
creat03     0  TINFO  :  Created file has mode = 0100444
creat03     1  TPASS  :  save text bit cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat04 stime=1372195594
cmdline="creat04"
contacts=""
analysis=exit
<<<test_output>>>
creat04     1  TPASS  :  call failed with EACCES as expected
creat04     2  TPASS  :  call failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat05 stime=1372195594
cmdline="creat05"
contacts=""
analysis=exit
<<<test_output>>>
creat05     0  TINFO  :  first file is #5
creat05     0  TINFO  :  could not creat file #1025
creat05     1  TPASS  :  call failed with expected error - EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=creat06 stime=1372195594
cmdline="creat06"
contacts=""
analysis=exit
<<<test_output>>>
creat06     1  TPASS  :  got expected failure: TEST_ERRNO=EISDIR(21): Is a directory
creat06     2  TPASS  :  got expected failure: TEST_ERRNO=ENAMETOOLONG(36): File name too long
creat06     3  TPASS  :  got expected failure: TEST_ERRNO=ENOENT(2): No such file or directory
creat06     4  TPASS  :  got expected failure: TEST_ERRNO=ENOTDIR(20): Not a directory
creat06     5  TPASS  :  got expected failure: TEST_ERRNO=EFAULT(14): Bad address
creat06     6  TPASS  :  got expected failure: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat07 stime=1372195594
cmdline="creat07"
contacts=""
analysis=exit
<<<test_output>>>
creat07     1  TPASS  :  creat received EXTBSY
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat08 stime=1372195594
cmdline="creat08"
contacts=""
analysis=exit
<<<test_output>>>
creat08     1  TPASS  :  Test passed in block0.
creat08     2  TPASS  :  Test passed in block1.
creat08     3  TPASS  :  Test passed in block2.
creat08     4  TPASS  :  Test passed in block3
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat09 stime=1372195595
cmdline="creat09"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup01 stime=1372195595
cmdline="dup01"
contacts=""
analysis=exit
<<<test_output>>>
dup01       1  TPASS  :  dup(dupfile) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup02 stime=1372195595
cmdline="dup02"
contacts=""
analysis=exit
<<<test_output>>>
dup02       1  TPASS  :  dup failed as expected with EBADF
dup02       2  TPASS  :  dup failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup03 stime=1372195595
cmdline="dup03"
contacts=""
analysis=exit
<<<test_output>>>
dup03       1  TPASS  :  dup failed as expected with EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup04 stime=1372195595
cmdline="dup04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup05 stime=1372195595
cmdline="dup05"
contacts=""
analysis=exit
<<<test_output>>>
dup05       1  TPASS  :  dup returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup06 stime=1372195595
cmdline="dup06"
contacts=""
analysis=exit
<<<test_output>>>
dup06       1  TPASS  :  Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup07 stime=1372195595
cmdline="dup07"
contacts=""
analysis=exit
<<<test_output>>>
dup07       1  TPASS  :  Passed in read mode.
dup07       2  TPASS  :  Passed in write mode.
dup07       3  TPASS  :  Passed in read/write mode.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup201 stime=1372195595
cmdline="dup201"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=dup202 stime=1372195595
cmdline="dup202"
contacts=""
analysis=exit
<<<test_output>>>
dup202      1  TPASS  :  fstat shows new and old modes are the same
dup202      2  TPASS  :  fstat shows new and old modes are the same
dup202      3  TPASS  :  fstat shows new and old modes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup203 stime=1372195595
cmdline="dup203"
contacts=""
analysis=exit
<<<test_output>>>
dup203      0  TINFO  :  Enter block 1
dup203      0  TINFO  :  Test duping over an open fd
dup203      1  TPASS  :  dup2 test 1 functionality is correct
dup203      0  TINFO  :  Exit block 1
dup203      0  TINFO  :  Enter block 2
dup203      0  TINFO  :  Test close on exec flag
dup203      2  TPASS  :  dup2 test 2 functionality is correct
dup203      0  TINFO  :  Exit block 2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup204 stime=1372195595
cmdline="dup204"
contacts=""
analysis=exit
<<<test_output>>>
dup204      1  TPASS  :  original and duped inodes are the same
dup204      2  TPASS  :  original and duped inodes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup205 stime=1372195595
cmdline="dup205"
contacts=""
analysis=exit
<<<test_output>>>
dup205      1  TPASS  :  Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup3_01 stime=1372195595
cmdline="dup3_01"
contacts=""
analysis=exit
<<<test_output>>>
dup3_01     1  TPASS  :  dup3(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll_create1_01 stime=1372195595
cmdline="epoll_create1_01"
contacts=""
analysis=exit
<<<test_output>>>
epoll_create1_01    1  TPASS  :  epoll_create1(EPOLL_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll01 stime=1372195595
cmdline="epoll-ltp"
contacts=""
analysis=exit
<<<test_output>>>
epoll01     0  TINFO  :  testing if epoll() system call works
epoll01     0  TINFO  :  gettimeofday() works
epoll01     0  TINFO  :  random number seeded with gettimeofday() [seed = 121118] works
epoll01     0  TINFO  :  Testing epoll_create
epoll01     1  TPASS  :  epoll_create with negative set size
epoll01     2  TPASS  :  epoll_create with large set size (size = 2147483647)
epoll01     3  TPASS  :  epoll_create with large set size (size = 2147483646)
epoll01     4  TPASS  :  epoll_create with large set size (size = 2147483645)
epoll01     5  TPASS  :  epoll_create with large set size (size = 2147483644)
epoll01     6  TPASS  :  epoll_create with large set size (size = 2147483643)
epoll01     7  TPASS  :  epoll_create with large set size (size = 2147483642)
epoll01     8  TPASS  :  epoll_create with large set size (size = 2147483641)
epoll01     9  TPASS  :  epoll_create with large set size (size = 2147483640)
epoll01    10  TPASS  :  epoll_create with large set size (size = 2147483639)
epoll01    11  TPASS  :  epoll_create with large set size (size = 2147483638)
epoll01    12  TPASS  :  epoll_create with large set size (size = 2147483637)
epoll01    13  TPASS  :  epoll_create with large set size (size = 2147483636)
epoll01    14  TPASS  :  epoll_create with large set size (size = 2147483635)
epoll01    15  TPASS  :  epoll_create with large set size (size = 2147483634)
epoll01    16  TPASS  :  epoll_create with large set size (size = 2147483633)
epoll01    17  TPASS  :  epoll_create with large set size (size = 2147483632)
epoll01    18  TPASS  :  epoll_create with random large set size (size = 455094117)
epoll01    19  TPASS  :  epoll_create with random large set size (size = 1891438769)
epoll01    20  TPASS  :  epoll_create with random large set size (size = 187684372)
epoll01    21  TPASS  :  epoll_create with random large set size (size = 712806069)
epoll01    22  TPASS  :  epoll_create with random large set size (size = 1448281113)
epoll01    23  TPASS  :  epoll_create with random large set size (size = 670266344)
epoll01    24  TPASS  :  epoll_create with random large set size (size = 1285953606)
epoll01    25  TPASS  :  epoll_create with random large set size (size = 496508503)
epoll01    26  TPASS  :  epoll_create with random large set size (size = 152339288)
epoll01    27  TPASS  :  epoll_create with random large set size (size = 1197005572)
epoll01    28  TPASS  :  epoll_create with random large set size (size = 1917780670)
epoll01    29  TPASS  :  epoll_create with random large set size (size = 1039225397)
epoll01    30  TPASS  :  epoll_create with random large set size (size = 1445707087)
epoll01    31  TPASS  :  epoll_create with random large set size (size = 256072775)
epoll01    32  TPASS  :  epoll_create with random large set size (size = 792637676)
epoll01    33  TPASS  :  epoll_create with random large set size (size = 2039122540)
epoll01     0  TINFO  :  Summary: Of 33 tests, epoll_create failed 0 (100% passed).
epoll01     0  TINFO  :  Testing epoll_ctl
epoll01     0  TINFO  :  Summary: Of 13824 tests, epoll_ctl failed 0 (100% passed).
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=54 cstime=219
<<<test_end>>>
<<<test_start>>>
tag=eventfd01 stime=1372195597
cmdline="eventfd01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd01    1  TPASS  :  counter value matches required
eventfd01    2  TPASS  :  read failed with EAGAIN as expected
eventfd01    3  TPASS  :  counter value matches required
eventfd01    4  TPASS  :  write failed with EAGAIN as expected
eventfd01    5  TPASS  :  read failed with EINVAL as expected
eventfd01    6  TPASS  :  write failed with EINVAL as expected
eventfd01    7  TPASS  :  write failed with EINVAL as expected
eventfd01    8  TPASS  :  fd is set in readfds
eventfd01    9  TPASS  :  fd is not set in readfds
eventfd01   10  TPASS  :  fd is set in writefds
eventfd01   11  TPASS  :  fd is not set in writefds
eventfd01    1  TPASS  :  counter value matches required
eventfd01    2  TPASS  :  read failed with EAGAIN as expected
eventfd01    3  TPASS  :  counter value matches required
eventfd01    4  TPASS  :  write failed with EAGAIN as expected
eventfd01    5  TPASS  :  read failed with EINVAL as expected
eventfd01    6  TPASS  :  write failed with EINVAL as expected
eventfd01    7  TPASS  :  write failed with EINVAL as expected
eventfd01    8  TPASS  :  fd is set in readfds
eventfd01    9  TPASS  :  fd is not set in readfds
eventfd01   10  TPASS  :  fd is set in writefds
eventfd01   11  TPASS  :  fd is not set in writefds
eventfd01   12  TPASS  :  counter value write from child successful
eventfd01   13  TPASS  :  read fd set as expected
eventfd01   14  TPASS  :  POLLERR occurred as expected
eventfd01   15  TPASS  :  overflow occurred as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_01 stime=1372195597
cmdline="eventfd2_01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_01    1  TPASS  :  eventfd2(EFD_CLOEXEC) Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_02 stime=1372195597
cmdline="eventfd2_02"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_02    1  TPASS  :  eventfd2(EFD_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_03 stime=1372195597
cmdline="eventfd2_03"
contacts=""
analysis=exit
<<<test_output>>>
[6114] posting 1 on 6
[6114] waiting on 5
[6114] wait completed on 5: count=1
[6114] posting 1 on 6
[6114] waiting on 5
[6114] wait completed on 5: count=1
[6114] posting 5 on 6
[6114] waiting 5 times on 5
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6113] posting 1 on 5
[6113] waiting on 6
[6113] wait completed on 6: count=1
[6113] posting 1 on 5
[6113] waiting on 6
[6113] wait completed on 6: count=1
[6113] posting 5 on 5
[6113] waiting 5 times on 6
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execl01 stime=1372195597
cmdline="execl01"
contacts=""
analysis=exit
<<<test_output>>>
execl01     1  TPASS  :  execl - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execle01 stime=1372195597
cmdline="execle01"
contacts=""
analysis=exit
<<<test_output>>>
execle01    1  TPASS  :  execle - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execlp01 stime=1372195597
cmdline="execlp01"
contacts=""
analysis=exit
<<<test_output>>>
execlp01    1  TPASS  :  execlp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execv01 stime=1372195597
cmdline="execv01"
contacts=""
analysis=exit
<<<test_output>>>
execv01     1  TPASS  :  execv - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve01 stime=1372195597
cmdline="execve01"
contacts=""
analysis=exit
<<<test_output>>>
execve01    1  TPASS  :  execve - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve02 stime=1372195597
cmdline="execve02 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execve03 stime=1372195597
cmdline="execve03"
contacts=""
analysis=exit
<<<test_output>>>
execve03    1  TPASS  :  execve failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
execve03    2  TPASS  :  execve failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
execve03    3  TPASS  :  execve failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
execve03    4  TPASS  :  execve failed as expected: TEST_ERRNO=EFAULT(14): Bad address
execve03    5  TPASS  :  execve failed as expected: TEST_ERRNO=EACCES(13): Permission denied
execve03    6  TPASS  :  execve failed as expected: TEST_ERRNO=ENOEXEC(8): Exec format error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve04 stime=1372195597
cmdline="execve04 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with ETXTBSY as expected
execve04    1  TPASS  :  execve failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve05 stime=1372195597
cmdline="execve05 20 $LTPROOT/testcases/bin/execve05 $LTPROOT/testcases/bin/execve05 4"
contacts=""
analysis=exit
<<<test_output>>>
execve05    1  TPASS  :  Test DONE, pid 6143, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6144, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6145, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6146, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6147, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6148, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6149, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05    1  TPASS  :  Test DONE, pid 6150, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=execvp01 stime=1372195598
cmdline="execvp01"
contacts=""
analysis=exit
<<<test_output>>>
execvp01    1  TPASS  :  execvp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit01 stime=1372195598
cmdline="exit01"
contacts=""
analysis=exit
<<<test_output>>>
exit01      1  TPASS  :  exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit02 stime=1372195598
cmdline="exit02"
contacts=""
analysis=exit
<<<test_output>>>
exit02      1  TPASS  :  exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit_group01 stime=1372195601
cmdline="exit_group01"
contacts=""
analysis=exit
<<<test_output>>>
exit_group01    1  TPASS  :  exit_group succeeded
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=faccessat01 stime=1372195606
cmdline="faccessat01"
contacts=""
analysis=exit
<<<test_output>>>
faccessat01    1  TPASS  :  faccessat() returned the expected  errno 0: Success
faccessat01    2  TPASS  :  faccessat() returned the expected  errno 0: Success
faccessat01    3  TPASS  :  faccessat() returned the expected  errno 20: Not a directory
faccessat01    4  TPASS  :  faccessat() returned the expected  errno 9: Bad file descriptor
faccessat01    5  TPASS  :  faccessat() returned the expected  errno 0: Success
faccessat01    6  TPASS  :  faccessat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate01 stime=1372195606
cmdline="fallocate01"
contacts=""
analysis=exit
<<<test_output>>>
fallocate01    1  TPASS  :  fallocate(5, 0, 49152, 4096) returned 0
fallocate01    2  TPASS  :  write operation on fallocated(5, 0, 49152, 4096) returned 1
fallocate01    3  TPASS  :  fallocate(6, 1, 49152, 4096) returned 0
fallocate01    4  TPASS  :  write operation on fallocated(6, 1, 49152, 4096) returned 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate02 stime=1372195606
cmdline="fallocate02"
contacts=""
analysis=exit
<<<test_output>>>
fallocate02    1  TPASS  :  fallocate(tfile_read_6161:5, 1, 0, 4096) returned 9
fallocate02    2  TPASS  :  fallocate(tfile_write_6161:6, 1, -4096, 4096) returned 22
fallocate02    3  TPASS  :  fallocate(tfile_write_6161:6, 1, 4096, -4096) returned 22
fallocate02    4  TPASS  :  fallocate(tfile_write_6161:6, 1, 49152, 0) returned 22
fallocate02    5  TPASS  :  fallocate(tfile_write_6161:6, 1, 49152, -4096) returned 22
fallocate02    6  TPASS  :  fallocate(tfile_write_6161:6, 1, -98304, 4096) returned 22
fallocate02    7  TPASS  :  fallocate(tfile_write_6161:6, 1, 0, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate03 stime=1372195606
cmdline="fallocate03"
contacts=""
analysis=exit
<<<test_output>>>
fallocate03    1  TPASS  :  fallocate(tfile_sparse_6162, 0, 8192, 4096) returned 0
fallocate03    2  TPASS  :  fallocate(tfile_sparse_6162, 0, 49152, 4096) returned 0
fallocate03    3  TPASS  :  fallocate(tfile_sparse_6162, 0, 69632, 4096) returned 0
fallocate03    4  TPASS  :  fallocate(tfile_sparse_6162, 0, 102400, 4096) returned 0
fallocate03    5  TPASS  :  fallocate(tfile_sparse_6162, 1, 8192, 4096) returned 0
fallocate03    6  TPASS  :  fallocate(tfile_sparse_6162, 1, 49152, 4096) returned 0
fallocate03    7  TPASS  :  fallocate(tfile_sparse_6162, 1, 77824, 4096) returned 0
fallocate03    8  TPASS  :  fallocate(tfile_sparse_6162, 1, 106496, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01 stime=1372195606
cmdline="                     posix_fadvise01"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01    1  TPASS  :  call succeeded expectedly
posix_fadvise01    2  TPASS  :  call succeeded expectedly
posix_fadvise01    3  TPASS  :  call succeeded expectedly
posix_fadvise01    4  TPASS  :  call succeeded expectedly
posix_fadvise01    5  TPASS  :  call succeeded expectedly
posix_fadvise01    6  TPASS  :  call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01_64 stime=1372195606
cmdline="               posix_fadvise01_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01_64    1  TPASS  :  call succeeded expectedly
posix_fadvise01_64    2  TPASS  :  call succeeded expectedly
posix_fadvise01_64    3  TPASS  :  call succeeded expectedly
posix_fadvise01_64    4  TPASS  :  call succeeded expectedly
posix_fadvise01_64    5  TPASS  :  call succeeded expectedly
posix_fadvise01_64    6  TPASS  :  call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02 stime=1372195606
cmdline="                     posix_fadvise02"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02    1  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02    2  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02    3  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02    4  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02    5  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02    6  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02_64 stime=1372195606
cmdline="               posix_fadvise02_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02_64    1  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64    2  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64    3  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64    4  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64    5  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64    6  TPASS  :  expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03 stime=1372195606
cmdline="                     posix_fadvise03"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03    1  TPASS  :  expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03    2  TPASS  :  expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03    3  TPASS  :  expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03    4  TPASS  :  expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03    5  TPASS  :  expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03    6  TPASS  :  expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03    7  TPASS  :  expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03    8  TPASS  :  expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03    9  TPASS  :  expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03   10  TPASS  :  expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03   11  TPASS  :  expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03   12  TPASS  :  expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03   13  TPASS  :  expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03   14  TPASS  :  expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03   15  TPASS  :  expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03   16  TPASS  :  expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03   17  TPASS  :  expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03   18  TPASS  :  expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03   19  TPASS  :  expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03   20  TPASS  :  expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03   21  TPASS  :  expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03   22  TPASS  :  expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03   23  TPASS  :  expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03   24  TPASS  :  expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03   25  TPASS  :  expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03   26  TPASS  :  expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03_64 stime=1372195606
cmdline="               posix_fadvise03_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03_64    1  TPASS  :  expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03_64    2  TPASS  :  expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03_64    3  TPASS  :  expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03_64    4  TPASS  :  expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03_64    5  TPASS  :  expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03_64    6  TPASS  :  expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03_64    7  TPASS  :  expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03_64    8  TPASS  :  expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03_64    9  TPASS  :  expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03_64   10  TPASS  :  expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03_64   11  TPASS  :  expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03_64   12  TPASS  :  expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03_64   13  TPASS  :  expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03_64   14  TPASS  :  expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03_64   15  TPASS  :  expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03_64   16  TPASS  :  expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03_64   17  TPASS  :  expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03_64   18  TPASS  :  expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03_64   19  TPASS  :  expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03_64   20  TPASS  :  expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03_64   21  TPASS  :  expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03_64   22  TPASS  :  expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03_64   23  TPASS  :  expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03_64   24  TPASS  :  expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03_64   25  TPASS  :  expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03_64   26  TPASS  :  expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04 stime=1372195606
cmdline="                     posix_fadvise04"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04    1  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04    2  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04    3  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04    4  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04    5  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04    6  TPASS  :  expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04_64 stime=1372195606
cmdline="               posix_fadvise04_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04_64    1  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64    2  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64    3  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64    4  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64    5  TPASS  :  expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64    6  TPASS  :  expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir01 stime=1372195606
cmdline="fchdir01"
contacts=""
analysis=exit
<<<test_output>>>
fchdir01    1  TPASS  :  fchdir call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir02 stime=1372195606
cmdline="fchdir02"
contacts=""
analysis=exit
<<<test_output>>>
fchdir02    1  TPASS  :  failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir03 stime=1372195606
cmdline="fchdir03"
contacts=""
analysis=exit
<<<test_output>>>
Got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod01 stime=1372195606
cmdline="fchmod01"
contacts=""
analysis=exit
<<<test_output>>>
fchmod01    1  TPASS  :  fchmod(tfile_6175, 0700) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchmod02 stime=1372195606
cmdline="fchmod02"
contacts=""
analysis=exit
<<<test_output>>>
fchmod02    1  TPASS  :  Functionality of fchmod(5, 01777) Successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod03 stime=1372195606
cmdline="fchmod03"
contacts=""
analysis=exit
<<<test_output>>>
fchmod03    1  TPASS  :  Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod04 stime=1372195606
cmdline="fchmod04"
contacts=""
analysis=exit
<<<test_output>>>
fchmod04    1  TPASS  :  Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod05 stime=1372195606
cmdline="fchmod05"
contacts=""
analysis=exit
<<<test_output>>>
fchmod05    1  TPASS  :  Functionality of fchmod(5, 041777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod06 stime=1372195606
cmdline="fchmod06"
contacts=""
analysis=exit
<<<test_output>>>
fchmod06    1  TPASS  :  fchmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchmod06    2  TPASS  :  fchmod failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod07 stime=1372195606
cmdline="fchmod07"
contacts=""
analysis=exit
<<<test_output>>>
fchmod07    1  TPASS  :  Functionality of fchmod(5, 0) successful
fchmod07    2  TPASS  :  Functionality of fchmod(5, 07) successful
fchmod07    3  TPASS  :  Functionality of fchmod(5, 070) successful
fchmod07    4  TPASS  :  Functionality of fchmod(5, 0700) successful
fchmod07    5  TPASS  :  Functionality of fchmod(5, 0777) successful
fchmod07    6  TPASS  :  Functionality of fchmod(5, 02777) successful
fchmod07    7  TPASS  :  Functionality of fchmod(5, 04777) successful
fchmod07    8  TPASS  :  Functionality of fchmod(5, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchmodat01 stime=1372195606
cmdline="fchmodat01"
contacts=""
analysis=exit
<<<test_output>>>
fchmodat01    1  TPASS  :  fchmodat() returned the expected  errno 0: Success
fchmodat01    2  TPASS  :  fchmodat() returned the expected  errno 0: Success
fchmodat01    3  TPASS  :  fchmodat() returned the expected  errno 20: Not a directory
fchmodat01    4  TPASS  :  fchmodat() returned the expected  errno 9: Bad file descriptor
fchmodat01    5  TPASS  :  fchmodat() returned the expected  errno 0: Success
fchmodat01    6  TPASS  :  fchmodat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01 stime=1372195606
cmdline="fchown01"
contacts=""
analysis=exit
<<<test_output>>>
fchown01    1  TPASS  :  fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01_16 stime=1372195606
cmdline="fchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown01    1  TPASS  :  fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown02 stime=1372195606
cmdline="fchown02"
contacts=""
analysis=exit
<<<test_output>>>
fchown02    1  TPASS  :  fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02    2  TPASS  :  fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown02_16 stime=1372195606
cmdline="fchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown02    1  TPASS  :  fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02    2  TPASS  :  fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown03 stime=1372195606
cmdline="fchown03"
contacts=""
analysis=exit
<<<test_output>>>
fchown03    1  TPASS  :  fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchown03_16 stime=1372195606
cmdline="fchown03_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown03    1  TPASS  :  fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04 stime=1372195606
cmdline="fchown04"
contacts=""
analysis=exit
<<<test_output>>>
fchown04    1  TPASS  :  fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04    2  TPASS  :  fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04_16 stime=1372195606
cmdline="fchown04_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown04    1  TPASS  :  fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04    2  TPASS  :  fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown05 stime=1372195606
cmdline="fchown05"
contacts=""
analysis=exit
<<<test_output>>>
fchown05    1  TPASS  :  fchown() succeeds to Change Owner/Group ids of testfile
fchown05    2  TPASS  :  fchown() succeeds to Change Owner id only of testfile
fchown05    3  TPASS  :  fchown() succeeds to Change Owner id only of testfile
fchown05    4  TPASS  :  fchown() succeeds to Change Group id only of testfile
fchown05    5  TPASS  :  fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown05_16 stime=1372195606
cmdline="fchown05_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown05    1  TPASS  :  fchown() succeeds to Change Owner/Group ids of testfile
fchown05    2  TPASS  :  fchown() succeeds to Change Owner id only of testfile
fchown05    3  TPASS  :  fchown() succeeds to Change Owner id only of testfile
fchown05    4  TPASS  :  fchown() succeeds to Change Group id only of testfile
fchown05    5  TPASS  :  fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchownat01 stime=1372195606
cmdline="fchownat01"
contacts=""
analysis=exit
<<<test_output>>>
fchownat01    1  TPASS  :  fchownat() returned the expected  errno 0: Success
fchownat01    2  TPASS  :  fchownat() returned the expected  errno 0: Success
fchownat01    3  TPASS  :  fchownat() returned the expected  errno 20: Not a directory
fchownat01    4  TPASS  :  fchownat() returned the expected  errno 9: Bad file descriptor
fchownat01    5  TPASS  :  fchownat() returned the expected  errno 22: Invalid argument
fchownat01    6  TPASS  :  fchownat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl01 stime=1372195606
cmdline="fcntl01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl01_64 stime=1372195606
cmdline="fcntl01_64"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02 stime=1372195606
cmdline="fcntl02"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02     1  TPASS  :  fcntl(tfile_6196, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02_64 stime=1372195606
cmdline="fcntl02_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02     1  TPASS  :  fcntl(tfile_6197, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl03 stime=1372195606
cmdline="fcntl03"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03     1  TPASS  :  fcntl(tfile_6198, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl03_64 stime=1372195606
cmdline="fcntl03_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03     1  TPASS  :  fcntl(tfile_6199, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl04 stime=1372195606
cmdline="fcntl04"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04     1  TPASS  :  fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl04_64 stime=1372195606
cmdline="fcntl04_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04     1  TPASS  :  fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05 stime=1372195606
cmdline="fcntl05"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05     1  TPASS  :  fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05_64 stime=1372195606
cmdline="fcntl05_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05     1  TPASS  :  fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06 stime=1372195606
cmdline="fcntl06"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06     1  TCONF  :  system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06_64 stime=1372195606
cmdline="fcntl06_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06     1  TCONF  :  system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07 stime=1372195606
cmdline="fcntl07"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07     1  TPASS  :  regular file child exited 0, indicating that the file was closed
fcntl07     2  TPASS  :  write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07_64 stime=1372195606
cmdline="fcntl07_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07     1  TPASS  :  regular file child exited 0, indicating that the file was closed
fcntl07     2  TPASS  :  write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B stime=1372195606
cmdline="fcntl07B"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B    1  TPASS  :  named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B_64 stime=1372195606
cmdline="fcntl07B_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B    1  TPASS  :  named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl08 stime=1372195606
cmdline="fcntl08"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08     1  TPASS  :  fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl08_64 stime=1372195606
cmdline="fcntl08_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08     1  TPASS  :  fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl09 stime=1372195606
cmdline="fcntl09"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09     1  TPASS  :  fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09     2  TPASS  :  fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09     1  TPASS  :  fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09     2  TPASS  :  fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl09_64 stime=1372195606
cmdline="fcntl09_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09     1  TPASS  :  fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09     2  TPASS  :  fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09     1  TPASS  :  fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09     2  TPASS  :  fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10 stime=1372195606
cmdline="fcntl10"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10     1  TPASS  :  fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10     2  TPASS  :  fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10     1  TPASS  :  fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10     2  TPASS  :  fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10_64 stime=1372195606
cmdline="fcntl10_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10     1  TPASS  :  fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10     2  TPASS  :  fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10     1  TPASS  :  fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10     2  TPASS  :  fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11 stime=1372195606
cmdline="fcntl11"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11     0  TINFO  :  Enter block 1
fcntl11     0  TINFO  :  Exit block 1
fcntl11     0  TINFO  :  Enter block 2
fcntl11     0  TINFO  :  Exit block 2
fcntl11     0  TINFO  :  Enter block 3
fcntl11     0  TINFO  :  Exit block 3
fcntl11     0  TINFO  :  Enter block 4
fcntl11     0  TINFO  :  Exit block 4
fcntl11     0  TINFO  :  Enter block 5
fcntl11     0  TINFO  :  Exit block 5
fcntl11     0  TINFO  :  Enter block 6
fcntl11     0  TINFO  :  Exit block 6
fcntl11     0  TINFO  :  Enter block 7
fcntl11     0  TINFO  :  Exit block 7
fcntl11     0  TINFO  :  Enter block 8
fcntl11     0  TINFO  :  Exit block 8
fcntl11     0  TINFO  :  Enter block 9
fcntl11     0  TINFO  :  Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11_64 stime=1372195606
cmdline="fcntl11_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11     0  TINFO  :  Enter block 1
fcntl11     0  TINFO  :  Exit block 1
fcntl11     0  TINFO  :  Enter block 2
fcntl11     0  TINFO  :  Exit block 2
fcntl11     0  TINFO  :  Enter block 3
fcntl11     0  TINFO  :  Exit block 3
fcntl11     0  TINFO  :  Enter block 4
fcntl11     0  TINFO  :  Exit block 4
fcntl11     0  TINFO  :  Enter block 5
fcntl11     0  TINFO  :  Exit block 5
fcntl11     0  TINFO  :  Enter block 6
fcntl11     0  TINFO  :  Exit block 6
fcntl11     0  TINFO  :  Enter block 7
fcntl11     0  TINFO  :  Exit block 7
fcntl11     0  TINFO  :  Enter block 8
fcntl11     0  TINFO  :  Exit block 8
fcntl11     0  TINFO  :  Enter block 9
fcntl11     0  TINFO  :  Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl12 stime=1372195606
cmdline="fcntl12"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12     0  TINFO  :  Enter block 1
fcntl12     0  TINFO  :  Test for errno EMFILE
fcntl12     0  TINFO  :  Enter block 1
fcntl12     0  TINFO  :  Test for errno EMFILE
fcntl12     0  TINFO  :  block 1 PASSED
fcntl12     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fcntl12_64 stime=1372195606
cmdline="fcntl12_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12     0  TINFO  :  Enter block 1
fcntl12     0  TINFO  :  Test for errno EMFILE
fcntl12     0  TINFO  :  Enter block 1
fcntl12     0  TINFO  :  Test for errno EMFILE
fcntl12     0  TINFO  :  block 1 PASSED
fcntl12     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl13 stime=1372195606
cmdline="fcntl13"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13     0  TINFO  :  Enter block 1
fcntl13     0  TINFO  :  Test for errno EINVAL
fcntl13     0  TINFO  :  block 1 PASSED
fcntl13     0  TINFO  :  Exit block 1
fcntl13     0  TINFO  :  Enter block 2
fcntl13     0  TINFO  :  Test for errno EFAULT
fcntl13     0  TINFO  :  block 2 PASSED
fcntl13     0  TINFO  :  Exit block 2
fcntl13     0  TINFO  :  Enter block 3
fcntl13     0  TINFO  :  Test for errno EINVAL
fcntl13     0  TINFO  :  block 3 PASSED
fcntl13     0  TINFO  :  Exit block 3
fcntl13     0  TINFO  :  Enter block 4
fcntl13     0  TINFO  :  Test for errno EBADF
fcntl13     0  TINFO  :  block 4 PASSED
fcntl13     0  TINFO  :  Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl13_64 stime=1372195606
cmdline="fcntl13_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13     0  TINFO  :  Enter block 1
fcntl13     0  TINFO  :  Test for errno EINVAL
fcntl13     0  TINFO  :  block 1 PASSED
fcntl13     0  TINFO  :  Exit block 1
fcntl13     0  TINFO  :  Enter block 2
fcntl13     0  TINFO  :  Test for errno EFAULT
fcntl13     0  TINFO  :  block 2 PASSED
fcntl13     0  TINFO  :  Exit block 2
fcntl13     0  TINFO  :  Enter block 3
fcntl13     0  TINFO  :  Test for errno EINVAL
fcntl13     0  TINFO  :  block 3 PASSED
fcntl13     0  TINFO  :  Exit block 3
fcntl13     0  TINFO  :  Enter block 4
fcntl13     0  TINFO  :  Test for errno EBADF
fcntl13     0  TINFO  :  block 4 PASSED
fcntl13     0  TINFO  :  Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl14 stime=1372195606
cmdline="fcntl14"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14     0  TINFO  :  Enter block 1: without mandatory locking
fcntl14     1  TPASS  :  testcase:1 PASSED
fcntl14     2  TPASS  :  testcase:2 PASSED
fcntl14     3  TPASS  :  testcase:3 PASSED
fcntl14     4  TPASS  :  testcase:4 PASSED
fcntl14     5  TPASS  :  testcase:5 PASSED
fcntl14     6  TPASS  :  testcase:6 PASSED
fcntl14     7  TPASS  :  testcase:7 PASSED
fcntl14     8  TPASS  :  testcase:8 PASSED
fcntl14     9  TPASS  :  testcase:9 PASSED
fcntl14    10  TPASS  :  testcase:10 PASSED
fcntl14    11  TPASS  :  testcase:11 PASSED
fcntl14    12  TPASS  :  testcase:12 PASSED
fcntl14    13  TPASS  :  testcase:13 PASSED
fcntl14    14  TPASS  :  testcase:14 PASSED
fcntl14    15  TPASS  :  testcase:15 PASSED
fcntl14    16  TPASS  :  testcase:16 PASSED
fcntl14    17  TPASS  :  testcase:17 PASSED
fcntl14    18  TPASS  :  testcase:18 PASSED
fcntl14    19  TPASS  :  testcase:19 PASSED
fcntl14    20  TPASS  :  testcase:20 PASSED
fcntl14    21  TPASS  :  testcase:21 PASSED
fcntl14    22  TPASS  :  testcase:22 PASSED
fcntl14    23  TPASS  :  testcase:23 PASSED
fcntl14    24  TPASS  :  testcase:24 PASSED
fcntl14    25  TPASS  :  testcase:25 PASSED
fcntl14    26  TPASS  :  testcase:26 PASSED
fcntl14    27  TPASS  :  testcase:27 PASSED
fcntl14    28  TPASS  :  testcase:28 PASSED
fcntl14    29  TPASS  :  testcase:29 PASSED
fcntl14    30  TPASS  :  testcase:30 PASSED
fcntl14    31  TPASS  :  testcase:31 PASSED
fcntl14    32  TPASS  :  testcase:32 PASSED
fcntl14    33  TPASS  :  testcase:33 PASSED
fcntl14    34  TPASS  :  testcase:34 PASSED
fcntl14    35  TPASS  :  testcase:35 PASSED
fcntl14    36  TPASS  :  testcase:36 PASSED
fcntl14    37  TPASS  :  Block 1, test 1 PASSED
fcntl14    38  TPASS  :  testcase:37 PASSED
fcntl14    39  TPASS  :  testcase:38 PASSED
fcntl14    40  TPASS  :  testcase:39 PASSED
fcntl14    41  TPASS  :  testcase:40 PASSED
fcntl14    42  TPASS  :  testcase:41 PASSED
fcntl14    43  TPASS  :  testcase:42 PASSED
fcntl14    44  TPASS  :  testcase:43 PASSED
fcntl14    45  TPASS  :  testcase:44 PASSED
fcntl14    46  TPASS  :  testcase:45 PASSED
fcntl14    47  TPASS  :  Block 1, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 1
fcntl14     0  TINFO  :  Enter block 2: with mandatory locking
fcntl14    48  TPASS  :  testcase:1 PASSED
fcntl14    49  TPASS  :  testcase:2 PASSED
fcntl14    50  TPASS  :  testcase:3 PASSED
fcntl14    51  TPASS  :  testcase:4 PASSED
fcntl14    52  TPASS  :  testcase:5 PASSED
fcntl14    53  TPASS  :  testcase:6 PASSED
fcntl14    54  TPASS  :  testcase:7 PASSED
fcntl14    55  TPASS  :  testcase:8 PASSED
fcntl14    56  TPASS  :  testcase:9 PASSED
fcntl14    57  TPASS  :  testcase:10 PASSED
fcntl14    58  TPASS  :  testcase:11 PASSED
fcntl14    59  TPASS  :  testcase:12 PASSED
fcntl14    60  TPASS  :  testcase:13 PASSED
fcntl14    61  TPASS  :  testcase:14 PASSED
fcntl14    62  TPASS  :  testcase:15 PASSED
fcntl14    63  TPASS  :  testcase:16 PASSED
fcntl14    64  TPASS  :  testcase:17 PASSED
fcntl14    65  TPASS  :  testcase:18 PASSED
fcntl14    66  TPASS  :  testcase:19 PASSED
fcntl14    67  TPASS  :  testcase:20 PASSED
fcntl14    68  TPASS  :  testcase:21 PASSED
fcntl14    69  TPASS  :  testcase:22 PASSED
fcntl14    70  TPASS  :  testcase:23 PASSED
fcntl14    71  TPASS  :  testcase:24 PASSED
fcntl14    72  TPASS  :  testcase:25 PASSED
fcntl14    73  TPASS  :  testcase:26 PASSED
fcntl14    74  TPASS  :  testcase:27 PASSED
fcntl14    75  TPASS  :  testcase:28 PASSED
fcntl14    76  TPASS  :  testcase:29 PASSED
fcntl14    77  TPASS  :  testcase:30 PASSED
fcntl14    78  TPASS  :  testcase:31 PASSED
fcntl14    79  TPASS  :  testcase:32 PASSED
fcntl14    80  TPASS  :  testcase:33 PASSED
fcntl14    81  TPASS  :  testcase:34 PASSED
fcntl14    82  TPASS  :  testcase:35 PASSED
fcntl14    83  TPASS  :  testcase:36 PASSED
fcntl14    84  TPASS  :  Block 2, test 1 PASSED
fcntl14    85  TPASS  :  testcase:37 PASSED
fcntl14    86  TPASS  :  testcase:38 PASSED
fcntl14    87  TPASS  :  testcase:39 PASSED
fcntl14    88  TPASS  :  testcase:40 PASSED
fcntl14    89  TPASS  :  testcase:41 PASSED
fcntl14    90  TPASS  :  testcase:42 PASSED
fcntl14    91  TPASS  :  testcase:43 PASSED
fcntl14    92  TPASS  :  testcase:44 PASSED
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14     0  TINFO  :  Test of locks on file PASSED
fcntl14     0  TINFO  :  Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fcntl14_64 stime=1372195611
cmdline="fcntl14_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14     0  TINFO  :  Enter block 1: without mandatory locking
fcntl14     1  TPASS  :  testcase:1 PASSED
fcntl14     2  TPASS  :  testcase:2 PASSED
fcntl14     3  TPASS  :  testcase:3 PASSED
fcntl14     4  TPASS  :  testcase:4 PASSED
fcntl14     5  TPASS  :  testcase:5 PASSED
fcntl14     6  TPASS  :  testcase:6 PASSED
fcntl14     7  TPASS  :  testcase:7 PASSED
fcntl14     8  TPASS  :  testcase:8 PASSED
fcntl14     9  TPASS  :  testcase:9 PASSED
fcntl14    10  TPASS  :  testcase:10 PASSED
fcntl14    11  TPASS  :  testcase:11 PASSED
fcntl14    12  TPASS  :  testcase:12 PASSED
fcntl14    13  TPASS  :  testcase:13 PASSED
fcntl14    14  TPASS  :  testcase:14 PASSED
fcntl14    15  TPASS  :  testcase:15 PASSED
fcntl14    16  TPASS  :  testcase:16 PASSED
fcntl14    17  TPASS  :  testcase:17 PASSED
fcntl14    18  TPASS  :  testcase:18 PASSED
fcntl14    19  TPASS  :  testcase:19 PASSED
fcntl14    20  TPASS  :  testcase:20 PASSED
fcntl14    21  TPASS  :  testcase:21 PASSED
fcntl14    22  TPASS  :  testcase:22 PASSED
fcntl14    23  TPASS  :  testcase:23 PASSED
fcntl14    24  TPASS  :  testcase:24 PASSED
fcntl14    25  TPASS  :  testcase:25 PASSED
fcntl14    26  TPASS  :  testcase:26 PASSED
fcntl14    27  TPASS  :  testcase:27 PASSED
fcntl14    28  TPASS  :  testcase:28 PASSED
fcntl14    29  TPASS  :  testcase:29 PASSED
fcntl14    30  TPASS  :  testcase:30 PASSED
fcntl14    31  TPASS  :  testcase:31 PASSED
fcntl14    32  TPASS  :  testcase:32 PASSED
fcntl14    33  TPASS  :  testcase:33 PASSED
fcntl14    34  TPASS  :  testcase:34 PASSED
fcntl14    35  TPASS  :  testcase:35 PASSED
fcntl14    36  TPASS  :  testcase:36 PASSED
fcntl14    37  TPASS  :  Block 1, test 1 PASSED
fcntl14    38  TPASS  :  testcase:37 PASSED
fcntl14    39  TPASS  :  testcase:38 PASSED
fcntl14    40  TPASS  :  testcase:39 PASSED
fcntl14    41  TPASS  :  testcase:40 PASSED
fcntl14    42  TPASS  :  testcase:41 PASSED
fcntl14    43  TPASS  :  testcase:42 PASSED
fcntl14    44  TPASS  :  testcase:43 PASSED
fcntl14    45  TPASS  :  testcase:44 PASSED
fcntl14    46  TPASS  :  testcase:45 PASSED
fcntl14    47  TPASS  :  Block 1, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 1
fcntl14     0  TINFO  :  Enter block 2: with mandatory locking
fcntl14    48  TPASS  :  testcase:1 PASSED
fcntl14    49  TPASS  :  testcase:2 PASSED
fcntl14    50  TPASS  :  testcase:3 PASSED
fcntl14    51  TPASS  :  testcase:4 PASSED
fcntl14    52  TPASS  :  testcase:5 PASSED
fcntl14    53  TPASS  :  testcase:6 PASSED
fcntl14    54  TPASS  :  testcase:7 PASSED
fcntl14    55  TPASS  :  testcase:8 PASSED
fcntl14    56  TPASS  :  testcase:9 PASSED
fcntl14    57  TPASS  :  testcase:10 PASSED
fcntl14    58  TPASS  :  testcase:11 PASSED
fcntl14    59  TPASS  :  testcase:12 PASSED
fcntl14    60  TPASS  :  testcase:13 PASSED
fcntl14    61  TPASS  :  testcase:14 PASSED
fcntl14    62  TPASS  :  testcase:15 PASSED
fcntl14    63  TPASS  :  testcase:16 PASSED
fcntl14    64  TPASS  :  testcase:17 PASSED
fcntl14    65  TPASS  :  testcase:18 PASSED
fcntl14    66  TPASS  :  testcase:19 PASSED
fcntl14    67  TPASS  :  testcase:20 PASSED
fcntl14    68  TPASS  :  testcase:21 PASSED
fcntl14    69  TPASS  :  testcase:22 PASSED
fcntl14    70  TPASS  :  testcase:23 PASSED
fcntl14    71  TPASS  :  testcase:24 PASSED
fcntl14    72  TPASS  :  testcase:25 PASSED
fcntl14    73  TPASS  :  testcase:26 PASSED
fcntl14    74  TPASS  :  testcase:27 PASSED
fcntl14    75  TPASS  :  testcase:28 PASSED
fcntl14    76  TPASS  :  testcase:29 PASSED
fcntl14    77  TPASS  :  testcase:30 PASSED
fcntl14    78  TPASS  :  testcase:31 PASSED
fcntl14    79  TPASS  :  testcase:32 PASSED
fcntl14    80  TPASS  :  testcase:33 PASSED
fcntl14    81  TPASS  :  testcase:34 PASSED
fcntl14    82  TPASS  :  testcase:35 PASSED
fcntl14    83  TPASS  :  testcase:36 PASSED
fcntl14    84  TPASS  :  Block 2, test 1 PASSED
fcntl14    85  TPASS  :  testcase:37 PASSED
fcntl14    86  TPASS  :  testcase:38 PASSED
fcntl14    87  TPASS  :  testcase:39 PASSED
fcntl14    88  TPASS  :  testcase:40 PASSED
fcntl14    89  TPASS  :  testcase:41 PASSED
fcntl14    90  TPASS  :  testcase:42 PASSED
fcntl14    91  TPASS  :  testcase:43 PASSED
fcntl14    92  TPASS  :  testcase:44 PASSED
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14    93  TPASS  :  testcase:45 PASSED
fcntl14    94  TPASS  :  Block 2, test 2 PASSED
fcntl14     0  TINFO  :  Exit block 2
fcntl14     0  TINFO  :  Enter block 3
fcntl14     0  TINFO  :  Test with mandatory locking PASSED
fcntl14     0  TINFO  :  Exit block 3
fcntl14     0  TINFO  :  Enter block 4
fcntl14     0  TINFO  :  Test of locks on file PASSED
fcntl14     0  TINFO  :  Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=fcntl15 stime=1372195617
cmdline="fcntl15"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Test 3: test with "fork" PASSED
fcntl15     0  TINFO  :  Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl15_64 stime=1372195627
cmdline="fcntl15_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Entering block 1
fcntl15     0  TINFO  :  Test 1: test with "dup" PASSED
fcntl15     0  TINFO  :  Exiting block 1
fcntl15     0  TINFO  :  Entering block 2
fcntl15     0  TINFO  :  Test 2: test with "open" PASSED
fcntl15     0  TINFO  :  Exiting block 2
fcntl15     0  TINFO  :  Entering block 3
fcntl15     0  TINFO  :  Test 3: test with "fork" PASSED
fcntl15     0  TINFO  :  Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl16 stime=1372195637
cmdline="fcntl16"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16     0  TINFO  :  Entering block 1
fcntl16     0  TINFO  :  Test case 1: without manadatory locking PASSED
fcntl16     0  TINFO  :  Exiting block 1
fcntl16     0  TINFO  :  Entering block 2
fcntl16     0  TINFO  :  Test case 2: with mandatory record locking PASSED
fcntl16     0  TINFO  :  Exiting block 2
fcntl16     0  TINFO  :  Entering block 3
fcntl16     0  TINFO  :  Test case 3: mandatory locking with NODELAY PASSED
fcntl16     0  TINFO  :  Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl16_64 stime=1372195637
cmdline="fcntl16_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16     0  TINFO  :  Entering block 1
fcntl16     0  TINFO  :  Test case 1: without manadatory locking PASSED
fcntl16     0  TINFO  :  Exiting block 1
fcntl16     0  TINFO  :  Entering block 2
fcntl16     0  TINFO  :  Test case 2: with mandatory record locking PASSED
fcntl16     0  TINFO  :  Exiting block 2
fcntl16     0  TINFO  :  Entering block 3
fcntl16     0  TINFO  :  Test case 3: mandatory locking with NODELAY PASSED
fcntl16     0  TINFO  :  Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl17 stime=1372195637
cmdline="fcntl17"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 1 starting
fcntl17     0  TINFO  :  child 1 pid 6535 locked
fcntl17     0  TINFO  :  child 1 resuming
fcntl17     0  TINFO  :  child 1 unlocked
fcntl17     0  TINFO  :  child 1 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 3 starting
fcntl17     0  TINFO  :  child 3 pid 6537 locked
fcntl17     0  TINFO  :  child 3 resuming
fcntl17     0  TINFO  :  child 3 lockw err 35
fcntl17     0  TINFO  :  child 3 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 2 starting
fcntl17     0  TINFO  :  child 2 pid 6536 locked
fcntl17     0  TINFO  :  child 2 resuming
fcntl17     0  TINFO  :  child 2 lockw locked
fcntl17     0  TINFO  :  child 2 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  Exit preparation phase
fcntl17     0  TINFO  :  Enter block 1
fcntl17     0  TINFO  :  Block 1 PASSED
fcntl17     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl17_64 stime=1372195637
cmdline="fcntl17_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 1 starting
fcntl17     0  TINFO  :  child 1 pid 6539 locked
fcntl17     0  TINFO  :  child 1 resuming
fcntl17     0  TINFO  :  child 1 unlocked
fcntl17     0  TINFO  :  child 1 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 3 starting
fcntl17     0  TINFO  :  child 3 pid 6541 locked
fcntl17     0  TINFO  :  child 3 resuming
fcntl17     0  TINFO  :  child 3 lockw err 35
fcntl17     0  TINFO  :  child 3 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  child 2 starting
fcntl17     0  TINFO  :  child 2 pid 6540 locked
fcntl17     0  TINFO  :  child 2 resuming
fcntl17     0  TINFO  :  child 2 lockw locked
fcntl17     0  TINFO  :  child 2 exiting
fcntl17     0  TINFO  :  Enter preparation phase
fcntl17     0  TINFO  :  Exit preparation phase
fcntl17     0  TINFO  :  Enter block 1
fcntl17     0  TINFO  :  Block 1 PASSED
fcntl17     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18 stime=1372195637
cmdline="fcntl18"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18     0  TINFO  :  Enter block 1
fcntl18     1  TPASS  :  Test F_GETLK: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 1 PASSED
fcntl18     0  TINFO  :  Exit block 1
fcntl18     0  TINFO  :  Enter block 2
fcntl18     2  TPASS  :  Test F_GETLK64: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 2 PASSED
fcntl18     0  TINFO  :  Exit block 2
fcntl18     0  TINFO  :  Enter block 3
fcntl18     3  TPASS  :  Test for errno EINVAL PASSED
fcntl18     0  TINFO  :  Enter block 1
fcntl18     1  TPASS  :  Test F_GETLK: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 1 PASSED
fcntl18     0  TINFO  :  Exit block 1
fcntl18     0  TINFO  :  Enter block 2
fcntl18     2  TPASS  :  Test F_GETLK64: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 2 PASSED
fcntl18     0  TINFO  :  Exit block 2
fcntl18     0  TINFO  :  Enter block 3
fcntl18     0  TINFO  :  Block 3 PASSED
fcntl18     0  TINFO  :  Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18_64 stime=1372195637
cmdline="fcntl18_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18     0  TINFO  :  Enter block 1
fcntl18     1  TPASS  :  Test F_GETLK: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 1 PASSED
fcntl18     0  TINFO  :  Exit block 1
fcntl18     0  TINFO  :  Enter block 2
fcntl18     2  TPASS  :  Test F_GETLK64: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 2 PASSED
fcntl18     0  TINFO  :  Exit block 2
fcntl18     0  TINFO  :  Enter block 3
fcntl18     3  TPASS  :  Test for errno EINVAL PASSED
fcntl18     0  TINFO  :  Enter block 1
fcntl18     1  TPASS  :  Test F_GETLK: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 1 PASSED
fcntl18     0  TINFO  :  Exit block 1
fcntl18     0  TINFO  :  Enter block 2
fcntl18     2  TPASS  :  Test F_GETLK64: for errno EFAULT PASSED
fcntl18     0  TINFO  :  Block 2 PASSED
fcntl18     0  TINFO  :  Exit block 2
fcntl18     0  TINFO  :  Enter block 3
fcntl18     0  TINFO  :  Block 3 PASSED
fcntl18     0  TINFO  :  Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl19 stime=1372195637
cmdline="fcntl19"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19     0  TINFO  :  Enter block 1
fcntl19     0  TINFO  :  Test block 1: PASSED
fcntl19     0  TINFO  :  Exit block 1
fcntl19     0  TINFO  :  Enter block 2
fcntl19     0  TINFO  :  Test block 2: PASSED
fcntl19     0  TINFO  :  Exit block 2
fcntl19     0  TINFO  :  Enter block 3
fcntl19     0  TINFO  :  Test block 3: PASSED
fcntl19     0  TINFO  :  Exit block 3
fcntl19     0  TINFO  :  Enter blcok 4
fcntl19     0  TINFO  :  Test block 4: PASSED
fcntl19     0  TINFO  :  Exit block 4
fcntl19     0  TINFO  :  Enter block 5
fcntl19     0  TINFO  :  Test block 5: PASSED
fcntl19     0  TINFO  :  Exit block 5
fcntl19     0  TINFO  :  Enter block 6
fcntl19     0  TINFO  :  Test block 6: PASSED
fcntl19     0  TINFO  :  Exit block 6
fcntl19     0  TINFO  :  Enter block 7
fcntl19     0  TINFO  :  Test block 7: PASSED
fcntl19     0  TINFO  :  Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl19_64 stime=1372195637
cmdline="fcntl19_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19     0  TINFO  :  Enter block 1
fcntl19     0  TINFO  :  Test block 1: PASSED
fcntl19     0  TINFO  :  Exit block 1
fcntl19     0  TINFO  :  Enter block 2
fcntl19     0  TINFO  :  Test block 2: PASSED
fcntl19     0  TINFO  :  Exit block 2
fcntl19     0  TINFO  :  Enter block 3
fcntl19     0  TINFO  :  Test block 3: PASSED
fcntl19     0  TINFO  :  Exit block 3
fcntl19     0  TINFO  :  Enter blcok 4
fcntl19     0  TINFO  :  Test block 4: PASSED
fcntl19     0  TINFO  :  Exit block 4
fcntl19     0  TINFO  :  Enter block 5
fcntl19     0  TINFO  :  Test block 5: PASSED
fcntl19     0  TINFO  :  Exit block 5
fcntl19     0  TINFO  :  Enter block 6
fcntl19     0  TINFO  :  Test block 6: PASSED
fcntl19     0  TINFO  :  Exit block 6
fcntl19     0  TINFO  :  Enter block 7
fcntl19     0  TINFO  :  Test block 7: PASSED
fcntl19     0  TINFO  :  Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20 stime=1372195637
cmdline="fcntl20"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20     0  TINFO  :  Enter block 1
fcntl20     0  TINFO  :  Test block 1: PASSED
fcntl20     0  TINFO  :  Exit block 1
fcntl20     0  TINFO  :  Enter block 2
fcntl20     0  TINFO  :  Test block 2: PASSED
fcntl20     0  TINFO  :  Exit block 2
fcntl20     0  TINFO  :  Enter block 3
fcntl20     0  TINFO  :  Test block 3: PASSED
fcntl20     0  TINFO  :  Exit block 3
fcntl20     0  TINFO  :  Enter blcok 4
fcntl20     0  TINFO  :  Test block 4: PASSED
fcntl20     0  TINFO  :  Exit block 4
fcntl20     0  TINFO  :  Enter block 5
fcntl20     0  TINFO  :  Test block 5: PASSED
fcntl20     0  TINFO  :  Exit block 5
fcntl20     0  TINFO  :  Enter block 6
fcntl20     0  TINFO  :  Test block 6: PASSED
fcntl20     0  TINFO  :  Exit block 6
fcntl20     0  TINFO  :  Enter block 7
fcntl20     0  TINFO  :  Test block 7: PASSED
fcntl20     0  TINFO  :  Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20_64 stime=1372195637
cmdline="fcntl20_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20     0  TINFO  :  Enter block 1
fcntl20     0  TINFO  :  Test block 1: PASSED
fcntl20     0  TINFO  :  Exit block 1
fcntl20     0  TINFO  :  Enter block 2
fcntl20     0  TINFO  :  Test block 2: PASSED
fcntl20     0  TINFO  :  Exit block 2
fcntl20     0  TINFO  :  Enter block 3
fcntl20     0  TINFO  :  Test block 3: PASSED
fcntl20     0  TINFO  :  Exit block 3
fcntl20     0  TINFO  :  Enter blcok 4
fcntl20     0  TINFO  :  Test block 4: PASSED
fcntl20     0  TINFO  :  Exit block 4
fcntl20     0  TINFO  :  Enter block 5
fcntl20     0  TINFO  :  Test block 5: PASSED
fcntl20     0  TINFO  :  Exit block 5
fcntl20     0  TINFO  :  Enter block 6
fcntl20     0  TINFO  :  Test block 6: PASSED
fcntl20     0  TINFO  :  Exit block 6
fcntl20     0  TINFO  :  Enter block 7
fcntl20     0  TINFO  :  Test block 7: PASSED
fcntl20     0  TINFO  :  Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl21 stime=1372195637
cmdline="fcntl21"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21     0  TINFO  :  Enter block 1
fcntl21     0  TINFO  :  Test block 1: PASSED
fcntl21     0  TINFO  :  Exit block 1
fcntl21     0  TINFO  :  Enter block 2
fcntl21     0  TINFO  :  Test block 2: PASSED
fcntl21     0  TINFO  :  Exit block 2
fcntl21     0  TINFO  :  Enter block 3
fcntl21     0  TINFO  :  Test block 3 : PASSED
fcntl21     0  TINFO  :  Exit block 3
fcntl21     0  TINFO  :  Enter block 4
fcntl21     0  TINFO  :  Test block 4: PASSED
fcntl21     0  TINFO  :  Exit block 4
fcntl21     0  TINFO  :  Enter block 5
fcntl21     0  TINFO  :  Test block 5: PASSED
fcntl21     0  TINFO  :  Exit block 5
fcntl21     0  TINFO  :  Enter block 6
fcntl21     0  TINFO  :  Test block 6 PASSED
fcntl21     0  TINFO  :  Exit block 6
fcntl21     0  TINFO  :  Enter block 7
fcntl21     0  TINFO  :  Test block 7: PASSED
fcntl21     0  TINFO  :  Exit block 7
fcntl21     0  TINFO  :  Enter block 8
fcntl21     0  TINFO  :  Test block 8: PASSED
fcntl21     0  TINFO  :  Exit block 8
fcntl21     0  TINFO  :  Enter block 9
fcntl21     0  TINFO  :  Test block 9: PASSED
fcntl21     0  TINFO  :  Exit block 9
fcntl21     0  TINFO  :  Enter block 10
fcntl21     0  TINFO  :  Test block 10: PASSED
fcntl21     0  TINFO  :  Exit block 10
fcntl21     0  TINFO  :  Enter block 11
fcntl21     0  TINFO  :  Test block 11: PASSED
fcntl21     0  TINFO  :  Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl21_64 stime=1372195637
cmdline="fcntl21_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21     0  TINFO  :  Enter block 1
fcntl21     0  TINFO  :  Test block 1: PASSED
fcntl21     0  TINFO  :  Exit block 1
fcntl21     0  TINFO  :  Enter block 2
fcntl21     0  TINFO  :  Test block 2: PASSED
fcntl21     0  TINFO  :  Exit block 2
fcntl21     0  TINFO  :  Enter block 3
fcntl21     0  TINFO  :  Test block 3 : PASSED
fcntl21     0  TINFO  :  Exit block 3
fcntl21     0  TINFO  :  Enter block 4
fcntl21     0  TINFO  :  Test block 4: PASSED
fcntl21     0  TINFO  :  Exit block 4
fcntl21     0  TINFO  :  Enter block 5
fcntl21     0  TINFO  :  Test block 5: PASSED
fcntl21     0  TINFO  :  Exit block 5
fcntl21     0  TINFO  :  Enter block 6
fcntl21     0  TINFO  :  Test block 6 PASSED
fcntl21     0  TINFO  :  Exit block 6
fcntl21     0  TINFO  :  Enter block 7
fcntl21     0  TINFO  :  Test block 7: PASSED
fcntl21     0  TINFO  :  Exit block 7
fcntl21     0  TINFO  :  Enter block 8
fcntl21     0  TINFO  :  Test block 8: PASSED
fcntl21     0  TINFO  :  Exit block 8
fcntl21     0  TINFO  :  Enter block 9
fcntl21     0  TINFO  :  Test block 9: PASSED
fcntl21     0  TINFO  :  Exit block 9
fcntl21     0  TINFO  :  Enter block 10
fcntl21     0  TINFO  :  Test block 10: PASSED
fcntl21     0  TINFO  :  Exit block 10
fcntl21     0  TINFO  :  Enter block 11
fcntl21     0  TINFO  :  Test block 11: PASSED
fcntl21     0  TINFO  :  Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22 stime=1372195637
cmdline="fcntl22"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22     1  TPASS  :  fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22_64 stime=1372195637
cmdline="fcntl22_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22     1  TPASS  :  fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23 stime=1372195637
cmdline="fcntl23"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23     1  TPASS  :  fcntl(tfile_6562, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23_64 stime=1372195637
cmdline="fcntl23_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23     1  TPASS  :  fcntl(tfile_6563, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl24 stime=1372195637
cmdline="fcntl24"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24     1  TPASS  :  fcntl(tfile_6564, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl24_64 stime=1372195637
cmdline="fcntl24_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24     1  TPASS  :  fcntl(tfile_6565, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl25 stime=1372195637
cmdline="fcntl25"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25     1  TPASS  :  fcntl(tfile_6566, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl25_64 stime=1372195637
cmdline="fcntl25_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25     1  TPASS  :  fcntl(tfile_6567, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26 stime=1372195637
cmdline="fcntl26"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26     1  TPASS  :  fcntl(tfile_6568, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26_64 stime=1372195637
cmdline="fcntl26_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26     1  TPASS  :  fcntl(tfile_6569, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27 stime=1372195637
cmdline="fcntl27"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27     1  TPASS  :  fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27_64 stime=1372195637
cmdline="fcntl27_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27     1  TPASS  :  fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl28 stime=1372195637
cmdline="fcntl28"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28     1  TPASS  :  fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl28_64 stime=1372195637
cmdline="fcntl28_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28     1  TPASS  :  fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fdatasync01 stime=1372195637
cmdline="fdatasync01"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync01    1  TPASS  :  fdatasync() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fdatasync02 stime=1372195637
cmdline="fdatasync02"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync02    1  TPASS  :  Expected failure for invalid file descriptor, errno: 9
fdatasync02    2  TPASS  :  Expected failure for file descriptor to a special file, errno: 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock01 stime=1372195637
cmdline="flock01"
contacts=""
analysis=exit
<<<test_output>>>
flock01     1  TPASS  :  flock() succeeded with Shared Lock, returned error number=0
flock01     2  TPASS  :  flock() succeeded with Unlock, returned error number=0
flock01     3  TPASS  :  flock() succeeded with Exclusive Lock, returned error number=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock02 stime=1372195637
cmdline="flock02"
contacts=""
analysis=exit
<<<test_output>>>
flock02     1  TPASS  :  flock failed as expected with EBADF
flock02     2  TPASS  :  flock failed as expected with EINVAL
flock02     3  TPASS  :  flock failed as expected with EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock03 stime=1372195637
cmdline="flock03"
contacts=""
analysis=exit
<<<test_output>>>
CHILD: File locked by parent unlocked
CHILD: Locking after unlock passed
flock03     1  TPASS  :  Parent: Initial attempt to flock() passed
flock03     2  TPASS  :  flock03 Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock04 stime=1372195637
cmdline="flock04"
contacts=""
analysis=exit
<<<test_output>>>
flock04     1  TPASS  :  flock() PASSED in acquiring shared lock on Share Locked file
flock04     1  TPASS  :  flock() failed to acquire exclusive lock on existing share locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock05 stime=1372195637
cmdline="flock05"
contacts=""
analysis=exit
<<<test_output>>>
flock05     1  TPASS  :  flock() failed to acquire shared lock on an alreadyexclusive locked file as expected
flock05     1  TPASS  :  flock() failed to acquire exclusive lock on existing  exclusive locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=flock06 stime=1372195637
cmdline="flock06"
contacts=""
analysis=exit
<<<test_output>>>
flock06     1  TPASS  :  First attempt to flock() passed
flock06     2  TPASS  :  Second attempt to flock() denied
flock06     3  TPASS  :  Unlocked fd1
flock06     4  TPASS  :  Third attempt to flock() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fmtmsg01 stime=1372195637
cmdline="fmtmsg01"
contacts=""
analysis=exit
<<<test_output>>>
fmtms01     1  TPASS  :  Test passed
fmtms01     2  TPASS  :  Test passed
fmtms01     3  TPASS  :  Test passed
fmtms01     4  TPASS  :  Test passed
fmtms01     5  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork01 stime=1372195637
cmdline="fork01"
contacts=""
analysis=exit
<<<test_output>>>
fork01      1  TPASS  :  fork() returned 6589
fork01      2  TPASS  :  child pid and fork() return agree: 6589
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork02 stime=1372195637
cmdline="fork02"
contacts=""
analysis=exit
<<<test_output>>>
fork02      0  TINFO  :  Inside parent
fork02      0  TINFO  :  exit status of wait 0
fork02      1  TPASS  :  test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork03 stime=1372195637
cmdline="fork03"
contacts=""
analysis=exit
<<<test_output>>>
fork03      0  TINFO  :  process id in parent of child from fork : 6593
fork03      1  TPASS  :  test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork04 stime=1372195637
cmdline="fork04"
contacts=""
analysis=exit
<<<test_output>>>
fork04      1  TPASS  :  Env var TERM unchanged after fork(): xterm
fork04      2  TPASS  :  Env var NoTSetzWq unchanged after fork(): getenv() does not find variable set
fork04      3  TPASS  :  Env var TESTPROG unchanged after fork(): FRKTCS04
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork05 stime=1372195637
cmdline="fork05"
contacts=""
analysis=exit
<<<test_output>>>
fork05      0  TINFO  :  %fs test only for ix86
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork06 stime=1372195637
cmdline="fork06"
contacts=""
analysis=exit
<<<test_output>>>
fork06      0  TINFO  :  tries 1000
fork06      0  TINFO  :  successes 1000
fork06      0  TINFO  :  failures 0
fork06      0  TINFO  :  There were no children to wait for
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=15
<<<test_end>>>
<<<test_start>>>
tag=fork07 stime=1372195637
cmdline="fork07"
contacts=""
analysis=exit
<<<test_output>>>
fork07      0  TINFO  :  Forking 100 children
fork07      0  TINFO  :  Forked all 100 children, now collecting
fork07      0  TINFO  :  Collected all 100 children
fork07      1  TPASS  :  100/100 children read correctly from an inheritted fd
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork08 stime=1372195638
cmdline="fork08"
contacts=""
analysis=exit
<<<test_output>>>
fork08      0  TINFO  :  parent forksval: 1
fork08      0  TINFO  :  second child got char: b
fork08      1  TPASS  :  Test passed in childnumber 2
fork08      0  TINFO  :  parent forksval: 1
fork08      0  TINFO  :  parent forksval: 2
fork08      0  TINFO  :  exit status of wait  expected 0 got 0
fork08      1  TPASS  :  parent test PASSED
fork08      0  TINFO  :  exit status of wait  expected 0 got 0
fork08      2  TPASS  :  parent test PASSED
fork08      0  TINFO  :  exit status of wait  expected 0 got 0
fork08      3  TPASS  :  parent test PASSED
fork08      0  TINFO  :  Number of processes forked is 2
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork09 stime=1372195639
cmdline="fork09"
contacts=""
analysis=exit
<<<test_output>>>
fork09      0  TINFO  :  OPEN_MAX is 1024
fork09      0  TINFO  :  first file descriptor is 5 
fork09      0  TINFO  :  Parent reporting 1023 files open
fork09      0  TINFO  :  Child opened new file #1023
fork09      0  TINFO  :  OPEN_MAX is 1024
fork09      0  TINFO  :  first file descriptor is 5 
fork09      0  TINFO  :  Parent reporting 1023 files open
fork09      1  TPASS  :  test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fork10 stime=1372195639
cmdline="fork10"
contacts=""
analysis=exit
<<<test_output>>>
fork10      0  TINFO  :  fork child A
fork10      1  TPASS  :  test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork11 stime=1372195639
cmdline="fork11"
contacts=""
analysis=exit
<<<test_output>>>
fork11      1  TPASS  :  fork test passed, 100 processes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork13 stime=1372195639
cmdline="fork13 -i 1000000"
contacts=""
analysis=exit
<<<test_output>>>
fork13      1  TPASS  :  1000000 pids forked, all passed
<<<execution_status>>>
initiation_status="ok"
duration=201 termination_type=exited termination_id=0 corefile=no
cutime=3568 cstime=16179
<<<test_end>>>
<<<test_start>>>
tag=fpathconf01 stime=1372195840
cmdline="fpathconf01"
contacts=""
analysis=exit
<<<test_output>>>
fpathconf01    1  TPASS  :  fpathconf(fd, _PC_MAX_CANON) returned 255
fpathconf01    2  TPASS  :  fpathconf(fd, _PC_MAX_INPUT) returned 255
fpathconf01    3  TPASS  :  fpathconf(fd, _PC_VDISABLE) returned 0
fpathconf01    4  TPASS  :  fpathconf(fd, _PC_LINK_MAX) returned 65000
fpathconf01    5  TPASS  :  fpathconf(fd, _PC_NAME_MAX) returned 255
fpathconf01    6  TPASS  :  fpathconf(fd, _PC_PATH_MAX) returned 4096
fpathconf01    7  TPASS  :  fpathconf(fd, _PC_PIPE_BUF) returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat01 stime=1372195840
cmdline="fstat01"
contacts=""
analysis=exit
<<<test_output>>>
fstat01     1  TPASS  :  fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat01_64 stime=1372195840
cmdline="fstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat01     1  TPASS  :  fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat02 stime=1372195840
cmdline="fstat02"
contacts=""
analysis=exit
<<<test_output>>>
fstat02     1  TPASS  :  functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat02_64 stime=1372195840
cmdline="fstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat02     1  TPASS  :  functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03 stime=1372195840
cmdline="fstat03"
contacts=""
analysis=exit
<<<test_output>>>
fstat03     1  TPASS  :  fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03_64 stime=1372195840
cmdline="fstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat03     1  TPASS  :  fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat04 stime=1372195840
cmdline="fstat04"
contacts=""
analysis=exit
<<<test_output>>>
fstat04     1  TPASS  :  fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat04_64 stime=1372195840
cmdline="fstat04_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat04     1  TPASS  :  fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat05 stime=1372195840
cmdline="fstat05"
contacts=""
analysis=exit
<<<test_output>>>
fstat05     1  TPASS  :  fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat05_64 stime=1372195840
cmdline="fstat05_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat05     1  TPASS  :  fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01 stime=1372195840
cmdline="fstatat01"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01    1  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01    2  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01    3  TPASS  :  fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01    4  TPASS  :  fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01    5  TPASS  :  fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01    6  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01_64 stime=1372195840
cmdline="fstatat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01    1  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01    2  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01    3  TPASS  :  fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01    4  TPASS  :  fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01    5  TPASS  :  fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01    6  TPASS  :  fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01 stime=1372195840
cmdline="fstatfs01"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01    1  TPASS  :  fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01_64 stime=1372195840
cmdline="fstatfs01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01    1  TPASS  :  fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02 stime=1372195840
cmdline="fstatfs02"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02    1  TPASS  :  expected failure - errno = 9 : Bad file descriptor
fstatfs02    2  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02_64 stime=1372195840
cmdline="fstatfs02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02    1  TPASS  :  expected failure - errno = 9 : Bad file descriptor
fstatfs02    2  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fsync01 stime=1372195840
cmdline="fsync01"
contacts=""
analysis=exit
<<<test_output>>>
fsync01     1  TPASS  :  fsync returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fsync02 stime=1372195840
cmdline="fsync02"
contacts=""
analysis=exit
<<<test_output>>>
fsync02     1  TPASS  :  fsync succeeded in an acceptable amount of time
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fsync03 stime=1372195842
cmdline="fsync03"
contacts=""
analysis=exit
<<<test_output>>>
fsync03     1  TPASS  :  expected failure - errno = 9 : Bad file descriptor
fsync03     2  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01 stime=1372195842
cmdline="ftruncate01"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01    1  TPASS  :  Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01_64 stime=1372195842
cmdline="ftruncate01_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01_64    1  TPASS  :  Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02 stime=1372195842
cmdline="ftruncate02"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02    1  TPASS  :  Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02_64 stime=1372195842
cmdline="ftruncate02_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02_64    1  TPASS  :  Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03 stime=1372195842
cmdline="ftruncate03"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03    1  TPASS  :  Test Passed
ftruncate03    2  TPASS  :  Test Passed
ftruncate03    3  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03_64 stime=1372195842
cmdline="ftruncate03_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03_64    1  TPASS  :  Test Passed
ftruncate03_64    2  TPASS  :  Test Passed
ftruncate03_64    3  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04 stime=1372195842
cmdline="ftruncate04.sh"
contacts=""
analysis=exit
<<<test_output>>>
DEV:         /dev/loop0
MOUNT_POINT: /
FLAG:        rw,relatime,errors=remount-ro,data=ordered
ftruncate04    1  TPASS  :  Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=12
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04_64 stime=1372195842
cmdline="ftruncate04.sh 64"
contacts=""
analysis=exit
<<<test_output>>>
DEV:         /dev/loop0
MOUNT_POINT: /
FLAG:        rw,relatime,errors=remount-ro,data=ordered
ftruncate04_64    1  TPASS  :  Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=futimesat01 stime=1372195843
cmdline="futimesat01"
contacts=""
analysis=exit
<<<test_output>>>
futimesat01    1  TPASS  :  futimesat() returned the expected  errno 0: Success
futimesat01    2  TPASS  :  futimesat() returned the expected  errno 0: Success
futimesat01    3  TPASS  :  futimesat() returned the expected  errno 20: Not a directory
futimesat01    4  TPASS  :  futimesat() returned the expected  errno 9: Bad file descriptor
futimesat01    5  TPASS  :  futimesat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcontext01 stime=1372195843
cmdline="getcontext01"
contacts=""
analysis=exit
<<<test_output>>>
getcontext01    1  TPASS  :  getcontext passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcpu01 stime=1372195843
cmdline="getcpu01"
contacts=""
analysis=exit
<<<test_output>>>
getcpu01    1  TPASS  :  getcpu() returned proper cpuid:3, node id:0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd01 stime=1372195843
cmdline="getcwd01"
contacts=""
analysis=exit
<<<test_output>>>
getcwd01    0  TINFO  :  Test for EFAULT
getcwd01    1  TPASS  :  Test case 1 PASSED
getcwd01    0  TINFO  :  Test for ENOMEM
getcwd01    2  TPASS  :  Test case 2 PASSED
getcwd01    0  TINFO  :  Test for EINVAL
getcwd01    3  TPASS  :  Test case 3 PASSED
getcwd01    0  TINFO  :  Test for ERANGE
getcwd01    4  TPASS  :  Test case 4 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getcwd02 stime=1372195843
cmdline="getcwd02"
contacts=""
analysis=exit
<<<test_output>>>
getcwd02    0  TINFO  :  Enter Block 1
getcwd02    0  TINFO  :  Exit Block 1
getcwd02    1  TPASS  :  Block 1 PASSED
getcwd02    0  TINFO  :  Enter Block 2
getcwd02    0  TINFO  :  Exit Block 2
getcwd02    2  TPASS  :  Block 2 PASSED
getcwd02    0  TINFO  :  Enter Block 3
getcwd02    0  TINFO  :  Exit Block 3
getcwd02    3  TPASS  :  Block 3 PASSED
getcwd02    0  TINFO  :  Enter Block 4
getcwd02    0  TINFO  :  Exit Block 4
getcwd02    4  TPASS  :  Block 4 PASSED
getcwd02    0  TINFO  :  Enter Block 5
getcwd02    0  TINFO  :  Exit Block 5
getcwd02    5  TPASS  :  Block 5 PASSED
getcwd02    0  TINFO  :  Enter Block 6
getcwd02    0  TINFO  :  Exit Block 6
getcwd02    6  TPASS  :  Block 6 PASSED
getcwd02    0  TINFO  :  Enter Block 7
getcwd02    0  TINFO  :  Exit Block 7
getcwd02    7  TPASS  :  Block 7 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd03 stime=1372195843
cmdline="getcwd03"
contacts=""
analysis=exit
<<<test_output>>>
getcwd03    0  TINFO  :  getcwd(2) succeeded in returning correct path for dir1
getcwd03    0  TINFO  :  getcwd(2) succeeded in returning correct path for symbolic link dir2 -> dir1
getcwd03    1  TPASS  :  Test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01 stime=1372195843
cmdline="getdents01"
contacts=""
analysis=exit
<<<test_output>>>
getdents01    0  TINFO  :  Found 'symlink'
getdents01    0  TINFO  :  Found 'file'
getdents01    0  TINFO  :  Found '.'
getdents01    0  TINFO  :  Found 'dir'
getdents01    0  TINFO  :  Found '..'
getdents01    1  TPASS  :  All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02 stime=1372195843
cmdline="getdents02"
contacts=""
analysis=exit
<<<test_output>>>
getdents02    1  TPASS  :  failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getdents03 stime=1372195843
cmdline="getdents03"
contacts=""
analysis=exit
<<<test_output>>>
getdents03    1  TPASS  :  getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04 stime=1372195843
cmdline="getdents04"
contacts=""
analysis=exit
<<<test_output>>>
getdents04    1  TPASS  :  getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01_64 stime=1372195843
cmdline="getdents01 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents01    0  TINFO  :  Found 'symlink'
getdents01    0  TINFO  :  Found 'file'
getdents01    0  TINFO  :  Found '.'
getdents01    0  TINFO  :  Found 'dir'
getdents01    0  TINFO  :  Found '..'
getdents01    1  TPASS  :  All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02_64 stime=1372195843
cmdline="getdents02 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents02    1  TPASS  :  failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents03_64 stime=1372195843
cmdline="getdents03 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents03    1  TPASS  :  getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04_64 stime=1372195843
cmdline="getdents04 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents04    1  TPASS  :  getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdomainname01 stime=1372195843
cmdline="getdomainname01"
contacts=""
analysis=exit
<<<test_output>>>
getdomainname01    1  TPASS  :  getdomainname() returned 0 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdtablesize01 stime=1372195843
cmdline="getdtablesize01"
contacts=""
analysis=exit
<<<test_output>>>
getdtablesize01    0  TINFO  :  Maximum number of files a process can have opened is 1024
getdtablesize01    0  TINFO  :  Checking with the value returned by getrlimit...RLIMIT_NOFILE
getdtablesize01    1  TPASS  :  got correct dtablesize, value is 1024
getdtablesize01    0  TINFO  :  Checking Max num of files that can be opened by a process.Should be: RLIMIT_NOFILE - 1
getdtablesize01    2  TPASS  :  1023 = 1023
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=getegid01 stime=1372195843
cmdline="getegid01"
contacts=""
analysis=exit
<<<test_output>>>
getegid01    1  TPASS  :  getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid01_16 stime=1372195843
cmdline="getegid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid01_16    1  TPASS  :  getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid02 stime=1372195843
cmdline="getegid02"
contacts=""
analysis=exit
<<<test_output>>>
getegid02    1  TPASS  :  effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid02_16 stime=1372195843
cmdline="getegid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid02_16    1  TPASS  :  effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01 stime=1372195843
cmdline="geteuid01"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01    1  TPASS  :  geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01_16 stime=1372195843
cmdline="geteuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01_16    1  TPASS  :  geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01 stime=1372195843
cmdline="getgid01"
contacts=""
analysis=exit
<<<test_output>>>
getgid01    1  TPASS  :  getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01_16 stime=1372195843
cmdline="getgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid01_16    1  TPASS  :  getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid03 stime=1372195843
cmdline="getgid03"
contacts=""
analysis=exit
<<<test_output>>>
getgid03    1  TPASS  :  group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getgid03_16 stime=1372195843
cmdline="getgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid03_16    1  TPASS  :  group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups01 stime=1372195843
cmdline="getgroups01"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01    1  TPASS  :  getgroups failed as expected with EINVAL
getgroups01    2  TPASS  :  getgroups did not modify the gidset array
getgroups01    3  TCONF  :  getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01    4  TPASS  :  getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups01_16 stime=1372195843
cmdline="getgroups01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01    1  TPASS  :  getgroups failed as expected with EINVAL
getgroups01    2  TPASS  :  getgroups did not modify the gidset array
getgroups01    3  TCONF  :  getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01    4  TPASS  :  getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03 stime=1372195843
cmdline="getgroups03"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03    1  TPASS  :  getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03_16 stime=1372195843
cmdline="getgroups03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03    1  TPASS  :  getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=gethostid01 stime=1372195843
cmdline="gethostid01"
contacts=""
analysis=exit
<<<test_output>>>
gethostid01    1  TPASS  :  Hostid command and gethostid both report hostid is 007f0101
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gethostname01 stime=1372195843
cmdline="gethostname01"
contacts=""
analysis=exit
<<<test_output>>>
gethostname01    1  TPASS  :  gethostname returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer01 stime=1372195843
cmdline="getitimer01"
contacts=""
analysis=exit
<<<test_output>>>
getitimer01    1  TPASS  :  functionality is ok
getitimer01    2  TPASS  :  functionality is ok
getitimer01    3  TPASS  :  functionality is ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer02 stime=1372195843
cmdline="getitimer02"
contacts=""
analysis=exit
<<<test_output>>>
getitimer02    1  TPASS  :  expected failure - errno = 14 - Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer03 stime=1372195843
cmdline="getitimer03"
contacts=""
analysis=exit
<<<test_output>>>
getitimer03    1  TPASS  :  expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpagesize01 stime=1372195843
cmdline="getpagesize01"
contacts=""
analysis=exit
<<<test_output>>>
getpagesize01    0  TINFO  :  Page Size is 4096
getpagesize01    1  TPASS  :  getpagesize - Page size returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpeername01 stime=1372195843
cmdline="getpeername01"
contacts=""
analysis=exit
<<<test_output>>>
getpeername01    1  TPASS  :  bad file descriptor successful
getpeername01    2  TPASS  :  bad file descriptor successful
getpeername01    3  TPASS  :  invalid salen successful
getpeername01    4  TPASS  :  invalid socket buffer successful
getpeername01    5  TPASS  :  invalid aligned salen successful
getpeername01    6  TPASS  :  invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getpgid01 stime=1372195843
cmdline="getpgid01"
contacts=""
analysis=exit
<<<test_output>>>
getpgid01    0  TINFO  :  Enter block 1
getpgid01    1  TPASS  :  Test block 1: getpgid(0) PASSED
getpgid01    0  TINFO  :  Exit block 1
getpgid01    0  TINFO  :  Enter block 2
getpgid01    2  TPASS  :  Test block 2: getpgid(getpid()) PASSED
getpgid01    0  TINFO  :  Exit block 2
getpgid01    0  TINFO  :  Enter block 3
getpgid01    3  TPASS  :  Test block 3: getpgid(getppid()) PASSED
getpgid01    0  TINFO  :  Exit block 3
getpgid01    0  TINFO  :  Enter block 4
getpgid01    4  TPASS  :  Test block 4: getpgid(1) PASSED
getpgid01    0  TINFO  :  Exit block 4
getpgid01    0  TINFO  :  Enter block 5
getpgid01    5  TPASS  :  Test block 5: getpgid(1) PASSED
getpgid01    0  TINFO  :  Exit block 5
getpgid01    0  TINFO  :  getpgid01 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgid02 stime=1372195843
cmdline="getpgid02"
contacts=""
analysis=exit
<<<test_output>>>
getpgid02    1  TPASS  :  expected failure - errno = 3 : No such process
getpgid02    2  TPASS  :  expected failure - errno = 3 : No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgrp01 stime=1372195843
cmdline="getpgrp01"
contacts=""
analysis=exit
<<<test_output>>>
getpgrp01    1  TPASS  :  getpgrp returned 12208
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid01 stime=1372195843
cmdline="getpid01"
contacts=""
analysis=exit
<<<test_output>>>
getpid01    1  TPASS  :  getpid returned 12209
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid02 stime=1372195843
cmdline="getpid02"
contacts=""
analysis=exit
<<<test_output>>>
getpid02    1  TPASS  :  getpid functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getppid01 stime=1372195843
cmdline="getppid01"
contacts=""
analysis=exit
<<<test_output>>>
getppid01    1  TPASS  :  getppid returned 24331
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getppid02 stime=1372195843
cmdline="getppid02"
contacts=""
analysis=exit
<<<test_output>>>
return value and parent's pid value match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority01 stime=1372195843
cmdline="getpriority01"
contacts=""
analysis=exit
<<<test_output>>>
getpriority01    1  TPASS  :  getpriority(0, 0) returned 0 priority value
getpriority01    2  TPASS  :  getpriority(1, 0) returned 0 priority value
getpriority01    3  TPASS  :  getpriority(2, 0) returned -20 priority value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority02 stime=1372195843
cmdline="getpriority02"
contacts=""
analysis=exit
<<<test_output>>>
getpriority02    1  TPASS  :  getpriority(2) fails, Invalid 'which' value specified, errno:22
getpriority02    2  TPASS  :  getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02    3  TPASS  :  getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02    4  TPASS  :  getpriority(2) fails, Invalid 'who' value specified, errno:3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getresgid01 stime=1372195843
cmdline="getresgid01"
contacts=""
analysis=exit
<<<test_output>>>
getresgid01    1  TPASS  :  Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid02 stime=1372195843
cmdline="getresgid02"
contacts=""
analysis=exit
<<<test_output>>>
getresgid02    1  TPASS  :  Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid03 stime=1372195843
cmdline="getresgid03"
contacts=""
analysis=exit
<<<test_output>>>
getresgid03    1  TPASS  :  Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid01 stime=1372195843
cmdline="getresuid01"
contacts=""
analysis=exit
<<<test_output>>>
getresuid01    1  TPASS  :  Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid02 stime=1372195843
cmdline="getresuid02"
contacts=""
analysis=exit
<<<test_output>>>
getresuid02    1  TPASS  :  Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid03 stime=1372195843
cmdline="getresuid03"
contacts=""
analysis=exit
<<<test_output>>>
getresuid03    1  TPASS  :  Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit01 stime=1372195843
cmdline="getrlimit01"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit01    1  TPASS  :  getrlimit() returned 0; got RLIMIT_CPU values 
getrlimit01    2  TPASS  :  getrlimit() returned 0; got RLIMIT_FSIZE values 
getrlimit01    3  TPASS  :  getrlimit() returned 0; got RLIMIT_DATA values 
getrlimit01    4  TPASS  :  getrlimit() returned 0; got RLIMIT_STACK values 
getrlimit01    5  TPASS  :  getrlimit() returned 0; got RLIMIT_CORE values 
getrlimit01    6  TPASS  :  getrlimit() returned 0; got RLIMIT_RSS values 
getrlimit01    7  TPASS  :  getrlimit() returned 0; got RLIMIT_NPROC values 
getrlimit01    8  TPASS  :  getrlimit() returned 0; got RLIMIT_NOFILE values 
getrlimit01    9  TPASS  :  getrlimit() returned 0; got RLIMIT_MEMLOCK values 
getrlimit01   10  TPASS  :  getrlimit() returned 0; got RLIMIT_AS values 
getrlimit01   11  TPASS  :  getrlimit() returned 0; got RLIMIT_LOCKS values 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit02 stime=1372195843
cmdline="getrlimit02"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit02    1  TPASS  :  expected failure; got EFAULT
getrlimit02    2  TPASS  :  expected failure; got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=get_mempolicy01 stime=1372195843
cmdline="get_mempolicy01"
contacts=""
analysis=exit
<<<test_output>>>
get_mempolicy01    1  TCONF  :  System doesn't have required numa support
get_mempolicy01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=get_robust_list01 stime=1372195843
cmdline="get_robust_list01"
contacts=""
analysis=exit
<<<test_output>>>
get_robust_list01    1  TPASS  :  get_robust_list failed as expected with EFAULT
get_robust_list01    2  TPASS  :  get_robust_list failed as expected with EFAULT
get_robust_list01    3  TPASS  :  get_robust_list failed as expected with ESRCH
get_robust_list01    4  TPASS  :  get_robust_list succeeded
get_robust_list01    5  TPASS  :  get_robust_list failed as expected with EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage01 stime=1372195843
cmdline="getrusage01"
contacts=""
analysis=exit
<<<test_output>>>
getrusage01    1  TPASS  :  getrusage passed
getrusage01    2  TPASS  :  getrusage passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage02 stime=1372195843
cmdline="getrusage02"
contacts=""
analysis=exit
<<<test_output>>>
getrusage02    1  TPASS  :  getrusage failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
getrusage02    2  TPASS  :  getrusage failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage03 stime=1372195843
cmdline="getrusage03"
contacts=""
analysis=exit
<<<test_output>>>
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    0  TINFO  :  child.self = 102532
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    1  TPASS  :  initial.self ~= child.self
getrusage03    0  TINFO  :  Testcase #02: fork inherit(cont.)
getrusage03    0  TINFO  :  initial.children = 102708
getrusage03    2  TPASS  :  initial.children ~= 100MB
getrusage03    0  TINFO  :  child.children = 0
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    1  TPASS  :  initial.self ~= child.self
getrusage03    0  TINFO  :  Testcase #02: fork inherit(cont.)
getrusage03    0  TINFO  :  initial.children = 102708
getrusage03    2  TPASS  :  initial.children ~= 100MB
getrusage03    3  TPASS  :  child.children == 0
getrusage03    0  TINFO  :  Testcase #03: fork + malloc
getrusage03    0  TINFO  :  initial.self = 103008
getrusage03    0  TINFO  :  child allocate +50MB
getrusage03    0  TINFO  :  child.self = 153856
getrusage03_child    0  TINFO  :  grandchild allocate 300MB
getrusage03_child    0  TINFO  :  grandchild allocate 300MB
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    1  TPASS  :  initial.self ~= child.self
getrusage03    0  TINFO  :  Testcase #02: fork inherit(cont.)
getrusage03    0  TINFO  :  initial.children = 102708
getrusage03    2  TPASS  :  initial.children ~= 100MB
getrusage03    3  TPASS  :  child.children == 0
getrusage03    0  TINFO  :  Testcase #03: fork + malloc
getrusage03    0  TINFO  :  initial.self = 103008
getrusage03    4  TPASS  :  initial.self + 50MB ~= child.self
getrusage03    0  TINFO  :  Testcase #04: grandchild maxrss
getrusage03    0  TINFO  :  initial.children = 153932
getrusage03_child    0  TINFO  :  child allocate 400MB
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    1  TPASS  :  initial.self ~= child.self
getrusage03    0  TINFO  :  Testcase #02: fork inherit(cont.)
getrusage03    0  TINFO  :  initial.children = 102708
getrusage03    2  TPASS  :  initial.children ~= 100MB
getrusage03    3  TPASS  :  child.children == 0
getrusage03    0  TINFO  :  Testcase #03: fork + malloc
getrusage03    0  TINFO  :  initial.self = 103008
getrusage03    4  TPASS  :  initial.self + 50MB ~= child.self
getrusage03    0  TINFO  :  Testcase #04: grandchild maxrss
getrusage03    0  TINFO  :  initial.children = 153932
getrusage03    0  TINFO  :  post_wait.children = 307472
getrusage03    5  TPASS  :  child.children ~= 300MB
getrusage03    0  TINFO  :  Testcase #05: zombie
getrusage03    0  TINFO  :  initial.children = 307472
getrusage03_child    0  TINFO  :  child allocate 500MB
getrusage03    0  TINFO  :  allocate 100MB
getrusage03    0  TINFO  :  Testcase #01: fork inherit
getrusage03    0  TINFO  :  initial.self = 103004
getrusage03    1  TPASS  :  initial.self ~= child.self
getrusage03    0  TINFO  :  Testcase #02: fork inherit(cont.)
getrusage03    0  TINFO  :  initial.children = 102708
getrusage03    2  TPASS  :  initial.children ~= 100MB
getrusage03    3  TPASS  :  child.children == 0
getrusage03    0  TINFO  :  Testcase #03: fork + malloc
getrusage03    0  TINFO  :  initial.self = 103008
getrusage03    4  TPASS  :  initial.self + 50MB ~= child.self
getrusage03    0  TINFO  :  Testcase #04: grandchild maxrss
getrusage03    0  TINFO  :  initial.children = 153932
getrusage03    0  TINFO  :  post_wait.children = 307472
getrusage03    5  TPASS  :  child.children ~= 300MB
getrusage03    0  TINFO  :  Testcase #05: zombie
getrusage03    0  TINFO  :  initial.children = 307472
getrusage03    0  TINFO  :  pre_wait.children = 307472
getrusage03    6  TPASS  :  initial.children ~= pre_wait.children
getrusage03    0  TINFO  :  post_wait.children = 410220
getrusage03    7  TPASS  :  post_wait.children ~= 400MB
getrusage03    0  TINFO  :  Testcase #06: SIG_IGN
getrusage03    0  TINFO  :  initial.children = 410220
getrusage03_child    0  TINFO  :  exec.self = 103028, exec.children = 410220
getrusage03_child    1  TPASS  :  initial.self ~= exec.self
getrusage03_child    2  TPASS  :  initial.children ~= exec.children
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=32 cstime=43
<<<test_end>>>
<<<test_start>>>
tag=getrusage04 stime=1372195845
cmdline="getrusage04"
contacts=""
analysis=exit
<<<test_output>>>
getrusage04    0  TINFO  :  Expected timers granularity is 4000 us
getrusage04    0  TINFO  :  Using 1 as multiply factor for max [us]time increment (1000+4000us)!
getrusage04    0  TINFO  :  utime:         450us; stime:        1275us
getrusage04    0  TINFO  :  utime:         453us; stime:        1275us
getrusage04    0  TINFO  :  utime:         454us; stime:        1276us
getrusage04    0  TINFO  :  utime:         456us; stime:        1276us
getrusage04    0  TINFO  :  utime:         457us; stime:        1277us
getrusage04    0  TINFO  :  utime:         458us; stime:        1277us
getrusage04    0  TINFO  :  utime:         460us; stime:        1277us
getrusage04    0  TINFO  :  utime:         461us; stime:        1278us
getrusage04    0  TINFO  :  utime:         463us; stime:        1278us
getrusage04    0  TINFO  :  utime:         464us; stime:        1278us
getrusage04    0  TINFO  :  utime:         466us; stime:        1279us
getrusage04    0  TINFO  :  utime:         467us; stime:        1279us
getrusage04    0  TINFO  :  utime:         468us; stime:        1279us
getrusage04    0  TINFO  :  utime:         470us; stime:        1280us
getrusage04    0  TINFO  :  utime:         471us; stime:        1280us
getrusage04    0  TINFO  :  utime:         473us; stime:        1281us
getrusage04    0  TINFO  :  utime:         474us; stime:        1281us
getrusage04    0  TINFO  :  utime:         475us; stime:        1281us
getrusage04    0  TINFO  :  utime:         477us; stime:        1282us
getrusage04    0  TINFO  :  utime:         478us; stime:        1282us
getrusage04    0  TINFO  :  utime:         480us; stime:        1282us
getrusage04    1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid01 stime=1372195845
cmdline="getsid01"
contacts=""
analysis=exit
<<<test_output>>>
getsid01    1  TPASS  :  session ID is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid02 stime=1372195845
cmdline="getsid02"
contacts=""
analysis=exit
<<<test_output>>>
getsid02    1  TPASS  :  expected failure - errno = 3 - No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsockname01 stime=1372195845
cmdline="getsockname01"
contacts=""
analysis=exit
<<<test_output>>>
getsockname01    1  TPASS  :  bad file descriptor successful
getsockname01    2  TPASS  :  bad file descriptor successful
getsockname01    3  TPASS  :  invalid socket buffer successful
getsockname01    4  TPASS  :  invalid aligned salen successful
getsockname01    5  TPASS  :  invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getsockopt01 stime=1372195845
cmdline="getsockopt01"
contacts=""
analysis=exit
<<<test_output>>>
getsockopt01    1  TPASS  :  bad file descriptor successful
getsockopt01    2  TPASS  :  bad file descriptor successful
getsockopt01    3  TPASS  :  invalid option buffer successful
getsockopt01    4  TPASS  :  invalid optlen successful
getsockopt01    5  TPASS  :  invalid level successful
getsockopt01    6  TPASS  :  invalid option name successful
getsockopt01    7  TPASS  :  invalid option name (UDP) successful
getsockopt01    8  TPASS  :  invalid option name (IP) successful
getsockopt01    9  TPASS  :  invalid option name (TCP) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettid01 stime=1372195845
cmdline="gettid01"
contacts=""
analysis=exit
<<<test_output>>>
gettid01    1  TPASS  :  gettid() returned 12249
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday01 stime=1372195845
cmdline="gettimeofday01"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday01    1  TPASS  :  gettimeofday(2) set the errno EFAULT correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday02 stime=1372195845
cmdline="gettimeofday02"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday02    0  TINFO  :  checking if gettimeofday is monotonous, takes 30s
gettimeofday02    1  TPASS  :  gettimeofday monotonous in 30 seconds
<<<execution_status>>>
initiation_status="ok"
duration=30 termination_type=exited termination_id=0 corefile=no
cutime=587 cstime=2410
<<<test_end>>>
<<<test_start>>>
tag=getuid01 stime=1372195875
cmdline="getuid01"
contacts=""
analysis=exit
<<<test_output>>>
getuid01    1  TPASS  :  getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid01_16 stime=1372195875
cmdline="getuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid01_16    1  TPASS  :  getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02 stime=1372195876
cmdline="getuid02"
contacts=""
analysis=exit
<<<test_output>>>
getuid02    1  TPASS  :  values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02_16 stime=1372195876
cmdline="getuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid02_16    1  TPASS  :  values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03 stime=1372195876
cmdline="getuid03"
contacts=""
analysis=exit
<<<test_output>>>
getuid03    1  TPASS  :  values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03_16 stime=1372195876
cmdline="getuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid03_16    1  TPASS  :  values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr01 stime=1372195876
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
getxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=???(0): Success
getxattr01    4  TPASS  :  Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1372195876
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
getxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
getxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
getxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1372195876
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03    1  TPASS  :  getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioctl01_02 stime=1372195876
cmdline="  test_ioctl"
contacts=""
analysis=exit
<<<test_output>>>
ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty0
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty0

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty1
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty1

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty10
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty10

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty11
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty11

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty12
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty12

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty13
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty13

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty14
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty14

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty15
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty15

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty16
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty16

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty17
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty17

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty18
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty18

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty19
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty19

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty2
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty2

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty20
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty20

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty21
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty21

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty22
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty22

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty23
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty23

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty24
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty24

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty25
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty25

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty26
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty26

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty27
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty27

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty28
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty28

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty29
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty29

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty3
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty3

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty30
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty30

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty31
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty31

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty32
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty32

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty33
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty33

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty34
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty34

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty35
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty35

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty36
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty36

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty37
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty37

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty38
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty38

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty39
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty39

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty4
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty4

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty40
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty40

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty41
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty41

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty42
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty42

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty43
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty43

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty44
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty44

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty45
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty45

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty46
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty46

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty47
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty47

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty48
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty48

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty49
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty49

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty5
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty5

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty50
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty50

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty51
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty51

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty52
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty52

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty53
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty53

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty54
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty54

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty55
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty55

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty56
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty56

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty57
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty57

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty58
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty58

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty59
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty59

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty6
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty6

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty60
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty60

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty61
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty61

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty62
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty62

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty63
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty63

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty7
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty7

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty8
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty8

ioctl01_02    0  TINFO  :  Testing ioctl01 with /dev/tty9
ioctl01     1  TPASS  :  failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01     2  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01     3  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     4  TPASS  :  failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01     5  TPASS  :  failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02    1  TPASS  :  ioctl01 Passed with /dev/tty9

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty0
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty0

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty1
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty1

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty10
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty10

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty11
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty11

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty12
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty12

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty13
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty13

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty14
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty14

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty15
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty15

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty16
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty16

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty17
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty17

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty18
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty18

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty19
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty19

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty2
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty2

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty20
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty20

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty21
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty21

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty22
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty22

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty23
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty23

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty24
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty24

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty25
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty25

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty26
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty26

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty27
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty27

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty28
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty28

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty29
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty29

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty3
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty3

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty30
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty30

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty31
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty31

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty32
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty32

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty33
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty33

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty34
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty34

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty35
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty35

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty36
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty36

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty37
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty37

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty38
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty38

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty39
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty39

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty4
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty4

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty40
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty40

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty41
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty41

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty42
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty42

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty43
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty43

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty44
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty44

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty45
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty45

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty46
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty46

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty47
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty47

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty48
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty48

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty49
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty49

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty5
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty5

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty50
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty50

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty51
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty51

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty52
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty52

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty53
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty53

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty54
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty54

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty55
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty55

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty56
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty56

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty57
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty57

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty58
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty58

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty59
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty59

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty6
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty6

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty60
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty60

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty61
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty61

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty62
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty62

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty63
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty63

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty7
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty7

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty8
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty8

ioctl01_02    0  TINFO  :  Testing ioctl02 with /dev/tty9
ioctl02     0  TINFO  :  termio values are set as expected
ioctl02     1  TPASS  :  TCGETA/TCSETA tests SUCCEEDED
ioctl01_02    1  TPASS  :  ioctl02 Passed with /dev/tty9

<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=19 cstime=45
<<<test_end>>>
<<<test_start>>>
tag=ioctl03 stime=1372195876
cmdline="     ioctl03"
contacts=""
analysis=exit
<<<test_output>>>
ioctl03     0  TINFO  :  Available features are: 0x7103
ioctl03     0  TINFO  :  TUN 0x1
ioctl03     0  TINFO  :  TAP 0x2
ioctl03     0  TINFO  :  NO_PI 0x1000
ioctl03     0  TINFO  :  ONE_QUEUE 0x2000
ioctl03     0  TINFO  :  VNET_HDR 0x4000
ioctl03     0  TINFO  :  MULTI_QUEUE 0x100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_01 stime=1372195876
cmdline="inotify_init1_01"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_01    1  TPASS  :  inotify_init1(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_02 stime=1372195876
cmdline="inotify_init1_02"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_02    1  TPASS  :  inotify_init1(IN_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify01 stime=1372195876
cmdline="inotify01"
contacts=""
analysis=exit
<<<test_output>>>
inotify01    1  TPASS  :  get event: wd=1 mask=4 cookie=0 len=0
inotify01    2  TPASS  :  get event: wd=1 mask=20 cookie=0 len=0
inotify01    3  TPASS  :  get event: wd=1 mask=1 cookie=0 len=0
inotify01    4  TPASS  :  get event: wd=1 mask=10 cookie=0 len=0
inotify01    5  TPASS  :  get event: wd=1 mask=20 cookie=0 len=0
inotify01    6  TPASS  :  get event: wd=1 mask=2 cookie=0 len=0
inotify01    7  TPASS  :  get event: wd=1 mask=8 cookie=0 len=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=inotify02 stime=1372195876
cmdline="inotify02"
contacts=""
analysis=exit
<<<test_output>>>
inotify02    1  TPASS  :  get event: wd=1 mask=40000004 cookie=0 len=0 name=""
inotify02    2  TPASS  :  get event: wd=1 mask=100 cookie=0 len=16 name="test_file1"
inotify02    3  TPASS  :  get event: wd=1 mask=20 cookie=0 len=16 name="test_file1"
inotify02    4  TPASS  :  get event: wd=1 mask=8 cookie=0 len=16 name="test_file1"
inotify02    5  TPASS  :  get event: wd=1 mask=40 cookie=5185 len=16 name="test_file1"
inotify02    6  TPASS  :  get event: wd=1 mask=80 cookie=5185 len=16 name="test_file2"
inotify02    7  TPASS  :  get event: wd=1 mask=800 cookie=0 len=0 name=""
inotify02    8  TPASS  :  get event: wd=1 mask=200 cookie=0 len=16 name="test_file2"
inotify02    9  TPASS  :  get event: wd=1 mask=800 cookie=0 len=0 name=""
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify03 stime=1372195876
cmdline="inotify03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
inotify03    0  TINFO  :  mount /dev/loop1 to mnt_12846 fstype=ext4
inotify03    0  TINFO  :  umount /dev/loop1
inotify03    1  TBROK  :  umount(2) Failed while unmounting errno = 16 : Device or resource busy
inotify03    2  TBROK  :  Remaining cases broken
inotify03    0  TWARN  :  umount(mnt_12846) failed: TEST_ERRNO=EBUSY(16): Device or resource busy
inotify03    0  TWARN  :  tst_rmdir: rmobj(/tmp/ltp-LbqYZRF5cO/inoeV99AP) failed: remove(/tmp/ltp-LbqYZRF5cO/inoeV99AP/mnt_12846) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify04 stime=1372195876
cmdline="inotify04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm01 stime=1372195876
cmdline="ioperm01"
contacts=""
analysis=exit
<<<test_output>>>
ioperm01    1  TPASS  :  ioperm() passed for port address 1021, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm02 stime=1372195876
cmdline="ioperm02"
contacts=""
analysis=exit
<<<test_output>>>
ioperm02    1  TPASS  :  Expected failure for Invalid I/O address, errno: 22
ioperm02    2  TPASS  :  Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=iopl01 stime=1372195876
cmdline="iopl01"
contacts=""
analysis=exit
<<<test_output>>>
iopl01      1  TPASS  :  iopl() passed for level 0, returned 0
iopl01      2  TPASS  :  iopl() passed for level 1, returned 0
iopl01      3  TPASS  :  iopl() passed for level 2, returned 0
iopl01      4  TPASS  :  iopl() passed for level 3, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=iopl02 stime=1372195876
cmdline="iopl02"
contacts=""
analysis=exit
<<<test_output>>>
iopl02      1  TPASS  :  Expected failure for Invalid privilege level, errno: 22
iopl02      2  TPASS  :  Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_cancel01 stime=1372195876
cmdline="io_cancel01"
contacts=""
analysis=exit
<<<test_output>>>
io_cancel01    1  TPASS  :  expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_destroy01 stime=1372195876
cmdline="io_destroy01"
contacts=""
analysis=exit
<<<test_output>>>
io_destroy01    1  TPASS  :  expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_getevents01 stime=1372195876
cmdline="io_getevents01"
contacts=""
analysis=exit
<<<test_output>>>
io_getevents01    1  TPASS  :  expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_setup01 stime=1372195876
cmdline="io_setup01"
contacts=""
analysis=exit
<<<test_output>>>
io_setup01    1  TPASS  :  call succeeded expectedly
io_setup01    2  TPASS  :  expected failure - returned value = -22 : Invalid argument
io_setup01    3  TPASS  :  expected failure - returned value = -22 : Invalid argument
io_setup01    4  TPASS  :  expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_submit01 stime=1372195877
cmdline="io_submit01"
contacts=""
analysis=exit
<<<test_output>>>
io_submit01    1  TPASS  :  expected failure - returned value = -22 : Invalid argument
io_submit01    2  TPASS  :  expected failure - returned value = -22 : Invalid argument
io_submit01    3  TPASS  :  expected failure - returned value = -9 : Bad file descriptor
io_submit01    4  TPASS  :  expected failure - returned value = -14 : Bad address
io_submit01    5  TPASS  :  expected failure - returned value = -22 : Invalid argument
io_submit01    6  TPASS  :  expected failure - returned value = -9 : Bad file descriptor
io_submit01    7  TPASS  :  expected success - returned value = 0
io_submit01    8  TPASS  :  expected success - returned value = 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=keyctl01 stime=1372195877
cmdline="keyctl01"
contacts=""
analysis=exit
<<<test_output>>>
keyctl01    1  TCONF  :  keyctl syscall support not available on system
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill01 stime=1372195877
cmdline="kill01"
contacts=""
analysis=exit
<<<test_output>>>
kill01      1  TPASS  :  received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill02 stime=1372195877
cmdline="kill02"
contacts=""
analysis=exit
<<<test_output>>>
kill02      1  TPASS  :  The signal was sent to all processes in the process group.
kill02      2  TPASS  :  The signal was not sent to selective processes that were not in the process group.
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill03 stime=1372195887
cmdline="kill03"
contacts=""
analysis=exit
<<<test_output>>>
kill03      1  TPASS  :  errno set to 22 : Invalid argument, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill04 stime=1372195887
cmdline="kill04"
contacts=""
analysis=exit
<<<test_output>>>
kill04      1  TPASS  :  errno set to 3 : No such process, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill05 stime=1372195887
cmdline="kill05"
contacts=""
analysis=exit
<<<test_output>>>
kill failed with EPERM
kill05      1  TPASS  :  received expected errno(EPERM)
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill06 stime=1372195889
cmdline="kill06"
contacts=""
analysis=exit
<<<test_output>>>
kill06      1  TPASS  :  received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill07 stime=1372195889
cmdline="kill07"
contacts=""
analysis=exit
<<<test_output>>>
kill07      0  TINFO  :  received expected signal 9
kill07      1  TPASS  :  Did not catch signal as expected
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill08 stime=1372195890
cmdline="kill08"
contacts=""
analysis=exit
<<<test_output>>>
kill08      1  TPASS  :  received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill09 stime=1372195890
cmdline="kill09"
contacts=""
analysis=exit
<<<test_output>>>
kill09      1  TPASS  :  kill(12896, SIGKILL) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill10 stime=1372195890
cmdline="kill10"
contacts=""
analysis=exit
<<<test_output>>>
12898: All 10 children reported in
12899: All 10 children reported in
kill10      1  TPASS  :  All 2 pgrps received their signals
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill11 stime=1372195891
cmdline="ulimit -c 1024;kill11"
contacts=""
analysis=exit
<<<test_output>>>
kill11      1  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill12 stime=1372195892
cmdline="kill12"
contacts=""
analysis=exit
<<<test_output>>>
kill12      1  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lchown01 stime=1372195892
cmdline="lchown01"
contacts=""
analysis=exit
<<<test_output>>>
lchown01    1  TPASS  :  lchown() succeeds to Change Owner/Group ids of slink_file
lchown01    2  TPASS  :  lchown() succeeds to Change Owner id only of slink_file
lchown01    3  TPASS  :  lchown() succeeds to Change Owner/Group ids of slink_file
lchown01    4  TPASS  :  lchown() succeeds to Change Group id only of slink_file
lchown01    5  TPASS  :  lchown() succeeds to Change Group/Group ids of slink_file
lchown01    6  TPASS  :  lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown01_16 stime=1372195892
cmdline="lchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown01    1  TPASS  :  lchown() succeeds to Change Owner/Group ids of slink_file
lchown01    2  TPASS  :  lchown() succeeds to Change Owner id only of slink_file
lchown01    3  TPASS  :  lchown() succeeds to Change Owner/Group ids of slink_file
lchown01    4  TPASS  :  lchown() succeeds to Change Group id only of slink_file
lchown01    5  TPASS  :  lchown() succeeds to Change Group/Group ids of slink_file
lchown01    6  TPASS  :  lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown02 stime=1372195892
cmdline=" lchown02"
contacts=""
analysis=exit
<<<test_output>>>
lchown02    1  TPASS  :  lchown(2) fails, Process is not owner/root, errno:1
lchown02    2  TPASS  :  lchown(2) fails, Search permission denied, errno:13
lchown02    3  TPASS  :  lchown(2) fails, Address beyond address space, errno:14
lchown02    4  TPASS  :  lchown(2) fails, Unaccessible address space, errno:14
lchown02    5  TPASS  :  lchown(2) fails, Pathname too long, errno:36
lchown02    6  TPASS  :  lchown(2) fails, Path contains regular file, errno:20
lchown02    7  TPASS  :  lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown02_16 stime=1372195892
cmdline="lchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown02    1  TPASS  :  lchown(2) fails, Process is not owner/root, errno:1
lchown02    2  TPASS  :  lchown(2) fails, Search permission denied, errno:13
lchown02    3  TPASS  :  lchown(2) fails, Address beyond address space, errno:14
lchown02    4  TPASS  :  lchown(2) fails, Unaccessible address space, errno:14
lchown02    5  TPASS  :  lchown(2) fails, Pathname too long, errno:36
lchown02    6  TPASS  :  lchown(2) fails, Path contains regular file, errno:20
lchown02    7  TPASS  :  lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=link01 stime=1372195892
cmdline="symlink01 -T link01"
contacts=""
analysis=exit
<<<test_output>>>
link01      1  TPASS  :  link(2) to a symbolic link, which is pointing to an existing object file worked - file created and link count adjusted
link01      2  TPASS  :  link(2) to a symbolic link, which is pointing to a non-existing object file worked ok - file created and link count adjusted.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link02 stime=1372195892
cmdline="link02"
contacts=""
analysis=exit
<<<test_output>>>
link02      1  TPASS  :  link(tfile, lfile) returned 0 and link cnts match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link03 stime=1372195892
cmdline="link03"
contacts=""
analysis=exit
<<<test_output>>>
link03      1  TPASS  :  link(lkfile_12966, lkfile_12966.[1-10]) ret 0 for 10 files, stat linkcounts match 10
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link04 stime=1372195892
cmdline="link04"
contacts=""
analysis=exit
<<<test_output>>>
link04      1  TPASS  :  link(<non-existent file>, <nefile>) Failed, errno=2
link04      2  TPASS  :  link(<path is empty string>, <nefile>) Failed, errno=2
link04      3  TPASS  :  link(<path contains a non-existent file>, <nefile>) Failed, errno=2
link04      4  TPASS  :  link(<path contains a regular file>, <nefile>) Failed, errno=20
link04      5  TPASS  :  link(<pathname too long>, <nefile>) Failed, errno=36
link04      6  TPASS  :  link(<address beyond address space>, <nefile>) Failed, errno=14
link04      7  TPASS  :  link(<negative address>, <nefile>) Failed, errno=14
link04      8  TPASS  :  link(<regfile>, <empty string>) Failed, errno=2
link04      9  TPASS  :  link(<regfile>, <path contains a non-existent file>) Failed, errno=2
link04     10  TPASS  :  link(<regfile>, <path contains a regular file>) Failed, errno=2
link04     11  TPASS  :  link(<regfile>, <pathname too long>) Failed, errno=36
link04     12  TPASS  :  link(<regfile>, <address beyond address space>) Failed, errno=14
link04     13  TPASS  :  link(<regfile>, <negative address>) Failed, errno=14
link04     14  TPASS  :  link(<regfile>, <regfile2>) Failed, errno=17
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link05 stime=1372195892
cmdline="link05"
contacts=""
analysis=exit
<<<test_output>>>
link05      1  TPASS  :  link(lkfile_12968, lkfile_12968.[1-1000]) ret 0 for 1000 files, stat linkcounts match 1000
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=link06 stime=1372195892
cmdline="link06"
contacts=""
analysis=exit
<<<test_output>>>
link06      1  TPASS  :  link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=link07 stime=1372195892
cmdline="link07"
contacts=""
analysis=exit
<<<test_output>>>
link07      1  TPASS  :  link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=linkat01 stime=1372195892
cmdline="linkat01"
contacts=""
analysis=exit
<<<test_output>>>
linkat01    1  TPASS  :  linkat is functionality correct
linkat01    2  TPASS  :  linkat succeeded as expected
linkat01    3  TPASS  :  linkat is functionality correct
linkat01    4  TPASS  :  linkat is functionality correct
linkat01    5  TPASS  :  linkat is functionality correct
linkat01    6  TPASS  :  linkat succeeded as expected
linkat01    7  TPASS  :  linkat is functionality correct
linkat01    8  TPASS  :  linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01    9  TPASS  :  linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01   10  TPASS  :  linkat succeeded as expected
linkat01   11  TPASS  :  linkat is functionality correct
linkat01   12  TPASS  :  linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01   13  TPASS  :  linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01   14  TPASS  :  linkat succeeded as expected
linkat01   15  TPASS  :  linkat is functionality correct
linkat01   16  TPASS  :  linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01   17  TPASS  :  linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01   18  TPASS  :  linkat succeeded as expected
linkat01   19  TPASS  :  linkat is functionality correct
linkat01   20  TPASS  :  linkat failed as expected: TEST_ERRNO=EXDEV(18): Invalid cross-device link
linkat01   21  TPASS  :  linkat failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
linkat01   22  TPASS  :  linkat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=listen01 stime=1372195892
cmdline="listen01"
contacts=""
analysis=exit
<<<test_output>>>
listen01    1  TPASS  :  bad file descriptor successful
listen01    2  TPASS  :  not a socket successful
listen01    3  TPASS  :  UDP listen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llseek01 stime=1372195892
cmdline="llseek01"
contacts=""
analysis=exit
<<<test_output>>>
llseek01    1  TPASS  :  Functionality of llseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=llseek02 stime=1372195892
cmdline="llseek02"
contacts=""
analysis=exit
<<<test_output>>>
llseek02    1  TPASS  :  llseek() fails, 'whence' argument is not valid, errno:22
llseek02    2  TPASS  :  llseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek01 stime=1372195892
cmdline="lseek01"
contacts=""
analysis=exit
<<<test_output>>>
lseek01     1  TPASS  :  lseek(tfile_12975, 0, 0) returned 0
lseek01     2  TPASS  :  lseek(tfile_12975, 0, 1) returned 0
lseek01     3  TPASS  :  lseek(tfile_12975, 0, 2) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek02 stime=1372195892
cmdline="lseek02"
contacts=""
analysis=exit
<<<test_output>>>
lseek02     1  TPASS  :  lseek(-1, 1, SEEK_SET) Failed, errno=9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek03 stime=1372195892
cmdline="lseek03"
contacts=""
analysis=exit
<<<test_output>>>
lseek03     1  TPASS  :  lseek(tfile_12977, 1, 5) Failed, errno=22 : Invalid argument
lseek03     2  TPASS  :  lseek(tfile_12977, 1, -1) Failed, errno=22 : Invalid argument
lseek03     3  TPASS  :  lseek(tfile_12977, 1, 7) Failed, errno=22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek04 stime=1372195892
cmdline="lseek04"
contacts=""
analysis=exit
<<<test_output>>>
lseek04     1  TPASS  :  lseek(fifofd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek05 stime=1372195892
cmdline="lseek05"
contacts=""
analysis=exit
<<<test_output>>>
lseek05     1  TPASS  :  lseek(pipefd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek06 stime=1372195892
cmdline="lseek06"
contacts=""
analysis=exit
<<<test_output>>>
lseek06     1  TPASS  :  Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lseek07 stime=1372195892
cmdline="lseek07"
contacts=""
analysis=exit
<<<test_output>>>
lseek07     1  TPASS  :  Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek08 stime=1372195892
cmdline="lseek08"
contacts=""
analysis=exit
<<<test_output>>>
lseek08     1  TPASS  :  Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek09 stime=1372195892
cmdline="lseek09"
contacts=""
analysis=exit
<<<test_output>>>
lseek09     1  TPASS  :  Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek10 stime=1372195892
cmdline="lseek10"
contacts=""
analysis=exit
<<<test_output>>>
lseek10     1  TPASS  :  lseek() fails, 'fd' associated with a pipe/fifo, errno:29
lseek10     2  TPASS  :  lseek() fails, 'whence' argument is not valid, errno:22
lseek10     3  TPASS  :  lseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01A stime=1372195892
cmdline="symlink01 -T lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01     1  TPASS  :  lstat(2) of symbolic link file which points to no object file is ok
lstat01     2  TPASS  :  lstat(2) of symbolic link file which points at an object file is ok
lstat01     3  TPASS  :  lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01A_64 stime=1372195892
cmdline="symlink01 -T lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01_64    1  TPASS  :  lstat(2) of symbolic link file which points to no object file is ok
lstat01_64    2  TPASS  :  lstat(2) of symbolic link file which points at an object file is ok
lstat01_64    3  TPASS  :  lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01 stime=1372195892
cmdline="lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01     1  TPASS  :  lstat(lnfile_12987, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lstat01_64 stime=1372195892
cmdline="lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01     1  TPASS  :  lstat(lnfile_12988, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02 stime=1372195892
cmdline="lstat02"
contacts=""
analysis=exit
<<<test_output>>>
lstat02     1  TPASS  :  lstat() fails, No Search permissions to process, errno:13
lstat02     2  TPASS  :  lstat() fails, Negative address, errno:14
lstat02     3  TPASS  :  lstat() fails, Address beyond address space, errno:14
lstat02     4  TPASS  :  lstat() fails, Pathname too long, errno:36
lstat02     5  TPASS  :  lstat() fails, Pathname is empty, errno:2
lstat02     6  TPASS  :  lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02_64 stime=1372195892
cmdline="lstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat02     1  TPASS  :  lstat() fails, No Search permissions to process, errno:13
lstat02     2  TPASS  :  lstat() fails, Negative address, errno:14
lstat02     3  TPASS  :  lstat() fails, Address beyond address space, errno:14
lstat02     4  TPASS  :  lstat() fails, Pathname too long, errno:36
lstat02     5  TPASS  :  lstat() fails, Pathname is empty, errno:2
lstat02     6  TPASS  :  lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat03 stime=1372195892
cmdline="lstat03"
contacts=""
analysis=exit
<<<test_output>>>
lstat03     1  TPASS  :  Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat03_64 stime=1372195892
cmdline="lstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat03     1  TPASS  :  Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mallopt01 stime=1372195892
cmdline="mallopt01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mbind01 stime=1372195892
cmdline="mbind01"
contacts=""
analysis=exit
<<<test_output>>>
mbind01     1  TCONF  :  System doesn't have required numa support
mbind01     2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memset01 stime=1372195892
cmdline="memset01"
contacts=""
analysis=exit
<<<test_output>>>
memset01    1  TPASS  :  Test passed
memset01    2  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcmp01 stime=1372195892
cmdline="memcmp01"
contacts=""
analysis=exit
<<<test_output>>>
memcmp1     1  TPASS  :  Test passed
memcmp1     2  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcpy01 stime=1372195892
cmdline="memcpy01"
contacts=""
analysis=exit
<<<test_output>>>
memcpy1     1  TPASS  :  Test passed
memcpy1     2  TPASS  :  Test passed
memcpy1     3  TPASS  :  Test passed
memcpy1     4  TPASS  :  Test passed
memcpy1     5  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages01 stime=1372195892
cmdline="migrate_pages01"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages01    1  TCONF  :  System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages02 stime=1372195892
cmdline="migrate_pages02"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages02    1  TCONF  :  System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages02    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall01 stime=1372195892
cmdline="mlockall01"
contacts=""
analysis=exit
<<<test_output>>>
mlockall01    1  TPASS  :  mlockall test passed for MCL_CURRENT
mlockall01    2  TPASS  :  mlockall test passed for MCL_FUTURE
mlockall01    3  TPASS  :  mlockall test passed for MCL_CURRENT|MCL_FUTURE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlockall02 stime=1372195892
cmdline="mlockall02"
contacts=""
analysis=exit
<<<test_output>>>
mlockall02    1  TPASS  :  expected failure - errno = 12 : Cannot allocate memory
mlockall02    2  TPASS  :  expected failure - errno = 1 : Operation not permitted
mlockall02    3  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall03 stime=1372195892
cmdline="mlockall03"
contacts=""
analysis=exit
<<<test_output>>>
mlockall03    1  TPASS  :  expected failure - errno = 12 : Cannot allocate memory
mlockall03    2  TPASS  :  expected failure - errno = 1 : Operation not permitted
mlockall03    3  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir01 stime=1372195892
cmdline="mkdir01"
contacts=""
analysis=exit
<<<test_output>>>
mkdir01     1  TPASS  :  mkdir - path argument pointing below allocated address space failed as expected with errno 14 : Bad address
mkdir01     2  TPASS  :  mkdir - path argument pointing above allocated address space failed as expected with errno 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir02 stime=1372195892
cmdline="mkdir02"
contacts=""
analysis=exit
<<<test_output>>>
mkdir02     1  TPASS  :  Test to attempt to make a directory inherits group ID SUCCEEDED 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir03 stime=1372195892
cmdline="mkdir03"
contacts=""
analysis=exit
<<<test_output>>>
mkdir03     1  TPASS  :  expected failure - errno = 14 : Bad address
mkdir03     2  TPASS  :  expected failure - errno = 36 : File name too long
mkdir03     3  TPASS  :  expected failure - errno = 17 : File exists
mkdir03     4  TPASS  :  expected failure - errno = 2 : No such file or directory
mkdir03     5  TPASS  :  expected failure - errno = 20 : Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir04 stime=1372195892
cmdline="mkdir04"
contacts=""
analysis=exit
<<<test_output>>>
mkdir04     1  TPASS  :  Test to attempt to creat a directory in a directory having no permissions SUCCEEDED in setting errno to EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05 stime=1372195892
cmdline="mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05     1  TPASS  :  mkdir() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05A stime=1372195892
cmdline="symlink01 -T mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05     1  TPASS  :  mkdir(2) of object file through symbolic link file failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir08 stime=1372195892
cmdline="mkdir08"
contacts=""
analysis=exit
<<<test_output>>>
mkdir08     1  TPASS  :  mkdir(./dir_13013) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir09 stime=1372195892
cmdline="mkdir09"
contacts=""
analysis=exit
<<<test_output>>>
mkdir09     1  TPASS  :  PASS
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=80 cstime=1336
<<<test_end>>>
<<<test_start>>>
tag=mkdirat01 stime=1372195902
cmdline="mkdirat01"
contacts=""
analysis=exit
<<<test_output>>>
mkdirat01    1  TPASS  :  mkdirat() returned the expected errno 0: Success
mkdirat01    2  TPASS  :  mkdirat() returned the expected errno 0: Success
mkdirat01    3  TPASS  :  mkdirat() returned the expected errno 20: Not a directory
mkdirat01    4  TPASS  :  mkdirat() returned the expected errno 9: Bad file descriptor
mkdirat01    5  TPASS  :  mkdirat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod01 stime=1372195902
cmdline="mknod01"
contacts=""
analysis=exit
<<<test_output>>>
mknod01     1  TPASS  :  mknod(./tnode_13022, 0100777, 0) returned 0
mknod01     2  TPASS  :  mknod(./tnode_13022, 010777, 0) returned 0
mknod01     3  TPASS  :  mknod(./tnode_13022, 020777, 0) returned 0
mknod01     4  TPASS  :  mknod(./tnode_13022, 060777, 0) returned 0
mknod01     5  TPASS  :  mknod(./tnode_13022, 0104700, 0) returned 0
mknod01     6  TPASS  :  mknod(./tnode_13022, 0102700, 0) returned 0
mknod01     7  TPASS  :  mknod(./tnode_13022, 0106700, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod02 stime=1372195902
cmdline="mknod02"
contacts=""
analysis=exit
<<<test_output>>>
mknod02     1  TPASS  :  Functionality of mknod(tnode_13023, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod03 stime=1372195902
cmdline="mknod03"
contacts=""
analysis=exit
<<<test_output>>>
mknod03     1  TPASS  :  Functionality of mknod(tnode_13024, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod04 stime=1372195902
cmdline="mknod04"
contacts=""
analysis=exit
<<<test_output>>>
mknod04     1  TPASS  :  Functionality of mknod(tnode_13025, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknod05 stime=1372195902
cmdline="mknod05"
contacts=""
analysis=exit
<<<test_output>>>
mknod05     1  TPASS  :  Functionality of mknod(tnode_13026, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod06 stime=1372195902
cmdline="mknod06"
contacts=""
analysis=exit
<<<test_output>>>
mknod06     1  TPASS  :  mknod() fails, Specified node already exists, errno:17
mknod06     2  TPASS  :  mknod() fails, Negative address, errno:14
mknod06     3  TPASS  :  mknod() fails, Address beyond address space, errno:14
mknod06     4  TPASS  :  mknod() fails, Non-existent file, errno:2
mknod06     5  TPASS  :  mknod() fails, Pathname is empty, errno:2
mknod06     6  TPASS  :  mknod() fails, Pathname too long, errno:36
mknod06     7  TPASS  :  mknod() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod07 stime=1372195902
cmdline="mknod07"
contacts=""
analysis=exit
<<<test_output>>>
mknod07     1  TPASS  :  mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
mknod07     2  TPASS  :  mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod08 stime=1372195902
cmdline="mknod08"
contacts=""
analysis=exit
<<<test_output>>>
mknod08     1  TPASS  :  Functionality of mknod(tnode_13029, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod09 stime=1372195902
cmdline="mknod09"
contacts=""
analysis=exit
<<<test_output>>>
mknod09     1  TPASS  :  mknod() fails with expected error EINVAL errno:22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknodat01 stime=1372195902
cmdline="cd $LTPROOT/testcases/bin && chown root mknodat01 && chmod 04755 mknodat01 && mknodat01"
contacts=""
analysis=exit
<<<test_output>>>
mknodat01    1  TPASS  :  mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01    2  TPASS  :  mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01    3  TPASS  :  mknodat() returned the expected errno: TEST_ERRNO=ENOTDIR(20): Not a directory
mknodat01    4  TPASS  :  mknodat() returned the expected errno: TEST_ERRNO=EBADF(9): Bad file descriptor
mknodat01    5  TPASS  :  mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock01 stime=1372195902
cmdline="mlock01"
contacts=""
analysis=exit
<<<test_output>>>
mlock01     1  TPASS  :  mlock passed
mlock01     2  TPASS  :  mlock passed
mlock01     3  TPASS  :  mlock passed
mlock01     4  TPASS  :  mlock passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlock02 stime=1372195902
cmdline="mlock02"
contacts=""
analysis=exit
<<<test_output>>>
mlock02     1  TPASS  :  mlock failed as expected: TEST_ERRNO=ENOMEM(12): Cannot allocate memory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock03 stime=1372195902
cmdline="mlock03 -i 20"
contacts=""
analysis=exit
<<<test_output>>>
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock from 400000 to 406000
mlock03     0  TINFO  :  mlock from 605000 to 606000
mlock03     0  TINFO  :  mlock from 606000 to 607000
mlock03     0  TINFO  :  mlock from 607000 to 60b000
mlock03     0  TINFO  :  mlock from 180d000 to 182e000
mlock03     0  TINFO  :  mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  mlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  mlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  mlock from 7f4d320fc000 to 7f4d32100000
mlock03     0  TINFO  :  mlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  mlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  mlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  mlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  mlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  munlock from 400000 to 406000
mlock03     0  TINFO  :  munlock from 605000 to 606000
mlock03     0  TINFO  :  munlock from 606000 to 607000
mlock03     0  TINFO  :  munlock from 607000 to 60b000
mlock03     0  TINFO  :  munlock from 180d000 to 182e000
mlock03     0  TINFO  :  munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03     0  TINFO  :  munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03     0  TINFO  :  munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03     0  TINFO  :  munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03     0  TINFO  :  munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03     0  TINFO  :  munlock from 7f4d31ede000 to 7f4d31f00000
mlock03     0  TINFO  :  munlock from 7f4d320e3000 to 7f4d320e6000
mlock03     0  TINFO  :  munlock from 7f4d320fc000 to 7f4d320fd000
mlock03     0  TINFO  :  munlock from 7f4d320fd000 to 7f4d320fe000
mlock03     0  TINFO  :  munlock from 7f4d320fe000 to 7f4d32100000
mlock03     0  TINFO  :  munlock from 7f4d32100000 to 7f4d32101000
mlock03     0  TINFO  :  munlock from 7f4d32101000 to 7f4d32103000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e398000
mlock03     0  TINFO  :  munlock from 7fff4e398000 to 7fff4e3b9000
mlock03     0  TINFO  :  munlock from 7fff4e3fe000 to 7fff4e400000
mlock03     0  TINFO  :  munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03     0  TINFO  :  munlock from ffffffffff600000 to ffffffffff601000
mlock03     0  TINFO  :  starting stack size is 132
mlock03     0  TINFO  :  final stack size is 132
mlock03     1  TPASS  :  stack size is not decreased.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=mlock04 stime=1372195902
cmdline="mlock04"
contacts=""
analysis=exit
<<<test_output>>>
mlock04     0  TINFO  :  locked 40960 bytes from 0x7f647d1a9000
mlock04     1  TPASS  :  test succeeded.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=qmm01 stime=1372195902
cmdline="mmap001 -m 1"
contacts=""
analysis=exit
<<<test_output>>>
mmap001     0  TINFO  :  mmap()ing file of 1 pages or 4096 bytes
mmap001     1  TPASS  :  mmap() completed successfully.
mmap001     0  TINFO  :  touching mmaped memory
mmap001     2  TPASS  :  we're still here, mmaped area must be good
mmap001     3  TPASS  :  synchronizing mmapped page passed
mmap001     4  TPASS  :  munmapping testfile.13039 successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap01 stime=1372195902
cmdline="mmap01"
contacts=""
analysis=exit
<<<test_output>>>
mmap01      1  TPASS  :  Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mmap02 stime=1372195903
cmdline="mmap02"
contacts=""
analysis=exit
<<<test_output>>>
mmap02      1  TPASS  :  Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap03 stime=1372195903
cmdline="mmap03"
contacts=""
analysis=exit
<<<test_output>>>
mmap03      1  TPASS  :  mmap() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap04 stime=1372195903
cmdline="mmap04"
contacts=""
analysis=exit
<<<test_output>>>
mmap04      1  TPASS  :  Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap05 stime=1372195903
cmdline="mmap05"
contacts=""
analysis=exit
<<<test_output>>>
mmap05      1  TPASS  :  Got SIGSEGV as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap06 stime=1372195903
cmdline="mmap06"
contacts=""
analysis=exit
<<<test_output>>>
mmap06      1  TPASS  :  mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap07 stime=1372195903
cmdline="mmap07"
contacts=""
analysis=exit
<<<test_output>>>
mmap07      1  TPASS  :  mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mmap08 stime=1372195903
cmdline="mmap08"
contacts=""
analysis=exit
<<<test_output>>>
mmap08      1  TPASS  :  mmap failed with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap09 stime=1372195903
cmdline="mmap09"
contacts=""
analysis=exit
<<<test_output>>>
mmap09      1  TPASS  :  ftruncate mmaped file to a smaller size
mmap09      2  TPASS  :  ftruncate mmaped file to a larger size
mmap09      3  TPASS  :  ftruncate mmaped file to 0 size
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt01 stime=1372195903
cmdline="modify_ldt01"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt01    1  TCONF  :  modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt02 stime=1372195903
cmdline="modify_ldt02"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt02    1  TCONF  :  modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount01 stime=1372195903
cmdline="mount01 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount01     1  TPASS  :  mount(2) passed 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount02 stime=1372195903
cmdline="mount02 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount02     1  TPASS  :  mount got expected failure: errno=ENODEV(19): No such device
mount02     2  TPASS  :  mount got expected failure: errno=ENOTBLK(15): Block device required
mount02     3  TPASS  :  mount got expected failure: errno=EBUSY(16): Device or resource busy
mount02     4  TBROK  :  umount of mnt_13054 failed: errno=EBUSY(16): Device or resource busy
mount02     5  TBROK  :  Remaining cases broken
mount02     0  TWARN  :  tst_rmdir: rmobj(/tmp/ltp-LbqYZRF5cO/mourcnRbE) failed: remove(/tmp/ltp-LbqYZRF5cO/mourcnRbE/mnt_13054) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mount03 stime=1372195903
cmdline="mount03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount03     1  TBROK  :  stat for setuid_test failed
mount03     2  TBROK  :  Remaining cases broken
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=2 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount04 stime=1372195903
cmdline="mount04 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount04     1  TPASS  :  mount(2) expected failure; Got errno - EPERM : User not Super User/root
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages01 stime=1372195903
cmdline="move_pages.sh 01"
contacts=""
analysis=exit
<<<test_output>>>
move_pages01    1  TCONF  :  NUMA support not provided
move_pages01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages02 stime=1372195903
cmdline="move_pages.sh 02"
contacts=""
analysis=exit
<<<test_output>>>
move_pages02    1  TCONF  :  NUMA support not provided
move_pages02    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages03 stime=1372195903
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages03 && chmod 04755 move_pages03 && move_pages.sh 03"
contacts=""
analysis=exit
<<<test_output>>>
move_pages03    1  TCONF  :  NUMA support not provided
move_pages03    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages04 stime=1372195903
cmdline="move_pages.sh 04"
contacts=""
analysis=exit
<<<test_output>>>
move_pages04    1  TCONF  :  NUMA support not provided
move_pages04    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages05 stime=1372195903
cmdline="move_pages.sh 05"
contacts=""
analysis=exit
<<<test_output>>>
move_pages05    1  TCONF  :  NUMA support not provided
move_pages05    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages06 stime=1372195903
cmdline="move_pages.sh 06"
contacts=""
analysis=exit
<<<test_output>>>
move_pages06    1  TCONF  :  NUMA support not provided
move_pages06    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages07 stime=1372195903
cmdline="move_pages.sh 07"
contacts=""
analysis=exit
<<<test_output>>>
move_pages07    1  TCONF  :  NUMA support not provided
move_pages07    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages08 stime=1372195903
cmdline="move_pages.sh 08"
contacts=""
analysis=exit
<<<test_output>>>
move_pages08    1  TCONF  :  move_pages: E2BIG was removed in commit 3140a227
move_pages08    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages09 stime=1372195904
cmdline="move_pages.sh 09"
contacts=""
analysis=exit
<<<test_output>>>
move_pages09    1  TCONF  :  NUMA support not provided
move_pages09    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages10 stime=1372195904
cmdline="move_pages.sh 10"
contacts=""
analysis=exit
<<<test_output>>>
move_pages10    1  TCONF  :  NUMA support not provided
move_pages10    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages11 stime=1372195904
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages11 && chmod 04755 move_pages11 && move_pages.sh 11"
contacts=""
analysis=exit
<<<test_output>>>
move_pages11    1  TCONF  :  NUMA support not provided
move_pages11    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mprotect01 stime=1372195904
cmdline="mprotect01"
contacts=""
analysis=exit
<<<test_output>>>
mprotect01    1  TPASS  :  expected failure - errno = 12 : Cannot allocate memory
mprotect01    2  TPASS  :  expected failure - errno = 22 : Invalid argument
mprotect01    3  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect02 stime=1372195904
cmdline="mprotect02"
contacts=""
analysis=exit
<<<test_output>>>
mprotect02    1  TPASS  :  got SIGSEGV as expected
mprotect02    1  TPASS  :  got SIGSEGV as expected
mprotect02    2  TPASS  :  didn't get SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect03 stime=1372195904
cmdline="mprotect03"
contacts=""
analysis=exit
<<<test_output>>>
mprotect03    0  TINFO  :  received signal: SIGSEGV
mprotect03    1  TPASS  :  SIGSEGV generated as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_notify01 stime=1372195904
cmdline="mq_notify01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=16 (Device or resource busy)
RESULT: return value(ret)=-1 errno=16 (Device or resource busy)
mq_notify01    0  TINFO  :  (case00) START
mq_notify01    0  TINFO  :  (case00) END => OK
mq_notify01    0  TINFO  :  (case01) START
mq_notify01    0  TINFO  :  (case01) END => OK
mq_notify01    0  TINFO  :  (case02) START
mq_notify01    0  TINFO  :  (case02) END => OK
mq_notify01    0  TINFO  :  (case03) START
mq_notify01    0  TINFO  :  (case03) END => OK
mq_notify01    0  TINFO  :  (case04) START
mq_notify01    0  TINFO  :  (case04) END => OK
mq_notify01    0  TINFO  :  (case05) START
mq_notify01    0  TINFO  :  (case05) END => OK
mq_notify01    0  TINFO  :  (case06) START
mq_notify01    0  TINFO  :  (case06) END => OK
mq_notify01    1  TPASS  :  mq_notify call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mq_open01 stime=1372195904
cmdline="mq_open01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       5 errno=0 (Success)
mq_open01    0  TINFO  :  (case00) START
mq_open01    0  TINFO  :  mq_maxmsg E:20,	R:20
mq_open01    0  TINFO  :  mq_msgsize E:16384,	R:16384
mq_open01    0  TINFO  :  (case00) END => OK
mq_open01    1  TPASS  :  mq_open call succeeded 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedreceive01 stime=1372195904
cmdline="mq_timedreceive01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=8192 errno=0 (Success)
RESULT: return value(ret)=8192 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedreceive01    0  TINFO  :  (case00) START
mq_timedreceive01    0  TINFO  :  (case00) END => OK
mq_timedreceive01    0  TINFO  :  (case01) START
mq_timedreceive01    0  TINFO  :  (case01) END => OK
mq_timedreceive01    0  TINFO  :  (case02) START
mq_timedreceive01    0  TINFO  :  (case02) END => OK
mq_timedreceive01    0  TINFO  :  (case03) START
mq_timedreceive01    0  TINFO  :  (case03) END => OK
mq_timedreceive01    0  TINFO  :  (case04) START
mq_timedreceive01    0  TINFO  :  (case04) END => OK
mq_timedreceive01    0  TINFO  :  (case05) START
mq_timedreceive01    0  TINFO  :  (case05) END => OK
mq_timedreceive01    0  TINFO  :  (case06) START
mq_timedreceive01    0  TINFO  :  (case06) END => OK
mq_timedreceive01    0  TINFO  :  (case07) START
mq_timedreceive01    0  TINFO  :  (case07) END => OK
mq_timedreceive01    0  TINFO  :  (case08) START
mq_timedreceive01    0  TINFO  :  (case08) END => OK
mq_timedreceive01    0  TINFO  :  (case09) START
mq_timedreceive01    0  TINFO  :  (case09) END => OK
mq_timedreceive01    0  TINFO  :  (case10) START
mq_timedreceive01    0  TINFO  :  (case10) END => OK
mq_timedreceive01    0  TINFO  :  (case11) START
mq_timedreceive01    0  TINFO  :  (case11) END => OK
mq_timedreceive01    0  TINFO  :  (case12) START
mq_timedreceive01    0  TINFO  :  (case12) END => OK
mq_timedreceive01    0  TINFO  :  (case13) START
mq_timedreceive01    0  TINFO  :  (case13) END => OK
mq_timedreceive01    1  TPASS  :  mq_timedreceive call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedsend01 stime=1372195905
cmdline="mq_timedsend01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedsend01    0  TINFO  :  (case00) START
mq_timedsend01    0  TINFO  :  (case00) END => OK
mq_timedsend01    0  TINFO  :  (case01) START
mq_timedsend01    0  TINFO  :  (case01) END => OK
mq_timedsend01    0  TINFO  :  (case02) START
mq_timedsend01    0  TINFO  :  (case02) END => OK
mq_timedsend01    0  TINFO  :  (case03) START
mq_timedsend01    0  TINFO  :  (case03) END => OK
mq_timedsend01    0  TINFO  :  (case04) START
mq_timedsend01    0  TINFO  :  (case04) END => OK
mq_timedsend01    0  TINFO  :  (case05) START
mq_timedsend01    0  TINFO  :  (case05) END => OK
mq_timedsend01    0  TINFO  :  (case06) START
mq_timedsend01    0  TINFO  :  (case06) END => OK
mq_timedsend01    0  TINFO  :  (case07) START
mq_timedsend01    0  TINFO  :  (case07) END => OK
mq_timedsend01    0  TINFO  :  (case08) START
mq_timedsend01    0  TINFO  :  (case08) END => OK
mq_timedsend01    0  TINFO  :  (case09) START
mq_timedsend01    0  TINFO  :  (case09) END => OK
mq_timedsend01    0  TINFO  :  (case10) START
mq_timedsend01    0  TINFO  :  (case10) END => OK
mq_timedsend01    0  TINFO  :  (case11) START
mq_timedsend01    0  TINFO  :  (case11) END => OK
mq_timedsend01    0  TINFO  :  (case12) START
mq_timedsend01    0  TINFO  :  (case12) END => OK
mq_timedsend01    0  TINFO  :  (case13) START
mq_timedsend01    0  TINFO  :  (case13) END => OK
mq_timedsend01    0  TINFO  :  (case14) START
mq_timedsend01    0  TINFO  :  (case14) END => OK
mq_timedsend01    1  TPASS  :  mq_timedsend call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_unlink01 stime=1372195906
cmdline="mq_unlink01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=13 (Permission denied)
RESULT: return value(ret)=-1 errno=13 (Permission denied)
EXPECT: return value(ret)=-1 errno=2 (No such file or directory)
RESULT: return value(ret)=-1 errno=2 (No such file or directory)
EXPECT: return value(ret)=-1 errno=36 (File name too long)
RESULT: return value(ret)=-1 errno=36 (File name too long)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap01 stime=1372195906
cmdline="mremap01"
contacts=""
analysis=exit
<<<test_output>>>
mremap01    1  TPASS  :  Functionality of mremap() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap02 stime=1372195906
cmdline="mremap02"
contacts=""
analysis=exit
<<<test_output>>>
mremap02    1  TPASS  :  mremap() Failed, 'invalid argument specified' - errno 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap03 stime=1372195906
cmdline="mremap03"
contacts=""
analysis=exit
<<<test_output>>>
mremap03    1  TPASS  :  mremap() Fails, 'old region not mapped', errno 14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap04 stime=1372195906
cmdline="mremap04"
contacts=""
analysis=exit
<<<test_output>>>
mremap04    1  TPASS  :  mremap() failed, 'MREMAP_MAYMOVE flag unset', errno 12
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap05 stime=1372195906
cmdline="mremap05"
contacts=""
analysis=exit
<<<test_output>>>
mremap05    1  TPASS  :  MREMAP_FIXED requires MREMAP_MAYMOVE
mremap05    2  TPASS  :  new_addr has to be page aligned
mremap05    3  TPASS  :  old/new area must not overlap
mremap05    4  TPASS  :  mremap #1
mremap05    5  TPASS  :  mremap #1 value OK
mremap05    6  TPASS  :  mremap #2
mremap05    7  TPASS  :  mremap #2 value OK
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl01 stime=1372195906
cmdline="msgctl01"
contacts=""
analysis=exit
<<<test_output>>>
msgctl01    1  TPASS  :  qs_buf.msg_qbytes is a positive value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl02 stime=1372195906
cmdline="msgctl02"
contacts=""
analysis=exit
<<<test_output>>>
msgctl02    1  TPASS  :  qs_buf.msg_qbytes is the new value - 16383
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl03 stime=1372195906
cmdline="msgctl03"
contacts=""
analysis=exit
<<<test_output>>>
msgctl03    1  TPASS  :  The queue is gone
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl04 stime=1372195906
cmdline="msgctl04"
contacts=""
analysis=exit
<<<test_output>>>
msgctl04    1  TPASS  :  expected failure: TEST_ERRNO=EACCES(13): Permission denied
msgctl04    2  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
msgctl04    3  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
msgctl04    4  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
msgctl04    5  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
msgctl04    6  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl05 stime=1372195906
cmdline="msgctl05"
contacts=""
analysis=exit
<<<test_output>>>
msgctl05    1  TPASS  :  expected error = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=msgctl06 stime=1372195906
cmdline="msgctl06"
contacts=""
analysis=exit
<<<test_output>>>
msgctl06    1  TPASS  :  msgctl06 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl07 stime=1372195906
cmdline="msgctl07"
contacts=""
analysis=exit
<<<test_output>>>
msgctl07    1  TPASS  :  msgctl07 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=1996 cstime=3
<<<test_end>>>
<<<test_start>>>
tag=msgctl08 stime=1372195926
cmdline="msgctl08"
contacts=""
analysis=exit
<<<test_output>>>
msgctl08    1  TPASS  :  msgctl08 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=317 cstime=729
<<<test_end>>>
<<<test_start>>>
tag=msgctl09 stime=1372195929
cmdline="msgctl09"
contacts=""
analysis=exit
<<<test_output>>>
msgctl09    1  TPASS  :  msgctl09 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=24 cstime=78
<<<test_end>>>
<<<test_start>>>
tag=msgctl10 stime=1372195929
cmdline="msgctl10"
contacts=""
analysis=exit
<<<test_output>>>
msgctl10    1  TPASS  :  msgctl10 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=85 termination_type=exited termination_id=0 corefile=no
cutime=10867 cstime=21279
<<<test_end>>>
<<<test_start>>>
tag=msgctl11 stime=1372196014
cmdline="msgctl11"
contacts=""
analysis=exit
<<<test_output>>>
msgctl11    0  TINFO  :  Using upto 16180 pids
msgctl11    1  TPASS  :  msgctl11 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=1166 cstime=2531
<<<test_end>>>
<<<test_start>>>
tag=msgget01 stime=1372196024
cmdline="msgget01"
contacts=""
analysis=exit
<<<test_output>>>
msgget01    1  TPASS  :  message received = message sent
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgget02 stime=1372196024
cmdline="msgget02"
contacts=""
analysis=exit
<<<test_output>>>
msgget02    1  TPASS  :  expected failure - errno = 17 : File exists
msgget02    2  TPASS  :  expected failure - errno = 2 : No such file or directory
msgget02    3  TPASS  :  expected failure - errno = 2 : No such file or directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgget03 stime=1372196024
cmdline="msgget03"
contacts=""
analysis=exit
<<<test_output>>>
msgget03    1  TPASS  :  expected failure - errno = 0 : Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=41
<<<test_end>>>
<<<test_start>>>
tag=msgget04 stime=1372196024
cmdline="msgget04"
contacts=""
analysis=exit
<<<test_output>>>
msgget04    1  TPASS  :  expected failure - errno = 13 : Permission denied
msgget04    2  TPASS  :  expected failure - errno = 13 : Permission denied
msgget04    3  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=msgrcv01 stime=1372196024
cmdline="msgrcv01"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv01    1  TPASS  :  message received = message sent
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgrcv02 stime=1372196024
cmdline="msgrcv02"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv02    1  TPASS  :  expected failure - errno = 13 : Permission denied
msgrcv02    2  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgrcv03 stime=1372196024
cmdline="msgrcv03"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv03    1  TPASS  :  expected failure - errno = 22 : Invalid argument
msgrcv03    2  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgrcv04 stime=1372196024
cmdline="msgrcv04"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv04    1  TPASS  :  expected failure - errno = 7 : Argument list too long
msgrcv04    2  TPASS  :  expected failure - errno = 42 : No message of desired type
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgrcv05 stime=1372196024
cmdline="msgrcv05"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv05    1  TPASS  :  got EINTR as expected
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgrcv06 stime=1372196025
cmdline="msgrcv06"
contacts=""
analysis=exit
<<<test_output>>>
msgrcv06    1  TPASS  :  expected failure - errno = 43 : Identifier removed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=msgsnd01 stime=1372196026
cmdline="msgsnd01"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd01    1  TPASS  :  queue bytes = MSGSIZE and queue messages = 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgsnd02 stime=1372196026
cmdline="msgsnd02"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd02    1  TPASS  :  expected failure - errno = 13 : Permission denied
msgsnd02    2  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgsnd03 stime=1372196026
cmdline="msgsnd03"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd03    1  TPASS  :  expected failure - errno = 22 : Invalid argument
msgsnd03    2  TPASS  :  expected failure - errno = 22 : Invalid argument
msgsnd03    3  TPASS  :  expected failure - errno = 22 : Invalid argument
msgsnd03    4  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgsnd04 stime=1372196026
cmdline="msgsnd04"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd04    1  TPASS  :  expected failure - errno = 11 : Resource temporarily unavailable
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgsnd05 stime=1372196026
cmdline="msgsnd05"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd05    1  TPASS  :  expected failure - errno = 4 : Interrupted system call
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgsnd06 stime=1372196028
cmdline="msgsnd06"
contacts=""
analysis=exit
<<<test_output>>>
msgsnd06    1  TPASS  :  expected failure - errno = 43 : Identifier removed
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=msync01 stime=1372196030
cmdline="msync01"
contacts=""
analysis=exit
<<<test_output>>>
msync01     1  TPASS  :  Functionality of msync() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msync02 stime=1372196030
cmdline="msync02"
contacts=""
analysis=exit
<<<test_output>>>
msync02     1  TPASS  :  Functionality of msync successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msync03 stime=1372196030
cmdline="msync03"
contacts=""
analysis=exit
<<<test_output>>>
msync03     1  TPASS  :  msync failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msync04 stime=1372196030
cmdline="msync04"
contacts=""
analysis=exit
<<<test_output>>>
msync04     1  TPASS  :  msync failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msync05 stime=1372196030
cmdline="msync05"
contacts=""
analysis=exit
<<<test_output>>>
msync05     1  TPASS  :  msync failed as expected with ENOMEM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=munlock01 stime=1372196030
cmdline="munlock01"
contacts=""
analysis=exit
<<<test_output>>>
munlock01    1  TPASS  :  test 0 passed length = 1
munlock01    2  TPASS  :  test 1 passed length = 1024
munlock01    3  TPASS  :  test 2 passed length = 1048576
munlock01    4  TPASS  :  test 3 passed length = 10485760
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=munlock02 stime=1372196030
cmdline="munlock02"
contacts=""
analysis=exit
<<<test_output>>>
munlock02    1  TPASS  :  expected failure - errno = 12 : Cannot allocate memory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=munlockall01 stime=1372196030
cmdline="munlockall01"
contacts=""
analysis=exit
<<<test_output>>>
munlockall01    1  TPASS  :  munlockall() passed with return=0 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=munlockall02 stime=1372196030
cmdline="munlockall02"
contacts=""
analysis=exit
<<<test_output>>>
munlockall02    1  TCONF  :  munlockall() failed to produce expected errno :1 Got : 0, Success. ***Some distros, such as Red Hat Enterprise Linux, support non-superuser munlockall calls.***
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=munmap01 stime=1372196030
cmdline="munmap01"
contacts=""
analysis=exit
<<<test_output>>>
munmap01    1  TPASS  :  Functionality of munmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=munmap02 stime=1372196030
cmdline="munmap02"
contacts=""
analysis=exit
<<<test_output>>>
munmap02    1  TPASS  :  Functionality of munmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=munmap03 stime=1372196030
cmdline="munmap03"
contacts=""
analysis=exit
<<<test_output>>>
munmap03    1  TPASS  :  munmap failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nanosleep01 stime=1372196030
cmdline="nanosleep01"
contacts=""
analysis=exit
<<<test_output>>>
nanosleep01    1  TPASS  :  nanosleep functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nanosleep02 stime=1372196032
cmdline="nanosleep02"
contacts=""
analysis=exit
<<<test_output>>>
nanosleep02    0  TINFO  :  call succeeded
nanosleep02    1  TPASS  :  Functionality of nanosleep() is correct
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nanosleep03 stime=1372196038
cmdline="nanosleep03"
contacts=""
analysis=exit
<<<test_output>>>
nanosleep03    1  TPASS  :  nanosleep() failed, interrupted by signal (4) as expected
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nanosleep04 stime=1372196039
cmdline="nanosleep04"
contacts=""
analysis=exit
<<<test_output>>>
nanosleep04    1  TPASS  :  nanosleep() failed, when provided invalid pause time, with expected errno: 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nftw01 stime=1372196039
cmdline="nftw01"
contacts=""
analysis=exit
<<<test_output>>>
nftw01      1  TPASS  :  Test block 0
nftw01      2  TPASS  :  Test block 1
nftw01      3  TPASS  :  Test block 2
nftw01      4  TPASS  :  Test block 3
nftw01      5  TPASS  :  Test block 4
nftw01      6  TPASS  :  Test block 5
nftw01      7  TPASS  :  Test block 6
nftw01      8  TPASS  :  Test block 7
nftw01      9  TPASS  :  Test block 8
nftw01     10  TPASS  :  Test block 9
nftw01     11  TPASS  :  Test block 10
nftw01     12  TPASS  :  Test block 11
nftw01     13  TPASS  :  Test block 12
nftw01     14  TPASS  :  Test block 13
nftw01     15  TPASS  :  Test block 14
nftw01     16  TPASS  :  Test block 15
nftw01     17  TPASS  :  Test block 16
nftw01     18  TPASS  :  Test block 17
nftw01     19  TPASS  :  Test block 18
nftw01     20  TPASS  :  Test block 19
nftw01     21  TPASS  :  Test block 20
nftw01     22  TPASS  :  Test block 21
nftw01     23  TPASS  :  Test block 22
nftw01     24  TPASS  :  Test block 23
nftw01     25  TPASS  :  Test block 24
nftw01     26  TPASS  :  Test block 25
nftw01     27  TPASS  :  Test block 26
nftw01     28  TPASS  :  Test block 27
nftw01     29  TPASS  :  Test block 28
nftw01     30  TPASS  :  Test block 29
nftw01     31  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=nftw6401 stime=1372196039
cmdline="nftw6401"
contacts=""
analysis=exit
<<<test_output>>>
nftw6401    1  TPASS  :  Test block 0
nftw6401    2  TPASS  :  Test block 1
nftw6401    3  TPASS  :  Test block 2
nftw6401    4  TPASS  :  Test block 3
nftw6401    5  TPASS  :  Test block 4
nftw6401    6  TPASS  :  Test block 5
nftw6401    7  TPASS  :  Test block 6
nftw6401    8  TPASS  :  Test block 7
nftw6401    9  TPASS  :  Test block 8
nftw6401   10  TPASS  :  Test block 9
nftw6401   11  TPASS  :  Test block 10
nftw6401   12  TPASS  :  Test block 11
nftw6401   13  TPASS  :  Test block 12
nftw6401   14  TPASS  :  Test block 13
nftw6401   15  TPASS  :  Test block 14
nftw6401   16  TPASS  :  Test block 15
nftw6401   17  TPASS  :  Test block 16
nftw6401   18  TPASS  :  Test block 17
nftw6401   19  TPASS  :  Test block 18
nftw6401   20  TPASS  :  Test block 19
nftw6401   21  TPASS  :  Test block 20
nftw6401   22  TPASS  :  Test block 21
nftw6401   23  TPASS  :  Test block 22
nftw6401   24  TPASS  :  Test block 23
nftw6401   25  TPASS  :  Test block 24
nftw6401   26  TPASS  :  Test block 25
nftw6401   27  TPASS  :  Test block 26
nftw6401   28  TPASS  :  Test block 27
nftw6401   29  TPASS  :  Test block 28
nftw6401   30  TPASS  :  Test block 29
nftw6401   31  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=nice01 stime=1372196039
cmdline="nice01"
contacts=""
analysis=exit
<<<test_output>>>
nice01      1  TPASS  :  Functionality of nice(-12) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nice02 stime=1372196039
cmdline="nice02"
contacts=""
analysis=exit
<<<test_output>>>
nice02      1  TPASS  :  Functionality of nice(50) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nice03 stime=1372196039
cmdline="nice03"
contacts=""
analysis=exit
<<<test_output>>>
nice03      1  TPASS  :  Functionality of nice(2) is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nice04 stime=1372196039
cmdline="nice04"
contacts=""
analysis=exit
<<<test_output>>>
nice04      1  TPASS  :  nice(2) returned -1 for Non-root cannot specify higher priority
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=nice05 stime=1372196039
cmdline="nice05"
contacts=""
analysis=exit
<<<test_output>>>
nice05      1  TPASS  :  nice(0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open01 stime=1372196039
cmdline="open01"
contacts=""
analysis=exit
<<<test_output>>>
open01      1  TPASS  :  Save text bit not cleared as expected
open01      2  TPASS  :  directory bit is set as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open01A stime=1372196039
cmdline="symlink01 -T open01"
contacts=""
analysis=exit
<<<test_output>>>
open01      1  TPASS  :  open(2) with (O_CREAT | O_RDWR) to create object file through symbolic link file and all writes, reads, and lseeks are ok
open01      2  TPASS  :  open(2) with O_RDWR of existing  object file through symbolic link file and all writes, reads, and lseeks are ok
open01      3  TPASS  :  open(2) with (O_CREAT | O_EXCL) error  is caught when creating object file through symbolic link file
open01      4  TPASS  :  open(2) error with O_RDWR is caught when processing symbolic link file which points at no object file
open01      5  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=open02 stime=1372196039
cmdline="open02"
contacts=""
analysis=exit
<<<test_output>>>
open02      1  TPASS  :  open returned ENOENT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open03 stime=1372196039
cmdline="open03"
contacts=""
analysis=exit
<<<test_output>>>
open03      1  TPASS  :  open(tfile_19940, O_RDWR|O_CREAT,0700) returned 5
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open04 stime=1372196039
cmdline="open04"
contacts=""
analysis=exit
<<<test_output>>>
open04      1  TPASS  :  call returned expected EMFILE error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=open05 stime=1372196039
cmdline="open05"
contacts=""
analysis=exit
<<<test_output>>>
open05      1  TPASS  :  open returned expected EACCES error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open06 stime=1372196039
cmdline="open06"
contacts=""
analysis=exit
<<<test_output>>>
open06      1  TPASS  :  call returned expected ENXIO error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open07 stime=1372196039
cmdline="open07"
contacts=""
analysis=exit
<<<test_output>>>
open07      1  TPASS  :  open returned expected ELOOP error
open07      2  TPASS  :  open returned expected ELOOP error
open07      3  TPASS  :  open returned expected ELOOP error
open07      4  TPASS  :  open returned expected ELOOP error
open07      5  TPASS  :  open succeeded as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open08 stime=1372196039
cmdline="open08"
contacts=""
analysis=exit
<<<test_output>>>
open08      1  TPASS  :  expected failure - errno = 17 : File exists
open08      2  TPASS  :  expected failure - errno = 21 : Is a directory
open08      3  TPASS  :  expected failure - errno = 20 : Not a directory
open08      4  TPASS  :  expected failure - errno = 36 : File name too long
open08      5  TPASS  :  expected failure - errno = 13 : Permission denied
open08      6  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=open09 stime=1372196039
cmdline="open09"
contacts=""
analysis=exit
<<<test_output>>>
open09      1  TPASS  :  Test passed in O_WRONLY.
open09      2  TPASS  :  Test passed in O_RDONLY.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open10 stime=1372196039
cmdline="open10"
contacts=""
analysis=exit
<<<test_output>>>
open10      1  TPASS  :  Test passed in block0.
open10      2  TPASS  :  Test passed in block1.
open10      3  TPASS  :  Test passed in block2.
open10      4  TPASS  :  Test passed in block3.
open10      5  TPASS  :  Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=open11 stime=1372196039
cmdline="open11"
contacts=""
analysis=exit
<<<test_output>>>
open11      1  TPASS  :  Open regular file O_RDONLY
open11      2  TPASS  :  Open regular file O_WRONLY
open11      3  TPASS  :  Open regular file O_RDWR
open11      4  TPASS  :  Open regular file O_RDWR | O_SYNC
open11      5  TPASS  :  Open regular file O_RDWR | O_TRUNC
open11      6  TPASS  :  Open dir O_RDONLY
open11      7  TPASS  :  Open dir O_RDWR, expect EISDIR
open11      8  TPASS  :  Open regular file O_DIRECTORY, expect ENOTDIR
open11      9  TPASS  :  Open hard link file O_RDONLY
open11     10  TPASS  :  Open hard link file O_WRONLY
open11     11  TPASS  :  Open hard link file O_RDWR
open11     12  TPASS  :  Open sym link file O_RDONLY
open11     13  TPASS  :  Open sym link file O_WRONLY
open11     14  TPASS  :  Open sym link file O_RDWR
open11     15  TPASS  :  Open sym link dir O_RDONLY
open11     16  TPASS  :  Open sym link dir O_WRONLY, expect EISDIR
open11     17  TPASS  :  Open sym link dir O_RDWR, expect EISDIR
open11     18  TPASS  :  Open device special file O_RDONLY
open11     19  TPASS  :  Open device special file O_WRONLY
open11     20  TPASS  :  Open device special file O_RDWR
open11     21  TPASS  :  Open non-existing regular file in existing dir
open11     22  TPASS  :  Open link file O_RDONLY | O_CREAT
open11     23  TPASS  :  Open symlink file O_RDONLY | O_CREAT
open11     24  TPASS  :  Open regular file O_RDONLY | O_CREAT
open11     25  TPASS  :  Open symlink dir O_RDONLY | O_CREAT, expect EISDIR
open11     26  TPASS  :  Open dir O_RDONLY | O_CREAT, expect EISDIR
open11     27  TPASS  :  Open regular file O_RDONLY | O_TRUNC, behaviour is undefined but should not oops or hang
open11     28  TPASS  :  Open regular file(non-empty) O_RDONLY | O_TRUNC, behaviour is undefined but should not oops or hang
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=openat01 stime=1372196039
cmdline="openat01"
contacts=""
analysis=exit
<<<test_output>>>
openat01    1  TPASS  :  openat() returned the expected errno 0: Success
openat01    2  TPASS  :  openat() returned the expected errno 0: Success
openat01    3  TPASS  :  openat() returned the expected errno 20: Not a directory
openat01    4  TPASS  :  openat() returned the expected errno 9: Bad file descriptor
openat01    5  TPASS  :  openat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mincore01 stime=1372196039
cmdline="mincore01"
contacts=""
analysis=exit
<<<test_output>>>
mincore01    1  TPASS  :  expected failure: errno = 22 (Invalid argument)
mincore01    2  TPASS  :  expected failure: errno = 14 (Bad address)
mincore01    3  TPASS  :  expected failure: errno = 12 (Cannot allocate memory)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mincore02 stime=1372196039
cmdline="mincore02"
contacts=""
analysis=exit
<<<test_output>>>
mincore02    1  TPASS  :  4 pages locked, 4 pages in-core
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=madvise01 stime=1372196039
cmdline="madvise01"
contacts=""
analysis=exit
<<<test_output>>>
madvise01    1  TPASS  :  madvise test for MADV_NORMAL PASSED
madvise01    2  TPASS  :  madvise test for MADV_RANDOM PASSED
madvise01    3  TPASS  :  madvise test for MADV_SEQUENTIAL PASSED
madvise01    4  TPASS  :  madvise test for MADV_WILLNEED PASSED
madvise01    5  TPASS  :  madvise test for MADV_DONTNEED PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=madvise02 stime=1372196039
cmdline="madvise02"
contacts=""
analysis=exit
<<<test_output>>>
madvise02    1  TPASS  :  failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
madvise02    2  TPASS  :  failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
madvise02    3  TPASS  :  failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
madvise02    4  TPASS  :  failed as expected: TEST_ERRNO=ENOMEM(12): Cannot allocate memory
madvise02    5  TPASS  :  madvise succeeded as expected, see kernel commit 1998cc0 for details.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=madvise03 stime=1372196039
cmdline="madvise03"
contacts=""
analysis=exit
<<<test_output>>>
madvise03    1  TPASS  :  madvise test for MADV_REMOVE PASSED
madvise03    2  TPASS  :  madvise test for MADV_DONTFORK PASSED
madvise03    3  TPASS  :  madvise test for MADV_DOFORK PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=madvise04 stime=1372196039
cmdline="madvise04"
contacts=""
analysis=exit
<<<test_output>>>
madvise04    1  TCONF  :  This system doesn't have required madvise support, MADV_DONTDUMP and MADV_DODUMP were added from 3.4. If your kernel version >= 3.4, maybe you need updating your glibc-headers
madvise04    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=newuname01 stime=1372196039
cmdline="newuname01"
contacts=""
analysis=exit
<<<test_output>>>
newuname01    1  TPASS  :  newuname call succeed: return value = 0 
newuname01    0  TINFO  :  This system is Linux
newuname01    0  TINFO  :  The system infomation is :
newuname01    0  TINFO  :  System is Linux on x86_64 hardware
newuname01    0  TINFO  :  Nodename is fambox
newuname01    0  TINFO  :  Version is 3.10.0-rc7-next20130624-3-iniza-small, #1 SMP Tue Jun 25 23:03:26 CEST 2013
newuname01    0  TINFO  :  Domainname is (none) 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pathconf01 stime=1372196039
cmdline="pathconf01"
contacts=""
analysis=exit
<<<test_output>>>
pathconf01    1  TPASS  :  pathconf(/tmp, _PC_LINK_MAX) returned 65000
pathconf01    2  TPASS  :  pathconf(/tmp, _PC_NAME_MAX) returned 255
pathconf01    3  TPASS  :  pathconf(/tmp, _PC_PATH_MAX) returned 4096
pathconf01    4  TPASS  :  pathconf(/tmp, _PC_PIPE_BUF) returned 4096
pathconf01    5  TPASS  :  pathconf(/tmp, _PC_CHOWN_RESTRICTED) returned 1
pathconf01    6  TPASS  :  pathconf(/tmp, _PC_NO_TRUNC) returned 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pause01 stime=1372196039
cmdline="pause01"
contacts=""
analysis=exit
<<<test_output>>>
pause01     1  TPASS  :  pause() returned -1
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pause02 stime=1372196040
cmdline="pause02"
contacts=""
analysis=exit
<<<test_output>>>
pause02     1  TPASS  :  pause was interrupted correctly
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pause03 stime=1372196041
cmdline="pause03"
contacts=""
analysis=exit
<<<test_output>>>
pause03     1  TPASS  :  Functionality of pause() is correct
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe01 stime=1372196042
cmdline="pipe01"
contacts=""
analysis=exit
<<<test_output>>>
pipe01      1  TPASS  :  pipe() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe02 stime=1372196042
cmdline="pipe02"
contacts=""
analysis=exit
<<<test_output>>>
pipe02      1  TPASS  :  child process returned expected SIGPIPE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe03 stime=1372196042
cmdline="pipe03"
contacts=""
analysis=exit
<<<test_output>>>
pipe03      1  TPASS  :  expected failure writing to read end of pipe
pipe03      2  TPASS  :  expected failure reading from write end of pipe
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe04 stime=1372196042
cmdline="pipe04"
contacts=""
analysis=exit
<<<test_output>>>
pipe04      1  TPASS  :  Child 1 killed while writing to a pipe
pipe04      2  TPASS  :  Child 2 killed while writing to a pipe
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipe05 stime=1372196042
cmdline="pipe05"
contacts=""
analysis=exit
<<<test_output>>>
pipe05      1  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe06 stime=1372196042
cmdline="pipe06"
contacts=""
analysis=exit
<<<test_output>>>
pipe06      1  TPASS  :  failed with EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipe07 stime=1372196042
cmdline="pipe07"
contacts=""
analysis=exit
<<<test_output>>>
pipe07      1  TPASS  :  Opened 509 pipes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipe08 stime=1372196042
cmdline="pipe08"
contacts=""
analysis=exit
<<<test_output>>>
pipe08      1  TPASS  :  got expected SIGPIPE signal
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe09 stime=1372196042
cmdline="pipe09"
contacts=""
analysis=exit
<<<test_output>>>
pipe09      1  TPASS  :  functionality appears to be correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe10 stime=1372196042
cmdline="pipe10"
contacts=""
analysis=exit
<<<test_output>>>
pipe10      1  TPASS  :  functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe11 stime=1372196042
cmdline="pipe11"
contacts=""
analysis=exit
<<<test_output>>>
pipe11      0  TINFO  :  child 1 got 50 chars
pipe11      0  TINFO  :  child 2 got 50 chars
pipe11      0  TINFO  :  child 3 got 50 chars
pipe11      0  TINFO  :  child 4 got 50 chars
pipe11      0  TINFO  :  child 5 got 50 chars
pipe11      0  TINFO  :  child 6 got 50 chars
pipe11      0  TINFO  :  child 7 got 50 chars
pipe11      0  TINFO  :  child 8 got 50 chars
pipe11      0  TINFO  :  child 9 got 50 chars
pipe11      0  TINFO  :  child 10 got 50 chars
pipe11      0  TINFO  :  child 11 got 50 chars
pipe11      0  TINFO  :  child 12 got 50 chars
pipe11      0  TINFO  :  child 13 got 50 chars
pipe11      0  TINFO  :  child 14 got 50 chars
pipe11      0  TINFO  :  child 15 got 50 chars
pipe11      0  TINFO  :  child 16 got 50 chars
pipe11      0  TINFO  :  child 17 got 50 chars
pipe11      0  TINFO  :  child 18 got 50 chars
pipe11      0  TINFO  :  child 19 got 50 chars
pipe11      0  TINFO  :  child 20 got 50 chars
pipe11      0  TINFO  :  child 21 got 50 chars
pipe11      0  TINFO  :  child 22 got 50 chars
pipe11      0  TINFO  :  child 23 got 50 chars
pipe11      0  TINFO  :  child 25 got 50 chars
pipe11      0  TINFO  :  child 24 got 50 chars
pipe11      0  TINFO  :  child 28 got 50 chars
pipe11      0  TINFO  :  child 26 got 50 chars
pipe11      0  TINFO  :  child 30 got 50 chars
pipe11      0  TINFO  :  child 27 got 50 chars
pipe11      0  TINFO  :  child 31 got 50 chars
pipe11      0  TINFO  :  child 32 got 50 chars
pipe11      0  TINFO  :  child 33 got 50 chars
pipe11      0  TINFO  :  child 34 got 50 chars
pipe11      0  TINFO  :  child 29 got 50 chars
pipe11      0  TINFO  :  child 36 got 50 chars
pipe11      0  TINFO  :  child 35 got 50 chars
pipe11      0  TINFO  :  child 37 got 50 chars
pipe11      0  TINFO  :  child 39 got 50 chars
pipe11      0  TINFO  :  child 40 got 50 chars
pipe11      0  TINFO  :  child 41 got 50 chars
pipe11      0  TINFO  :  child 38 got 50 chars
pipe11      0  TINFO  :  child 42 got 50 chars
pipe11      0  TINFO  :  child 43 got 50 chars
pipe11      0  TINFO  :  child 44 got 50 chars
pipe11      0  TINFO  :  child 45 got 50 chars
pipe11      0  TINFO  :  child 46 got 50 chars
pipe11      0  TINFO  :  child 47 got 50 chars
pipe11      0  TINFO  :  child 48 got 50 chars
pipe11      0  TINFO  :  child 49 got 50 chars
pipe11      0  TINFO  :  child 50 got 50 chars
pipe11      0  TINFO  :  There are 50 children to wait for
pipe11      1  TPASS  :  child 1 exitted successfully
pipe11      2  TPASS  :  child 2 exitted successfully
pipe11      3  TPASS  :  child 3 exitted successfully
pipe11      4  TPASS  :  child 4 exitted successfully
pipe11      5  TPASS  :  child 5 exitted successfully
pipe11      6  TPASS  :  child 6 exitted successfully
pipe11      7  TPASS  :  child 7 exitted successfully
pipe11      8  TPASS  :  child 8 exitted successfully
pipe11      9  TPASS  :  child 9 exitted successfully
pipe11     10  TPASS  :  child 10 exitted successfully
pipe11     11  TPASS  :  child 11 exitted successfully
pipe11     12  TPASS  :  child 12 exitted successfully
pipe11     13  TPASS  :  child 13 exitted successfully
pipe11     14  TPASS  :  child 14 exitted successfully
pipe11     15  TPASS  :  child 15 exitted successfully
pipe11     16  TPASS  :  child 16 exitted successfully
pipe11     17  TPASS  :  child 17 exitted successfully
pipe11     18  TPASS  :  child 18 exitted successfully
pipe11     19  TPASS  :  child 19 exitted successfully
pipe11     20  TPASS  :  child 20 exitted successfully
pipe11     21  TPASS  :  child 21 exitted successfully
pipe11     22  TPASS  :  child 22 exitted successfully
pipe11     23  TPASS  :  child 23 exitted successfully
pipe11     24  TPASS  :  child 24 exitted successfully
pipe11     25  TPASS  :  child 25 exitted successfully
pipe11     26  TPASS  :  child 26 exitted successfully
pipe11     27  TPASS  :  child 27 exitted successfully
pipe11     28  TPASS  :  child 28 exitted successfully
pipe11     29  TPASS  :  child 29 exitted successfully
pipe11     30  TPASS  :  child 30 exitted successfully
pipe11     31  TPASS  :  child 31 exitted successfully
pipe11     32  TPASS  :  child 32 exitted successfully
pipe11     33  TPASS  :  child 33 exitted successfully
pipe11     34  TPASS  :  child 34 exitted successfully
pipe11     35  TPASS  :  child 35 exitted successfully
pipe11     36  TPASS  :  child 36 exitted successfully
pipe11     37  TPASS  :  child 37 exitted successfully
pipe11     38  TPASS  :  child 38 exitted successfully
pipe11     39  TPASS  :  child 39 exitted successfully
pipe11     40  TPASS  :  child 40 exitted successfully
pipe11     41  TPASS  :  child 41 exitted successfully
pipe11     42  TPASS  :  child 42 exitted successfully
pipe11     43  TPASS  :  child 43 exitted successfully
pipe11     44  TPASS  :  child 44 exitted successfully
pipe11     45  TPASS  :  child 45 exitted successfully
pipe11     46  TPASS  :  child 46 exitted successfully
pipe11     47  TPASS  :  child 47 exitted successfully
pipe11     48  TPASS  :  child 48 exitted successfully
pipe11     49  TPASS  :  child 49 exitted successfully
pipe11     50  TPASS  :  child 50 exitted successfully
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=pipe2_01 stime=1372196047
cmdline="pipe2_01"
contacts=""
analysis=exit
<<<test_output>>>
pipe2_01    1  TPASS  :  pipe2(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe2_02 stime=1372196047
cmdline="pipe2_02"
contacts=""
analysis=exit
<<<test_output>>>
pipe2_02    1  TPASS  :  pipe2(O_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=poll01 stime=1372196047
cmdline="poll01"
contacts=""
analysis=exit
<<<test_output>>>
poll01      1  TPASS  :  Functionality of poll() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ppoll01 stime=1372196047
cmdline="ppoll01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       1 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       1 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=14 (Bad address)
RESULT: return value(ret)=-1 errno=14 (Bad address)
ppoll01     0  TINFO  :  (case00) START
ppoll01     0  TINFO  :  EXPECT: revents=0x0005
ppoll01     0  TINFO  :  RESULT: revents=0x0005
ppoll01     0  TINFO  :  (case00) END => OK
ppoll01     0  TINFO  :  (case01) START
ppoll01     0  TINFO  :  (case01) END => OK
ppoll01     0  TINFO  :  (case02) START
ppoll01     0  TINFO  :  (case02) END => OK
ppoll01     0  TINFO  :  (case03) START
ppoll01     0  TINFO  :  EXPECT: revents=0x0020
ppoll01     0  TINFO  :  RESULT: revents=0x0020
ppoll01     0  TINFO  :  (case03) END => OK
ppoll01     0  TINFO  :  (case04) START
ppoll01     0  TINFO  :  (case04) END => OK
ppoll01     0  TINFO  :  (case05) START
ppoll01     0  TINFO  :  (case05) END => OK
ppoll01     0  TINFO  :  (case06) START
ppoll01     0  TINFO  :  (case06) END => OK
ppoll01     0  TINFO  :  (case07) START
ppoll01     0  TINFO  :  (case07) END => OK
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=prctl01 stime=1372196047
cmdline="prctl01"
contacts=""
analysis=exit
<<<test_output>>>
prctl01     1  TPASS  :  Test Passed
prctl01     1  TPASS  :  Test Passed
prctl01     2  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=prctl02 stime=1372196047
cmdline="prctl02"
contacts=""
analysis=exit
<<<test_output>>>
prctl02     1  TPASS  :  Test Passed
prctl02     1  TPASS  :  Test Passed
prctl02     2  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pread01 stime=1372196047
cmdline="pread01"
contacts=""
analysis=exit
<<<test_output>>>
pread01     1  TPASS  :  Functionality of pread() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pread01_64 stime=1372196047
cmdline="pread01_64"
contacts=""
analysis=exit
<<<test_output>>>
pread01     1  TPASS  :  Functionality of pread() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pread02 stime=1372196047
cmdline="pread02"
contacts=""
analysis=exit
<<<test_output>>>
pread02     1  TPASS  :  pread() fails, file descriptor is a PIPE or FIFO, errno:29
pread02     2  TPASS  :  pread() fails, specified offset is -ve or invalid, errno:22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pread02_64 stime=1372196047
cmdline="pread02_64"
contacts=""
analysis=exit
<<<test_output>>>
pread02     1  TPASS  :  pread() fails, file descriptor is a PIPE or FIFO, errno:29
pread02     2  TPASS  :  pread() fails, specified offset is -ve or invalid, errno:22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pread03 stime=1372196047
cmdline="pread03"
contacts=""
analysis=exit
<<<test_output>>>
pread03     1  TPASS  :  pread() fails with expected error EISDIR errno:21
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pread03_64 stime=1372196047
cmdline="pread03_64"
contacts=""
analysis=exit
<<<test_output>>>
pread03     1  TPASS  :  pread() fails with expected error EISDIR errno:21
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=profil01 stime=1372196047
cmdline="profil01"
contacts=""
analysis=exit
<<<test_output>>>
profil01    1  TPASS  :  Test passed
profil01    2  TPASS  :  Test passed
profil01    3  TPASS  :  Test passed
profil01    4  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=1516 cstime=482
<<<test_end>>>
<<<test_start>>>
tag=process_vm_readv01 stime=1372196067
cmdline="process_vm01 -r"
contacts=""
analysis=exit
<<<test_output>>>
process_vm_readv    0  TINFO  :  test_sane_params
process_vm_readv    1  TPASS  :  expected ret success - returned value = 4096
process_vm_readv    0  TINFO  :  test_flags, flags=-2147483647
process_vm_readv    2  TPASS  :  expected ret success - returned value = -1
process_vm_readv    3  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=-1
process_vm_readv    4  TPASS  :  expected ret success - returned value = -1
process_vm_readv    5  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=1
process_vm_readv    6  TPASS  :  expected ret success - returned value = -1
process_vm_readv    7  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=2147483647
process_vm_readv    8  TPASS  :  expected ret success - returned value = -1
process_vm_readv    9  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=0
process_vm_readv   10  TPASS  :  expected ret success - returned value = 4096
process_vm_readv    0  TINFO  :  test_iov_len_overflow
process_vm_readv   11  TPASS  :  expected ret success - returned value = -1
process_vm_readv   12  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_iov_invalid - lvec->iov_base
process_vm_readv   13  TPASS  :  expected ret success - returned value = -1
process_vm_readv   14  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - rvec->iov_base
process_vm_readv   15  TPASS  :  expected ret success - returned value = -1
process_vm_readv   16  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - lvec
process_vm_readv   17  TPASS  :  expected ret success - returned value = -1
process_vm_readv   18  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - rvec
process_vm_readv   19  TPASS  :  expected ret success - returned value = -1
process_vm_readv   20  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_invalid_pid
process_vm_readv   21  TPASS  :  expected ret success - returned value = -1
process_vm_readv   22  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_readv   23  TPASS  :  expected ret success - returned value = -1
process_vm_readv   24  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_readv    0  TINFO  :  test_invalid_perm
process_vm_readv   25  TPASS  :  expected ret success - returned value = -1
process_vm_readv   26  TPASS  :  expected failure: TEST_ERRNO=EPERM(1): Operation not permitted
process_vm_readv    0  TINFO  :  test_sane_params
process_vm_readv    1  TPASS  :  expected ret success - returned value = 4096
process_vm_readv    0  TINFO  :  test_flags, flags=-2147483647
process_vm_readv    2  TPASS  :  expected ret success - returned value = -1
process_vm_readv    3  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=-1
process_vm_readv    4  TPASS  :  expected ret success - returned value = -1
process_vm_readv    5  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=1
process_vm_readv    6  TPASS  :  expected ret success - returned value = -1
process_vm_readv    7  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=2147483647
process_vm_readv    8  TPASS  :  expected ret success - returned value = -1
process_vm_readv    9  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_flags, flags=0
process_vm_readv   10  TPASS  :  expected ret success - returned value = 4096
process_vm_readv    0  TINFO  :  test_iov_len_overflow
process_vm_readv   11  TPASS  :  expected ret success - returned value = -1
process_vm_readv   12  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_readv    0  TINFO  :  test_iov_invalid - lvec->iov_base
process_vm_readv   13  TPASS  :  expected ret success - returned value = -1
process_vm_readv   14  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - rvec->iov_base
process_vm_readv   15  TPASS  :  expected ret success - returned value = -1
process_vm_readv   16  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - lvec
process_vm_readv   17  TPASS  :  expected ret success - returned value = -1
process_vm_readv   18  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_iov_invalid - rvec
process_vm_readv   19  TPASS  :  expected ret success - returned value = -1
process_vm_readv   20  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_invalid_pid
process_vm_readv   21  TPASS  :  expected ret success - returned value = -1
process_vm_readv   22  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_readv   23  TPASS  :  expected ret success - returned value = -1
process_vm_readv   24  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_readv    0  TINFO  :  test_invalid_perm
process_vm_readv    0  TINFO  :  test_invalid_protection lvec
process_vm_readv   25  TPASS  :  expected ret success - returned value = -1
process_vm_readv   26  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_readv    0  TINFO  :  test_invalid_protection rvec
process_vm_readv   27  TPASS  :  expected ret success - returned value = -1
process_vm_readv   28  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=process_vm_readv02 stime=1372196067
cmdline="process_vm_readv02"
contacts=""
analysis=exit
<<<test_output>>>
process_vm_readv02    0  TINFO  :  child 1: reading string from same memory location.
process_vm_readv02    1  TPASS  :  expected string received.
process_vm_readv02    0  TINFO  :  child 0: memory allocated and initialized.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=process_vm_readv03 stime=1372196067
cmdline="process_vm_readv03"
contacts=""
analysis=exit
<<<test_output>>>
process_vm_readv03    0  TINFO  :  child 1: 10 remote iovecs received.
process_vm_readv03    0  TINFO  :  child 1: 4 local iovecs initialized.
process_vm_readv03    1  TPASS  :  child 1: all bytes are correctly received.
process_vm_readv03    0  TINFO  :  child 0: 10 iovecs allocated and initialized.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=process_vm_writev01 stime=1372196067
cmdline="process_vm01 -w"
contacts=""
analysis=exit
<<<test_output>>>
process_vm_writev    0  TINFO  :  test_sane_params
process_vm_writev    1  TPASS  :  expected ret success - returned value = 4096
process_vm_writev    0  TINFO  :  test_flags, flags=-2147483647
process_vm_writev    2  TPASS  :  expected ret success - returned value = -1
process_vm_writev    3  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=-1
process_vm_writev    4  TPASS  :  expected ret success - returned value = -1
process_vm_writev    5  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=1
process_vm_writev    6  TPASS  :  expected ret success - returned value = -1
process_vm_writev    7  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=2147483647
process_vm_writev    8  TPASS  :  expected ret success - returned value = -1
process_vm_writev    9  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=0
process_vm_writev   10  TPASS  :  expected ret success - returned value = 4096
process_vm_writev    0  TINFO  :  test_iov_len_overflow
process_vm_writev   11  TPASS  :  expected ret success - returned value = -1
process_vm_writev   12  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_iov_invalid - lvec->iov_base
process_vm_writev   13  TPASS  :  expected ret success - returned value = -1
process_vm_writev   14  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - rvec->iov_base
process_vm_writev   15  TPASS  :  expected ret success - returned value = -1
process_vm_writev   16  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - lvec
process_vm_writev   17  TPASS  :  expected ret success - returned value = -1
process_vm_writev   18  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - rvec
process_vm_writev   19  TPASS  :  expected ret success - returned value = -1
process_vm_writev   20  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_invalid_pid
process_vm_writev   21  TPASS  :  expected ret success - returned value = -1
process_vm_writev   22  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_writev   23  TPASS  :  expected ret success - returned value = -1
process_vm_writev   24  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_writev    0  TINFO  :  test_invalid_perm
process_vm_writev   25  TPASS  :  expected ret success - returned value = -1
process_vm_writev   26  TPASS  :  expected failure: TEST_ERRNO=EPERM(1): Operation not permitted
process_vm_writev    0  TINFO  :  test_sane_params
process_vm_writev    1  TPASS  :  expected ret success - returned value = 4096
process_vm_writev    0  TINFO  :  test_flags, flags=-2147483647
process_vm_writev    2  TPASS  :  expected ret success - returned value = -1
process_vm_writev    3  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=-1
process_vm_writev    4  TPASS  :  expected ret success - returned value = -1
process_vm_writev    5  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=1
process_vm_writev    6  TPASS  :  expected ret success - returned value = -1
process_vm_writev    7  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=2147483647
process_vm_writev    8  TPASS  :  expected ret success - returned value = -1
process_vm_writev    9  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_flags, flags=0
process_vm_writev   10  TPASS  :  expected ret success - returned value = 4096
process_vm_writev    0  TINFO  :  test_iov_len_overflow
process_vm_writev   11  TPASS  :  expected ret success - returned value = -1
process_vm_writev   12  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
process_vm_writev    0  TINFO  :  test_iov_invalid - lvec->iov_base
process_vm_writev   13  TPASS  :  expected ret success - returned value = -1
process_vm_writev   14  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - rvec->iov_base
process_vm_writev   15  TPASS  :  expected ret success - returned value = -1
process_vm_writev   16  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - lvec
process_vm_writev   17  TPASS  :  expected ret success - returned value = -1
process_vm_writev   18  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_iov_invalid - rvec
process_vm_writev   19  TPASS  :  expected ret success - returned value = -1
process_vm_writev   20  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_invalid_pid
process_vm_writev   21  TPASS  :  expected ret success - returned value = -1
process_vm_writev   22  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_writev   23  TPASS  :  expected ret success - returned value = -1
process_vm_writev   24  TPASS  :  expected failure: TEST_ERRNO=ESRCH(3): No such process
process_vm_writev    0  TINFO  :  test_invalid_perm
process_vm_writev    0  TINFO  :  test_invalid_protection lvec
process_vm_writev   25  TPASS  :  expected ret success - returned value = -1
process_vm_writev   26  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
process_vm_writev    0  TINFO  :  test_invalid_protection rvec
process_vm_writev   27  TPASS  :  expected ret success - returned value = -1
process_vm_writev   28  TPASS  :  expected failure: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=process_vm_writev02 stime=1372196067
cmdline="process_vm_writev02"
contacts=""
analysis=exit
<<<test_output>>>
process_vm_writev02    0  TINFO  :  child 2: write to the same memory location.
process_vm_writev02    0  TINFO  :  child 0: memory allocated.
process_vm_writev02    1  TPASS  :  child 0: all bytes are expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pselect01 stime=1372196067
cmdline="pselect01"
contacts=""
analysis=exit
<<<test_output>>>
pselect01    1  TPASS  :  Basic pselect syscall testing....OK
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 1 secs
pselect01    2  TPASS  :  Sleep time was correct (1.501030/1 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 2 secs
pselect01    3  TPASS  :  Sleep time was correct (2.502105/2 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 3 secs
pselect01    4  TPASS  :  Sleep time was correct (3.503106/3 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 4 secs
pselect01    5  TPASS  :  Sleep time was correct (4.504103/4 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 100000000 nano secs
pselect01    6  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 200000000 nano secs
pselect01    7  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 300000000 nano secs
pselect01    8  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 400000000 nano secs
pselect01    9  TPASS  :  Sleep time was correct
<<<execution_status>>>
initiation_status="ok"
duration=11 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pselect01_64 stime=1372196078
cmdline="pselect01_64"
contacts=""
analysis=exit
<<<test_output>>>
pselect01    1  TPASS  :  Basic pselect syscall testing....OK
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 1 secs
pselect01    2  TPASS  :  Sleep time was correct (1.501095/1 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 2 secs
pselect01    3  TPASS  :  Sleep time was correct (2.502106/2 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 3 secs
pselect01    4  TPASS  :  Sleep time was correct (3.503107/3 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 4 secs
pselect01    5  TPASS  :  Sleep time was correct (4.502063/4 < 20 %)
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 100000000 nano secs
pselect01    6  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 200000000 nano secs
pselect01    7  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 300000000 nano secs
pselect01    8  TPASS  :  Sleep time was correct
pselect01    0  TINFO  :  Testing basic pselect sanity,Sleeping for 400000000 nano secs
pselect01    9  TPASS  :  Sleep time was correct
<<<execution_status>>>
initiation_status="ok"
duration=11 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ptrace01 stime=1372196089
cmdline="ptrace01"
contacts=""
analysis=exit
<<<test_output>>>
ptrace01    1  TPASS  :  Test Passed
ptrace01    2  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ptrace02 stime=1372196089
cmdline="ptrace02"
contacts=""
analysis=exit
<<<test_output>>>
ptrace02    1  TPASS  :  Test Passed
ptrace02    1  TPASS  :  Test Passed
ptrace02    2  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ptrace03 stime=1372196089
cmdline="ptrace03"
contacts=""
analysis=exit
<<<test_output>>>
ptrace03    1  TCONF  :  this kernel allows to trace init
ptrace03    1  TCONF  :  this kernel allows to trace init
ptrace03    2  TPASS  :  Test Passed
ptrace03    1  TCONF  :  this kernel allows to trace init
ptrace03    2  TPASS  :  Test Passed
ptrace03    3  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ptrace04 stime=1372196089
cmdline="ptrace04"
contacts=""
analysis=exit
<<<test_output>>>
ptrace04    1  TCONF  :  test not supported for your arch (yet)
ptrace04    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ptrace05 stime=1372196089
cmdline="ptrace05"
contacts=""
analysis=exit
<<<test_output>>>
ptrace05    0  TINFO  :  [child] Sending kill(.., 0)
ptrace05    1  TPASS  :  kill(.., 0) exited with 0, as expected.
ptrace05    2  TPASS  :  Stopped as expected
ptrace05    3  TPASS  :  Stopped as expected
ptrace05    4  TPASS  :  Stopped as expected
ptrace05    5  TPASS  :  Stopped as expected
ptrace05    6  TPASS  :  Stopped as expected
ptrace05    7  TPASS  :  Stopped as expected
ptrace05    8  TPASS  :  Stopped as expected
ptrace05    9  TPASS  :  Stopped as expected
ptrace05   10  TPASS  :  Killed with SIGKILL, as expected.
ptrace05   11  TPASS  :  Stopped as expected
ptrace05   12  TPASS  :  Stopped as expected
ptrace05   13  TPASS  :  Stopped as expected
ptrace05   14  TPASS  :  Stopped as expected
ptrace05   15  TPASS  :  Stopped as expected
ptrace05   16  TPASS  :  Stopped as expected
ptrace05   17  TPASS  :  Stopped as expected
ptrace05   18  TPASS  :  Stopped as expected
ptrace05   19  TPASS  :  Stopped as expected
ptrace05   20  TPASS  :  Stopped as expected
ptrace05   21  TPASS  :  Stopped as expected
ptrace05   22  TPASS  :  Stopped as expected
ptrace05   23  TPASS  :  Stopped as expected
ptrace05   24  TPASS  :  Stopped as expected
ptrace05   25  TPASS  :  Stopped as expected
ptrace05   26  TPASS  :  Stopped as expected
ptrace05   27  TPASS  :  Stopped as expected
ptrace05   28  TPASS  :  Stopped as expected
ptrace05   29  TPASS  :  Stopped as expected
ptrace05   30  TPASS  :  Stopped as expected
ptrace05   31  TPASS  :  Stopped as expected
ptrace05   32  TPASS  :  Stopped as expected
ptrace05   33  TPASS  :  Stopped as expected
ptrace05   34  TPASS  :  Stopped as expected
ptrace05   35  TPASS  :  Stopped as expected
ptrace05   36  TPASS  :  Stopped as expected
ptrace05   37  TPASS  :  Stopped as expected
ptrace05   38  TPASS  :  Stopped as expected
ptrace05   39  TPASS  :  Stopped as expected
ptrace05   40  TPASS  :  Stopped as expected
ptrace05   41  TPASS  :  Stopped as expected
ptrace05   42  TPASS  :  Stopped as expected
ptrace05   43  TPASS  :  Stopped as expected
ptrace05   44  TPASS  :  Stopped as expected
ptrace05   45  TPASS  :  Stopped as expected
ptrace05   46  TPASS  :  Stopped as expected
ptrace05   47  TPASS  :  Stopped as expected
ptrace05   48  TPASS  :  Stopped as expected
ptrace05   49  TPASS  :  Stopped as expected
ptrace05   50  TPASS  :  Stopped as expected
ptrace05   51  TPASS  :  Stopped as expected
ptrace05   52  TPASS  :  Stopped as expected
ptrace05   53  TPASS  :  Stopped as expected
ptrace05   54  TPASS  :  Stopped as expected
ptrace05   55  TPASS  :  Stopped as expected
ptrace05   56  TPASS  :  Stopped as expected
ptrace05   57  TPASS  :  Stopped as expected
ptrace05   58  TPASS  :  Stopped as expected
ptrace05   59  TPASS  :  Stopped as expected
ptrace05   60  TPASS  :  Stopped as expected
ptrace05   61  TPASS  :  Stopped as expected
ptrace05   62  TPASS  :  Stopped as expected
ptrace05   63  TPASS  :  Stopped as expected
ptrace05   64  TPASS  :  Stopped as expected
ptrace05   65  TPASS  :  Stopped as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pwrite01 stime=1372196089
cmdline="pwrite01"
contacts=""
analysis=exit
<<<test_output>>>
pwrite01    1  TPASS  :  Functionality of pwrite() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite02 stime=1372196089
cmdline="pwrite02"
contacts=""
analysis=exit
<<<test_output>>>
pwrite02    1  TPASS  :  file descriptor is a PIPE or FIFO, errno:29
pwrite02    2  TPASS  :  specified offset is -ve or invalid, errno:22
pwrite02    3  TPASS  :  file descriptor is bad, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite03 stime=1372196089
cmdline="pwrite03"
contacts=""
analysis=exit
<<<test_output>>>
pwrite03    1  TPASS  :  pwrite() fails with expected error EFAULT errno:14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite04 stime=1372196089
cmdline="pwrite04"
contacts=""
analysis=exit
<<<test_output>>>
pwrite04    1  TPASS  :  O_APPEND test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite01_64 stime=1372196089
cmdline="pwrite01_64"
contacts=""
analysis=exit
<<<test_output>>>
pwrite01    1  TPASS  :  Functionality of pwrite() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite02_64 stime=1372196089
cmdline="pwrite02_64"
contacts=""
analysis=exit
<<<test_output>>>
pwrite02    1  TPASS  :  file descriptor is a PIPE or FIFO, errno:29
pwrite02    2  TPASS  :  specified offset is -ve or invalid, errno:22
pwrite02    3  TPASS  :  file descriptor is bad, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pwrite03_64 stime=1372196089
cmdline="pwrite03_64"
contacts=""
analysis=exit
<<<test_output>>>
pwrite03    1  TPASS  :  pwrite() fails with expected error EFAULT errno:14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pwrite04_64 stime=1372196089
cmdline="pwrite04_64"
contacts=""
analysis=exit
<<<test_output>>>
pwrite04    1  TPASS  :  O_APPEND test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=quotactl01 stime=1372196089
cmdline="quotactl01"
contacts=""
analysis=exit
<<<test_output>>>
quotactl01    1  TCONF  :  failed to enable quotas on block device: (null); 1. Ensure that the device is mounted with the quota option. 2. Check the filesystem status with `quotacheck (null)': errno=ENODEV(19): No such device
quotactl01    2  TCONF  :  Remaining cases not appropriate for configuration: errno=ENODEV(19): No such device
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=read01 stime=1372196089
cmdline="read01"
contacts=""
analysis=exit
<<<test_output>>>
read01      1  TPASS  :  read(pfds) returned 512
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=read02 stime=1372196089
cmdline="read02"
contacts=""
analysis=exit
<<<test_output>>>
read02      1  TPASS  :  expected failure - errno = 9 : Bad file descriptor
read02      2  TPASS  :  expected failure - errno = 21 : Is a directory
read02      3  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=read03 stime=1372196089
cmdline="read03"
contacts=""
analysis=exit
<<<test_output>>>
read03      0  TINFO  :  read() succeded in setting errno to EAGAIN
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=read04 stime=1372196089
cmdline="read04"
contacts=""
analysis=exit
<<<test_output>>>
read04      1  TPASS  :  functionality of read() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=readahead01 stime=1372196089
cmdline="readahead01"
contacts=""
analysis=exit
<<<test_output>>>
readahead01    0  TINFO  :  test_bad_fd -1
readahead01    1  TPASS  :  expected ret success - returned value = -1
readahead01    2  TPASS  :  expected failure: TEST_ERRNO=EBADF(9): Bad file descriptor
readahead01    0  TINFO  :  test_bad_fd O_WRONLY
readahead01    3  TPASS  :  expected ret success - returned value = -1
readahead01    4  TPASS  :  expected failure: TEST_ERRNO=EBADF(9): Bad file descriptor
readahead01    0  TINFO  :  test_invalid_fd pipe
readahead01    5  TPASS  :  expected ret success - returned value = -1
readahead01    6  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
readahead01    0  TINFO  :  test_invalid_fd socket
readahead01    7  TPASS  :  expected ret success - returned value = -1
readahead01    8  TPASS  :  expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readahead02 stime=1372196089
cmdline="readahead02"
contacts=""
analysis=exit
<<<test_output>>>
readahead02    0  TINFO  :  creating test file of size: 67108864
readahead02    0  TINFO  :  read_testfile(0)
readahead02    0  TINFO  :  read_testfile(1)
readahead02    1  TPASS  :  expected ret success - returned value = 0
readahead02    2  TPASS  :  offset is still at 0 as expected
readahead02    0  TINFO  :  read_testfile(0) took: 1179643 usec
readahead02    0  TINFO  :  read_testfile(1) took: 195686 usec
readahead02    0  TINFO  :  read_testfile(0) read: 67108864 bytes
readahead02    0  TINFO  :  read_testfile(1) read: 0 bytes
readahead02    3  TPASS  :  readahead saved some I/O
readahead02    0  TINFO  :  cache can hold at least: 1574480 kB
readahead02    0  TINFO  :  read_testfile(0) used cache: 137324 kB
readahead02    0  TINFO  :  read_testfile(1) used cache: 123064 kB
readahead02    4  TPASS  :  using cache as expected
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=99
<<<test_end>>>
<<<test_start>>>
tag=readdir01 stime=1372196095
cmdline="readdir01"
contacts=""
analysis=exit
<<<test_output>>>
readdir01    1  TPASS  :  found all 10 that were created
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readdir02 stime=1372196095
cmdline="readdir02"
contacts=""
analysis=exit
<<<test_output>>>
readdir02    1  TPASS  :  expected failure - errno = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readlink01A stime=1372196095
cmdline="symlink01 -T readlink01"
contacts=""
analysis=exit
<<<test_output>>>
readlink01    1  TPASS  :  Reading of symbolic link file contents checks out ok
readlink01    2  TPASS  :  Reading of symbolic link file contents checks out ok
readlink01    3  TPASS  :  Reading a symbolic link which exceeds maximum pathname error is caught
readlink01    4  TPASS  :  Reading a nonsymbolic link file error condition is caught.  EINVAL is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=readlink01 stime=1372196095
cmdline="readlink01"
contacts=""
analysis=exit
<<<test_output>>>
readlink01    1  TPASS  :  readlink() functionality on 'slink_file' is correct
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readlink02 stime=1372196096
cmdline="readlink02"
contacts=""
analysis=exit
<<<test_output>>>
readlink02    1  TPASS  :  readlink(./sl_20166, buf, 255) returned 13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readlink03 stime=1372196096
cmdline="readlink03"
contacts=""
analysis=exit
<<<test_output>>>
readlink03    1  TPASS  :  readlink(), No Search permissions to process, returned errno 13
readlink03    2  TPASS  :  readlink(), No Search permissions to process, returned errno 13
readlink03    3  TPASS  :  readlink(), Buffer size is not positive, returned errno 22
readlink03    4  TPASS  :  readlink(), Buffer size is not positive, returned errno 22
readlink03    5  TPASS  :  readlink(), File is not symbolic link, returned errno 22
readlink03    6  TPASS  :  readlink(), File is not symbolic link, returned errno 22
readlink03    7  TPASS  :  readlink(), Symlink path too long, returned errno 36
readlink03    8  TPASS  :  readlink(), Symlink path too long, returned errno 36
readlink03    9  TPASS  :  readlink(), Symlink Pathname is empty, returned errno 2
readlink03   10  TPASS  :  readlink(), Symlink Pathname is empty, returned errno 2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readlink04 stime=1372196096
cmdline="cp -f $LTPROOT/testcases/bin/creat_slink $TMPDIR; readlink04"
contacts=""
analysis=exit
<<<test_output>>>
cp: cannot stat `/opt/ltp/testcases/bin/creat_slink': No such file or directory
readlink04    1  TPASS  :  readlink() functionality on 'slink_file' is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=readlinkat01 stime=1372196096
cmdline="readlinkat01"
contacts=""
analysis=exit
<<<test_output>>>
readlinkat01    1  TPASS  :  readlinkat() returned the expected  errno 0: Success
readlinkat01    2  TPASS  :  readlinkat() returned the expected  errno 0: Success
readlinkat01    3  TPASS  :  readlinkat() returned the expected  errno 20: Not a directory
readlinkat01    4  TPASS  :  readlinkat() returned the expected  errno 9: Bad file descriptor
readlinkat01    5  TPASS  :  readlinkat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readv01 stime=1372196096
cmdline="readv01"
contacts=""
analysis=exit
<<<test_output>>>
readv01     1  TPASS  :  readv read 0 io vectors
readv01     2  TPASS  :  readv passed reading 64 bytes, followed by two NULL vectors
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readv02 stime=1372196096
cmdline="readv02"
contacts=""
analysis=exit
<<<test_output>>>
readv02     1  TPASS  :  got EINVAL
readv02     2  TPASS  :  got EFAULT
readv02     3  TPASS  :  got EBADF
readv02     4  TPASS  :  got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=readv03 stime=1372196096
cmdline="readv03"
contacts=""
analysis=exit
<<<test_output>>>
readv03     1  TPASS  :  got EISDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=reboot01 stime=1372196096
cmdline="reboot01"
contacts=""
analysis=exit
<<<test_output>>>
reboot01    1  TPASS  :  reboot(2) Passed for option LINUX_REBOOT_CMD_CAD_ON
reboot01    2  TPASS  :  reboot(2) Passed for option LINUX_REBOOT_CMD_CAD_OFF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=reboot02 stime=1372196096
cmdline="reboot02"
contacts=""
analysis=exit
<<<test_output>>>
reboot02    1  TPASS  :  reboot(2) expected failure; Got errno - EINVAL : Invalid flag
reboot02    1  TPASS  :  reboot(2) expected failure; Got errno - EPERM  : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=recv01 stime=1372196096
cmdline="recv01"
contacts=""
analysis=exit
<<<test_output>>>
recv01      1  TPASS  :  bad file descriptor successful
recv01      2  TPASS  :  invalid socket successful
recv01      3  TPASS  :  invalid recv buffer successful
recv01      4  TPASS  :  invalid flags set successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=recvfrom01 stime=1372196096
cmdline="recvfrom01"
contacts=""
analysis=exit
<<<test_output>>>
recvfrom01    1  TPASS  :  bad file descriptor successful
recvfrom01    2  TPASS  :  invalid socket successful
recvfrom01    3  TPASS  :  invalid socket buffer successful
recvfrom01    4  TPASS  :  invalid socket length successful
recvfrom01    5  TPASS  :  invalid recv buffer successful
recvfrom01    6  TPASS  :  invalid flags set successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=recvmsg01 stime=1372196096
cmdline="recvmsg01"
contacts=""
analysis=exit
<<<test_output>>>
recvmsg01    1  TPASS  :  bad file descriptor successful
recvmsg01    2  TPASS  :  invalid socket successful
recvmsg01    3  TPASS  :  invalid socket buffer successful
recvmsg01    4  TPASS  :  invalid socket length successful
recvmsg01    5  TPASS  :  invalid recv buffer successful
recvmsg01    6  TPASS  :  invalid iovec buffer successful
recvmsg01    7  TPASS  :  invalid iovec count successful
recvmsg01    8  TPASS  :  rights reception successful
recvmsg01    9  TPASS  :  invalid flags set successful
recvmsg01   10  TPASS  :  invalid cmsg length successful
recvmsg01   11  TPASS  :  large cmesg length successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=remap_file_pages01 stime=1372196096
cmdline="remap_file_pages01"
contacts=""
analysis=exit
<<<test_output>>>
remap_file_pages01    1  TPASS  :  Non-Linear shm file OK
remap_file_pages01    2  TPASS  :  Non-Linear /tmp/ file OK
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=remap_file_pages02 stime=1372196096
cmdline="remap_file_pages02"
contacts=""
analysis=exit
<<<test_output>>>
remap_file_pages02    1  TPASS  :  remap_file_pages(2) expected failure; Got errno - EINVAL : start does not refer to a valid mapping created with the MAP_SHARED flag
remap_file_pages02    2  TPASS  :  remap_file_pages(2) expected failure; Got errno - EINVAL : start is invalid
remap_file_pages02    3  TPASS  :  remap_file_pages(2) expected failure; Got errno - EINVAL : size is invalid
remap_file_pages02    4  TPASS  :  remap_file_pages(2) expected failure; Got errno - EINVAL : prot is invalid
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename01 stime=1372196096
cmdline="rename01"
contacts=""
analysis=exit
<<<test_output>>>
rename01    1  TPASS  :  functionality is correct for renaming a file
rename01    2  TPASS  :  functionality is correct for renaming a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename01A stime=1372196096
cmdline="symlink01 -T rename01"
contacts=""
analysis=exit
<<<test_output>>>
rename01    1  TPASS  :  rename(3) of symbolic link file name which points at no object file is ok
rename01    2  TPASS  :  rename(3) of symbolic link file name which points at object file is ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename02 stime=1372196096
cmdline="rename02"
contacts=""
analysis=exit
<<<test_output>>>
rename02    1  TPASS  :  rename(./tfile_20187, ./rnfile_20187) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename03 stime=1372196096
cmdline="rename03"
contacts=""
analysis=exit
<<<test_output>>>
rename03    1  TPASS  :  functionality is correct for renaming a file
rename03    2  TPASS  :  functionality is correct for renaming a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=rename04 stime=1372196096
cmdline="rename04"
contacts=""
analysis=exit
<<<test_output>>>
rename04    1  TPASS  :  rename() returned ENOTEMPTY
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename05 stime=1372196096
cmdline="rename05"
contacts=""
analysis=exit
<<<test_output>>>
rename05    1  TPASS  :  rename() returned EISDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename06 stime=1372196096
cmdline="rename06"
contacts=""
analysis=exit
<<<test_output>>>
rename06    1  TPASS  :  rename() returned EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename07 stime=1372196096
cmdline="rename07"
contacts=""
analysis=exit
<<<test_output>>>
rename07    1  TPASS  :  rename() returned ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename08 stime=1372196096
cmdline="rename08"
contacts=""
analysis=exit
<<<test_output>>>
rename08    1  TPASS  :  expected failure - errno = 14 : Bad address
rename08    2  TPASS  :  expected failure - errno = 14 : Bad address
rename08    3  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename09 stime=1372196096
cmdline="rename09"
contacts=""
analysis=exit
<<<test_output>>>
rename09    1  TPASS  :  rename() returned EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=rename10 stime=1372196096
cmdline="rename10"
contacts=""
analysis=exit
<<<test_output>>>
rename10    1  TPASS  :  expected failure - errno = 36 : File name too long
rename10    2  TPASS  :  expected failure - errno = 2 : No such file or directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename12 stime=1372196096
cmdline="rename12"
contacts=""
analysis=exit
<<<test_output>>>
rename12    1  TPASS  :  rename returned EPERM or EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename13 stime=1372196096
cmdline="rename13"
contacts=""
analysis=exit
<<<test_output>>>
rename13    1  TPASS  :  functionality of rename() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rename14 stime=1372196096
cmdline="rename14"
contacts=""
analysis=exit
<<<test_output>>>
rename14    1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=45 termination_type=exited termination_id=0 corefile=no
cutime=227 cstime=7274
<<<test_end>>>
<<<test_start>>>
tag=renameat01 stime=1372196141
cmdline="renameat01"
contacts=""
analysis=exit
<<<test_output>>>
renameat01    1  TPASS  :  renameat failed as expected: TEST_ERRNO=???(0): Success
renameat01    2  TPASS  :  renameat failed as expected: TEST_ERRNO=???(0): Success
renameat01    3  TPASS  :  renameat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
renameat01    4  TPASS  :  renameat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
renameat01    5  TPASS  :  renameat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rmdir01 stime=1372196141
cmdline="rmdir01"
contacts=""
analysis=exit
<<<test_output>>>
rmdir01     1  TPASS  :  directory has been removed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rmdir02 stime=1372196141
cmdline="rmdir02"
contacts=""
analysis=exit
<<<test_output>>>
rmdir02     1  TPASS  :  expected failure - errno = 39 : Directory not empty
rmdir02     2  TPASS  :  expected failure - errno = 36 : File name too long
rmdir02     3  TPASS  :  expected failure - errno = 2 : No such file or directory
rmdir02     4  TPASS  :  expected failure - errno = 20 : Not a directory
rmdir02     5  TPASS  :  expected failure - errno = 14 : Bad address
rmdir02     6  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=rmdir03 stime=1372196141
cmdline="rmdir03"
contacts=""
analysis=exit
<<<test_output>>>
rmdir03     1  TPASS  :  rmdir() produced EPERM or EACCES
rmdir03     1  TPASS  :  rmdir() produced EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rmdir03A stime=1372196141
cmdline="symlink01 -T rmdir03"
contacts=""
analysis=exit
<<<test_output>>>
rmdir03     1  TPASS  :  rmdir(2) of object file through symbolic link file failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rmdir04 stime=1372196141
cmdline="rmdir04"
contacts=""
analysis=exit
<<<test_output>>>
rmdir04     1  TPASS  :  rmdir(./dir_20212) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rmdir05 stime=1372196141
cmdline="rmdir05"
contacts=""
analysis=exit
<<<test_output>>>
rmdir05     1  TPASS  :  rmdir(".") failed to remove the current working directory. Returned 22 : Invalid argument
rmdir05     2  TCONF  :  rmdir on "dir/." supported on Linux
rmdir05     3  TCONF  :  linked directories test not implemented on Linux
rmdir05     4  TPASS  :  rmdir() - path argument points below the minimum allocated address space failed as expected with errno 14 : Bad address
rmdir05     5  TPASS  :  rmdir() - path argument points above the maximum allocated address space failed as expected with errno 14 : Bad address
rmdir05     6  TPASS  :  rmdir("./dir_20213") removed the directory as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigaction01 stime=1372196141
cmdline="rt_sigaction01"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigaction01    0  TINFO  :  signal: 34 
rt_sigaction01    1  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 34

rt_sigaction01    0  TINFO  :  signal: 34 
rt_sigaction01    2  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 34

rt_sigaction01    0  TINFO  :  signal: 34 
rt_sigaction01    3  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 34

rt_sigaction01    0  TINFO  :  signal: 34 
rt_sigaction01    4  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 34

rt_sigaction01    0  TINFO  :  signal: 34 
rt_sigaction01    5  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 34

rt_sigaction01    0  TINFO  :  signal: 35 
rt_sigaction01    6  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 35

rt_sigaction01    0  TINFO  :  signal: 35 
rt_sigaction01    7  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 35

rt_sigaction01    0  TINFO  :  signal: 35 
rt_sigaction01    8  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 35

rt_sigaction01    0  TINFO  :  signal: 35 
rt_sigaction01    9  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 35

rt_sigaction01    0  TINFO  :  signal: 35 
rt_sigaction01   10  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 35

rt_sigaction01    0  TINFO  :  signal: 36 
rt_sigaction01   11  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 36

rt_sigaction01    0  TINFO  :  signal: 36 
rt_sigaction01   12  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 36

rt_sigaction01    0  TINFO  :  signal: 36 
rt_sigaction01   13  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 36

rt_sigaction01    0  TINFO  :  signal: 36 
rt_sigaction01   14  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 36

rt_sigaction01    0  TINFO  :  signal: 36 
rt_sigaction01   15  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 36

rt_sigaction01    0  TINFO  :  signal: 37 
rt_sigaction01   16  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 37

rt_sigaction01    0  TINFO  :  signal: 37 
rt_sigaction01   17  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 37

rt_sigaction01    0  TINFO  :  signal: 37 
rt_sigaction01   18  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 37

rt_sigaction01    0  TINFO  :  signal: 37 
rt_sigaction01   19  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 37

rt_sigaction01    0  TINFO  :  signal: 37 
rt_sigaction01   20  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 37

rt_sigaction01    0  TINFO  :  signal: 38 
rt_sigaction01   21  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 38

rt_sigaction01    0  TINFO  :  signal: 38 
rt_sigaction01   22  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 38

rt_sigaction01    0  TINFO  :  signal: 38 
rt_sigaction01   23  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 38

rt_sigaction01    0  TINFO  :  signal: 38 
rt_sigaction01   24  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 38

rt_sigaction01    0  TINFO  :  signal: 38 
rt_sigaction01   25  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 38

rt_sigaction01    0  TINFO  :  signal: 39 
rt_sigaction01   26  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 39

rt_sigaction01    0  TINFO  :  signal: 39 
rt_sigaction01   27  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 39

rt_sigaction01    0  TINFO  :  signal: 39 
rt_sigaction01   28  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 39

rt_sigaction01    0  TINFO  :  signal: 39 
rt_sigaction01   29  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 39

rt_sigaction01    0  TINFO  :  signal: 39 
rt_sigaction01   30  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 39

rt_sigaction01    0  TINFO  :  signal: 40 
rt_sigaction01   31  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 40

rt_sigaction01    0  TINFO  :  signal: 40 
rt_sigaction01   32  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 40

rt_sigaction01    0  TINFO  :  signal: 40 
rt_sigaction01   33  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 40

rt_sigaction01    0  TINFO  :  signal: 40 
rt_sigaction01   34  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 40

rt_sigaction01    0  TINFO  :  signal: 40 
rt_sigaction01   35  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 40

rt_sigaction01    0  TINFO  :  signal: 41 
rt_sigaction01   36  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 41

rt_sigaction01    0  TINFO  :  signal: 41 
rt_sigaction01   37  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 41

rt_sigaction01    0  TINFO  :  signal: 41 
rt_sigaction01   38  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 41

rt_sigaction01    0  TINFO  :  signal: 41 
rt_sigaction01   39  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 41

rt_sigaction01    0  TINFO  :  signal: 41 
rt_sigaction01   40  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 41

rt_sigaction01    0  TINFO  :  signal: 42 
rt_sigaction01   41  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 42

rt_sigaction01    0  TINFO  :  signal: 42 
rt_sigaction01   42  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 42

rt_sigaction01    0  TINFO  :  signal: 42 
rt_sigaction01   43  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 42

rt_sigaction01    0  TINFO  :  signal: 42 
rt_sigaction01   44  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 42

rt_sigaction01    0  TINFO  :  signal: 42 
rt_sigaction01   45  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 42

rt_sigaction01    0  TINFO  :  signal: 43 
rt_sigaction01   46  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 43

rt_sigaction01    0  TINFO  :  signal: 43 
rt_sigaction01   47  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 43

rt_sigaction01    0  TINFO  :  signal: 43 
rt_sigaction01   48  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 43

rt_sigaction01    0  TINFO  :  signal: 43 
rt_sigaction01   49  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 43

rt_sigaction01    0  TINFO  :  signal: 43 
rt_sigaction01   50  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 43

rt_sigaction01    0  TINFO  :  signal: 44 
rt_sigaction01   51  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 44

rt_sigaction01    0  TINFO  :  signal: 44 
rt_sigaction01   52  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 44

rt_sigaction01    0  TINFO  :  signal: 44 
rt_sigaction01   53  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 44

rt_sigaction01    0  TINFO  :  signal: 44 
rt_sigaction01   54  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 44

rt_sigaction01    0  TINFO  :  signal: 44 
rt_sigaction01   55  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 44

rt_sigaction01    0  TINFO  :  signal: 45 
rt_sigaction01   56  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 45

rt_sigaction01    0  TINFO  :  signal: 45 
rt_sigaction01   57  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 45

rt_sigaction01    0  TINFO  :  signal: 45 
rt_sigaction01   58  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 45

rt_sigaction01    0  TINFO  :  signal: 45 
rt_sigaction01   59  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 45

rt_sigaction01    0  TINFO  :  signal: 45 
rt_sigaction01   60  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 45

rt_sigaction01    0  TINFO  :  signal: 46 
rt_sigaction01   61  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 46

rt_sigaction01    0  TINFO  :  signal: 46 
rt_sigaction01   62  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 46

rt_sigaction01    0  TINFO  :  signal: 46 
rt_sigaction01   63  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 46

rt_sigaction01    0  TINFO  :  signal: 46 
rt_sigaction01   64  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 46

rt_sigaction01    0  TINFO  :  signal: 46 
rt_sigaction01   65  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 46

rt_sigaction01    0  TINFO  :  signal: 47 
rt_sigaction01   66  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 47

rt_sigaction01    0  TINFO  :  signal: 47 
rt_sigaction01   67  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 47

rt_sigaction01    0  TINFO  :  signal: 47 
rt_sigaction01   68  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 47

rt_sigaction01    0  TINFO  :  signal: 47 
rt_sigaction01   69  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 47

rt_sigaction01    0  TINFO  :  signal: 47 
rt_sigaction01   70  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 47

rt_sigaction01    0  TINFO  :  signal: 48 
rt_sigaction01   71  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 48

rt_sigaction01    0  TINFO  :  signal: 48 
rt_sigaction01   72  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 48

rt_sigaction01    0  TINFO  :  signal: 48 
rt_sigaction01   73  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 48

rt_sigaction01    0  TINFO  :  signal: 48 
rt_sigaction01   74  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 48

rt_sigaction01    0  TINFO  :  signal: 48 
rt_sigaction01   75  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 48

rt_sigaction01    0  TINFO  :  signal: 49 
rt_sigaction01   76  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 49

rt_sigaction01    0  TINFO  :  signal: 49 
rt_sigaction01   77  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 49

rt_sigaction01    0  TINFO  :  signal: 49 
rt_sigaction01   78  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 49

rt_sigaction01    0  TINFO  :  signal: 49 
rt_sigaction01   79  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 49

rt_sigaction01    0  TINFO  :  signal: 49 
rt_sigaction01   80  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 49

rt_sigaction01    0  TINFO  :  signal: 50 
rt_sigaction01   81  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 50

rt_sigaction01    0  TINFO  :  signal: 50 
rt_sigaction01   82  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 50

rt_sigaction01    0  TINFO  :  signal: 50 
rt_sigaction01   83  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 50

rt_sigaction01    0  TINFO  :  signal: 50 
rt_sigaction01   84  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 50

rt_sigaction01    0  TINFO  :  signal: 50 
rt_sigaction01   85  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 50

rt_sigaction01    0  TINFO  :  signal: 51 
rt_sigaction01   86  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 51

rt_sigaction01    0  TINFO  :  signal: 51 
rt_sigaction01   87  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 51

rt_sigaction01    0  TINFO  :  signal: 51 
rt_sigaction01   88  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 51

rt_sigaction01    0  TINFO  :  signal: 51 
rt_sigaction01   89  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 51

rt_sigaction01    0  TINFO  :  signal: 51 
rt_sigaction01   90  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 51

rt_sigaction01    0  TINFO  :  signal: 52 
rt_sigaction01   91  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 52

rt_sigaction01    0  TINFO  :  signal: 52 
rt_sigaction01   92  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 52

rt_sigaction01    0  TINFO  :  signal: 52 
rt_sigaction01   93  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 52

rt_sigaction01    0  TINFO  :  signal: 52 
rt_sigaction01   94  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 52

rt_sigaction01    0  TINFO  :  signal: 52 
rt_sigaction01   95  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 52

rt_sigaction01    0  TINFO  :  signal: 53 
rt_sigaction01   96  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 53

rt_sigaction01    0  TINFO  :  signal: 53 
rt_sigaction01   97  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 53

rt_sigaction01    0  TINFO  :  signal: 53 
rt_sigaction01   98  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 53

rt_sigaction01    0  TINFO  :  signal: 53 
rt_sigaction01   99  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 53

rt_sigaction01    0  TINFO  :  signal: 53 
rt_sigaction01  100  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 53

rt_sigaction01    0  TINFO  :  signal: 54 
rt_sigaction01  101  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 54

rt_sigaction01    0  TINFO  :  signal: 54 
rt_sigaction01  102  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 54

rt_sigaction01    0  TINFO  :  signal: 54 
rt_sigaction01  103  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 54

rt_sigaction01    0  TINFO  :  signal: 54 
rt_sigaction01  104  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 54

rt_sigaction01    0  TINFO  :  signal: 54 
rt_sigaction01  105  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 54

rt_sigaction01    0  TINFO  :  signal: 55 
rt_sigaction01  106  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 55

rt_sigaction01    0  TINFO  :  signal: 55 
rt_sigaction01  107  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 55

rt_sigaction01    0  TINFO  :  signal: 55 
rt_sigaction01  108  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 55

rt_sigaction01    0  TINFO  :  signal: 55 
rt_sigaction01  109  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 55

rt_sigaction01    0  TINFO  :  signal: 55 
rt_sigaction01  110  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 55

rt_sigaction01    0  TINFO  :  signal: 56 
rt_sigaction01  111  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 56

rt_sigaction01    0  TINFO  :  signal: 56 
rt_sigaction01  112  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 56

rt_sigaction01    0  TINFO  :  signal: 56 
rt_sigaction01  113  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 56

rt_sigaction01    0  TINFO  :  signal: 56 
rt_sigaction01  114  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 56

rt_sigaction01    0  TINFO  :  signal: 56 
rt_sigaction01  115  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 56

rt_sigaction01    0  TINFO  :  signal: 57 
rt_sigaction01  116  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 57

rt_sigaction01    0  TINFO  :  signal: 57 
rt_sigaction01  117  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 57

rt_sigaction01    0  TINFO  :  signal: 57 
rt_sigaction01  118  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 57

rt_sigaction01    0  TINFO  :  signal: 57 
rt_sigaction01  119  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 57

rt_sigaction01    0  TINFO  :  signal: 57 
rt_sigaction01  120  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 57

rt_sigaction01    0  TINFO  :  signal: 58 
rt_sigaction01  121  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 58

rt_sigaction01    0  TINFO  :  signal: 58 
rt_sigaction01  122  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 58

rt_sigaction01    0  TINFO  :  signal: 58 
rt_sigaction01  123  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 58

rt_sigaction01    0  TINFO  :  signal: 58 
rt_sigaction01  124  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 58

rt_sigaction01    0  TINFO  :  signal: 58 
rt_sigaction01  125  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 58

rt_sigaction01    0  TINFO  :  signal: 59 
rt_sigaction01  126  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 59

rt_sigaction01    0  TINFO  :  signal: 59 
rt_sigaction01  127  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 59

rt_sigaction01    0  TINFO  :  signal: 59 
rt_sigaction01  128  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 59

rt_sigaction01    0  TINFO  :  signal: 59 
rt_sigaction01  129  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 59

rt_sigaction01    0  TINFO  :  signal: 59 
rt_sigaction01  130  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 59

rt_sigaction01    0  TINFO  :  signal: 60 
rt_sigaction01  131  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 60

rt_sigaction01    0  TINFO  :  signal: 60 
rt_sigaction01  132  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 60

rt_sigaction01    0  TINFO  :  signal: 60 
rt_sigaction01  133  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 60

rt_sigaction01    0  TINFO  :  signal: 60 
rt_sigaction01  134  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 60

rt_sigaction01    0  TINFO  :  signal: 60 
rt_sigaction01  135  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 60

rt_sigaction01    0  TINFO  :  signal: 61 
rt_sigaction01  136  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 61

rt_sigaction01    0  TINFO  :  signal: 61 
rt_sigaction01  137  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 61

rt_sigaction01    0  TINFO  :  signal: 61 
rt_sigaction01  138  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 61

rt_sigaction01    0  TINFO  :  signal: 61 
rt_sigaction01  139  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 61

rt_sigaction01    0  TINFO  :  signal: 61 
rt_sigaction01  140  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 61

rt_sigaction01    0  TINFO  :  signal: 62 
rt_sigaction01  141  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 62

rt_sigaction01    0  TINFO  :  signal: 62 
rt_sigaction01  142  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 62

rt_sigaction01    0  TINFO  :  signal: 62 
rt_sigaction01  143  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 62

rt_sigaction01    0  TINFO  :  signal: 62 
rt_sigaction01  144  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 62

rt_sigaction01    0  TINFO  :  signal: 62 
rt_sigaction01  145  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 62

rt_sigaction01    0  TINFO  :  signal: 63 
rt_sigaction01  146  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 63

rt_sigaction01    0  TINFO  :  signal: 63 
rt_sigaction01  147  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 63

rt_sigaction01    0  TINFO  :  signal: 63 
rt_sigaction01  148  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 63

rt_sigaction01    0  TINFO  :  signal: 63 
rt_sigaction01  149  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 63

rt_sigaction01    0  TINFO  :  signal: 63 
rt_sigaction01  150  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 63

rt_sigaction01    0  TINFO  :  signal: 64 
rt_sigaction01  151  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 64

rt_sigaction01    0  TINFO  :  signal: 64 
rt_sigaction01  152  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 64

rt_sigaction01    0  TINFO  :  signal: 64 
rt_sigaction01  153  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 64

rt_sigaction01    0  TINFO  :  signal: 64 
rt_sigaction01  154  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 64

rt_sigaction01    0  TINFO  :  signal: 64 
rt_sigaction01  155  TPASS  :  rt_sigaction call succeeded: result = 0 
rt_sigaction01    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction01    0  TINFO  :  Signal Handler Called with signal number 64

<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigaction02 stime=1372196141
cmdline="rt_sigaction02"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    1  TPASS  :  rt_sigaction02 failure with sig: 34 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02    2  TPASS  :  rt_sigaction02 failure with sig: 34 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    3  TPASS  :  rt_sigaction02 failure with sig: 34 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    4  TPASS  :  rt_sigaction02 failure with sig: 34 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02    5  TPASS  :  rt_sigaction02 failure with sig: 34 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    6  TPASS  :  rt_sigaction02 failure with sig: 35 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02    7  TPASS  :  rt_sigaction02 failure with sig: 35 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    8  TPASS  :  rt_sigaction02 failure with sig: 35 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02    9  TPASS  :  rt_sigaction02 failure with sig: 35 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   10  TPASS  :  rt_sigaction02 failure with sig: 35 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   11  TPASS  :  rt_sigaction02 failure with sig: 36 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   12  TPASS  :  rt_sigaction02 failure with sig: 36 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   13  TPASS  :  rt_sigaction02 failure with sig: 36 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   14  TPASS  :  rt_sigaction02 failure with sig: 36 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   15  TPASS  :  rt_sigaction02 failure with sig: 36 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   16  TPASS  :  rt_sigaction02 failure with sig: 37 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   17  TPASS  :  rt_sigaction02 failure with sig: 37 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   18  TPASS  :  rt_sigaction02 failure with sig: 37 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   19  TPASS  :  rt_sigaction02 failure with sig: 37 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   20  TPASS  :  rt_sigaction02 failure with sig: 37 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   21  TPASS  :  rt_sigaction02 failure with sig: 38 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   22  TPASS  :  rt_sigaction02 failure with sig: 38 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   23  TPASS  :  rt_sigaction02 failure with sig: 38 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   24  TPASS  :  rt_sigaction02 failure with sig: 38 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   25  TPASS  :  rt_sigaction02 failure with sig: 38 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   26  TPASS  :  rt_sigaction02 failure with sig: 39 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   27  TPASS  :  rt_sigaction02 failure with sig: 39 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   28  TPASS  :  rt_sigaction02 failure with sig: 39 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   29  TPASS  :  rt_sigaction02 failure with sig: 39 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   30  TPASS  :  rt_sigaction02 failure with sig: 39 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   31  TPASS  :  rt_sigaction02 failure with sig: 40 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   32  TPASS  :  rt_sigaction02 failure with sig: 40 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   33  TPASS  :  rt_sigaction02 failure with sig: 40 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   34  TPASS  :  rt_sigaction02 failure with sig: 40 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   35  TPASS  :  rt_sigaction02 failure with sig: 40 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   36  TPASS  :  rt_sigaction02 failure with sig: 41 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   37  TPASS  :  rt_sigaction02 failure with sig: 41 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   38  TPASS  :  rt_sigaction02 failure with sig: 41 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   39  TPASS  :  rt_sigaction02 failure with sig: 41 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   40  TPASS  :  rt_sigaction02 failure with sig: 41 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   41  TPASS  :  rt_sigaction02 failure with sig: 42 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   42  TPASS  :  rt_sigaction02 failure with sig: 42 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   43  TPASS  :  rt_sigaction02 failure with sig: 42 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   44  TPASS  :  rt_sigaction02 failure with sig: 42 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   45  TPASS  :  rt_sigaction02 failure with sig: 42 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   46  TPASS  :  rt_sigaction02 failure with sig: 43 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   47  TPASS  :  rt_sigaction02 failure with sig: 43 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   48  TPASS  :  rt_sigaction02 failure with sig: 43 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   49  TPASS  :  rt_sigaction02 failure with sig: 43 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   50  TPASS  :  rt_sigaction02 failure with sig: 43 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   51  TPASS  :  rt_sigaction02 failure with sig: 44 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   52  TPASS  :  rt_sigaction02 failure with sig: 44 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   53  TPASS  :  rt_sigaction02 failure with sig: 44 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   54  TPASS  :  rt_sigaction02 failure with sig: 44 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   55  TPASS  :  rt_sigaction02 failure with sig: 44 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   56  TPASS  :  rt_sigaction02 failure with sig: 45 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   57  TPASS  :  rt_sigaction02 failure with sig: 45 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   58  TPASS  :  rt_sigaction02 failure with sig: 45 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   59  TPASS  :  rt_sigaction02 failure with sig: 45 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   60  TPASS  :  rt_sigaction02 failure with sig: 45 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   61  TPASS  :  rt_sigaction02 failure with sig: 46 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   62  TPASS  :  rt_sigaction02 failure with sig: 46 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   63  TPASS  :  rt_sigaction02 failure with sig: 46 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   64  TPASS  :  rt_sigaction02 failure with sig: 46 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   65  TPASS  :  rt_sigaction02 failure with sig: 46 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   66  TPASS  :  rt_sigaction02 failure with sig: 47 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   67  TPASS  :  rt_sigaction02 failure with sig: 47 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   68  TPASS  :  rt_sigaction02 failure with sig: 47 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   69  TPASS  :  rt_sigaction02 failure with sig: 47 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   70  TPASS  :  rt_sigaction02 failure with sig: 47 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   71  TPASS  :  rt_sigaction02 failure with sig: 48 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   72  TPASS  :  rt_sigaction02 failure with sig: 48 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   73  TPASS  :  rt_sigaction02 failure with sig: 48 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   74  TPASS  :  rt_sigaction02 failure with sig: 48 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   75  TPASS  :  rt_sigaction02 failure with sig: 48 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   76  TPASS  :  rt_sigaction02 failure with sig: 49 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   77  TPASS  :  rt_sigaction02 failure with sig: 49 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   78  TPASS  :  rt_sigaction02 failure with sig: 49 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   79  TPASS  :  rt_sigaction02 failure with sig: 49 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   80  TPASS  :  rt_sigaction02 failure with sig: 49 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   81  TPASS  :  rt_sigaction02 failure with sig: 50 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   82  TPASS  :  rt_sigaction02 failure with sig: 50 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   83  TPASS  :  rt_sigaction02 failure with sig: 50 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   84  TPASS  :  rt_sigaction02 failure with sig: 50 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   85  TPASS  :  rt_sigaction02 failure with sig: 50 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   86  TPASS  :  rt_sigaction02 failure with sig: 51 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   87  TPASS  :  rt_sigaction02 failure with sig: 51 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   88  TPASS  :  rt_sigaction02 failure with sig: 51 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   89  TPASS  :  rt_sigaction02 failure with sig: 51 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   90  TPASS  :  rt_sigaction02 failure with sig: 51 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   91  TPASS  :  rt_sigaction02 failure with sig: 52 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   92  TPASS  :  rt_sigaction02 failure with sig: 52 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   93  TPASS  :  rt_sigaction02 failure with sig: 52 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   94  TPASS  :  rt_sigaction02 failure with sig: 52 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02   95  TPASS  :  rt_sigaction02 failure with sig: 52 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   96  TPASS  :  rt_sigaction02 failure with sig: 53 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02   97  TPASS  :  rt_sigaction02 failure with sig: 53 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   98  TPASS  :  rt_sigaction02 failure with sig: 53 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02   99  TPASS  :  rt_sigaction02 failure with sig: 53 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  100  TPASS  :  rt_sigaction02 failure with sig: 53 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  101  TPASS  :  rt_sigaction02 failure with sig: 54 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  102  TPASS  :  rt_sigaction02 failure with sig: 54 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  103  TPASS  :  rt_sigaction02 failure with sig: 54 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  104  TPASS  :  rt_sigaction02 failure with sig: 54 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  105  TPASS  :  rt_sigaction02 failure with sig: 54 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  106  TPASS  :  rt_sigaction02 failure with sig: 55 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  107  TPASS  :  rt_sigaction02 failure with sig: 55 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  108  TPASS  :  rt_sigaction02 failure with sig: 55 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  109  TPASS  :  rt_sigaction02 failure with sig: 55 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  110  TPASS  :  rt_sigaction02 failure with sig: 55 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  111  TPASS  :  rt_sigaction02 failure with sig: 56 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  112  TPASS  :  rt_sigaction02 failure with sig: 56 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  113  TPASS  :  rt_sigaction02 failure with sig: 56 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  114  TPASS  :  rt_sigaction02 failure with sig: 56 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  115  TPASS  :  rt_sigaction02 failure with sig: 56 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  116  TPASS  :  rt_sigaction02 failure with sig: 57 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  117  TPASS  :  rt_sigaction02 failure with sig: 57 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  118  TPASS  :  rt_sigaction02 failure with sig: 57 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  119  TPASS  :  rt_sigaction02 failure with sig: 57 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  120  TPASS  :  rt_sigaction02 failure with sig: 57 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  121  TPASS  :  rt_sigaction02 failure with sig: 58 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  122  TPASS  :  rt_sigaction02 failure with sig: 58 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  123  TPASS  :  rt_sigaction02 failure with sig: 58 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  124  TPASS  :  rt_sigaction02 failure with sig: 58 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  125  TPASS  :  rt_sigaction02 failure with sig: 58 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  126  TPASS  :  rt_sigaction02 failure with sig: 59 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  127  TPASS  :  rt_sigaction02 failure with sig: 59 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  128  TPASS  :  rt_sigaction02 failure with sig: 59 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  129  TPASS  :  rt_sigaction02 failure with sig: 59 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  130  TPASS  :  rt_sigaction02 failure with sig: 59 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  131  TPASS  :  rt_sigaction02 failure with sig: 60 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  132  TPASS  :  rt_sigaction02 failure with sig: 60 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  133  TPASS  :  rt_sigaction02 failure with sig: 60 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  134  TPASS  :  rt_sigaction02 failure with sig: 60 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  135  TPASS  :  rt_sigaction02 failure with sig: 60 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  136  TPASS  :  rt_sigaction02 failure with sig: 61 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  137  TPASS  :  rt_sigaction02 failure with sig: 61 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  138  TPASS  :  rt_sigaction02 failure with sig: 61 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  139  TPASS  :  rt_sigaction02 failure with sig: 61 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  140  TPASS  :  rt_sigaction02 failure with sig: 61 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  141  TPASS  :  rt_sigaction02 failure with sig: 62 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  142  TPASS  :  rt_sigaction02 failure with sig: 62 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  143  TPASS  :  rt_sigaction02 failure with sig: 62 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  144  TPASS  :  rt_sigaction02 failure with sig: 62 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  145  TPASS  :  rt_sigaction02 failure with sig: 62 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  146  TPASS  :  rt_sigaction02 failure with sig: 63 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  147  TPASS  :  rt_sigaction02 failure with sig: 63 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  148  TPASS  :  rt_sigaction02 failure with sig: 63 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  149  TPASS  :  rt_sigaction02 failure with sig: 63 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  150  TPASS  :  rt_sigaction02 failure with sig: 63 as expected errno  = EFAULT : Bad address

rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  151  TPASS  :  rt_sigaction02 failure with sig: 64 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction02  152  TPASS  :  rt_sigaction02 failure with sig: 64 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  153  TPASS  :  rt_sigaction02 failure with sig: 64 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction02  154  TPASS  :  rt_sigaction02 failure with sig: 64 as expected errno  = EFAULT : Bad address
rt_sigaction02    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction02  155  TPASS  :  rt_sigaction02 failure with sig: 64 as expected errno  = EFAULT : Bad address

<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=rt_sigaction03 stime=1372196141
cmdline="rt_sigaction03"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    1  TPASS  :  rt_sigaction03 failure with sig: 34 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03    2  TPASS  :  rt_sigaction03 failure with sig: 34 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    3  TPASS  :  rt_sigaction03 failure with sig: 34 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    4  TPASS  :  rt_sigaction03 failure with sig: 34 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03    5  TPASS  :  rt_sigaction03 failure with sig: 34 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    6  TPASS  :  rt_sigaction03 failure with sig: 35 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03    7  TPASS  :  rt_sigaction03 failure with sig: 35 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    8  TPASS  :  rt_sigaction03 failure with sig: 35 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03    9  TPASS  :  rt_sigaction03 failure with sig: 35 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   10  TPASS  :  rt_sigaction03 failure with sig: 35 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   11  TPASS  :  rt_sigaction03 failure with sig: 36 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   12  TPASS  :  rt_sigaction03 failure with sig: 36 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   13  TPASS  :  rt_sigaction03 failure with sig: 36 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   14  TPASS  :  rt_sigaction03 failure with sig: 36 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   15  TPASS  :  rt_sigaction03 failure with sig: 36 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   16  TPASS  :  rt_sigaction03 failure with sig: 37 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   17  TPASS  :  rt_sigaction03 failure with sig: 37 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   18  TPASS  :  rt_sigaction03 failure with sig: 37 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   19  TPASS  :  rt_sigaction03 failure with sig: 37 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   20  TPASS  :  rt_sigaction03 failure with sig: 37 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   21  TPASS  :  rt_sigaction03 failure with sig: 38 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   22  TPASS  :  rt_sigaction03 failure with sig: 38 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   23  TPASS  :  rt_sigaction03 failure with sig: 38 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   24  TPASS  :  rt_sigaction03 failure with sig: 38 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   25  TPASS  :  rt_sigaction03 failure with sig: 38 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   26  TPASS  :  rt_sigaction03 failure with sig: 39 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   27  TPASS  :  rt_sigaction03 failure with sig: 39 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   28  TPASS  :  rt_sigaction03 failure with sig: 39 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   29  TPASS  :  rt_sigaction03 failure with sig: 39 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   30  TPASS  :  rt_sigaction03 failure with sig: 39 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   31  TPASS  :  rt_sigaction03 failure with sig: 40 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   32  TPASS  :  rt_sigaction03 failure with sig: 40 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   33  TPASS  :  rt_sigaction03 failure with sig: 40 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   34  TPASS  :  rt_sigaction03 failure with sig: 40 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   35  TPASS  :  rt_sigaction03 failure with sig: 40 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   36  TPASS  :  rt_sigaction03 failure with sig: 41 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   37  TPASS  :  rt_sigaction03 failure with sig: 41 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   38  TPASS  :  rt_sigaction03 failure with sig: 41 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   39  TPASS  :  rt_sigaction03 failure with sig: 41 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   40  TPASS  :  rt_sigaction03 failure with sig: 41 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   41  TPASS  :  rt_sigaction03 failure with sig: 42 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   42  TPASS  :  rt_sigaction03 failure with sig: 42 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   43  TPASS  :  rt_sigaction03 failure with sig: 42 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   44  TPASS  :  rt_sigaction03 failure with sig: 42 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   45  TPASS  :  rt_sigaction03 failure with sig: 42 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   46  TPASS  :  rt_sigaction03 failure with sig: 43 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   47  TPASS  :  rt_sigaction03 failure with sig: 43 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   48  TPASS  :  rt_sigaction03 failure with sig: 43 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   49  TPASS  :  rt_sigaction03 failure with sig: 43 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   50  TPASS  :  rt_sigaction03 failure with sig: 43 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   51  TPASS  :  rt_sigaction03 failure with sig: 44 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   52  TPASS  :  rt_sigaction03 failure with sig: 44 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   53  TPASS  :  rt_sigaction03 failure with sig: 44 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   54  TPASS  :  rt_sigaction03 failure with sig: 44 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   55  TPASS  :  rt_sigaction03 failure with sig: 44 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   56  TPASS  :  rt_sigaction03 failure with sig: 45 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   57  TPASS  :  rt_sigaction03 failure with sig: 45 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   58  TPASS  :  rt_sigaction03 failure with sig: 45 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   59  TPASS  :  rt_sigaction03 failure with sig: 45 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   60  TPASS  :  rt_sigaction03 failure with sig: 45 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   61  TPASS  :  rt_sigaction03 failure with sig: 46 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   62  TPASS  :  rt_sigaction03 failure with sig: 46 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   63  TPASS  :  rt_sigaction03 failure with sig: 46 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   64  TPASS  :  rt_sigaction03 failure with sig: 46 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   65  TPASS  :  rt_sigaction03 failure with sig: 46 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   66  TPASS  :  rt_sigaction03 failure with sig: 47 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   67  TPASS  :  rt_sigaction03 failure with sig: 47 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   68  TPASS  :  rt_sigaction03 failure with sig: 47 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   69  TPASS  :  rt_sigaction03 failure with sig: 47 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   70  TPASS  :  rt_sigaction03 failure with sig: 47 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   71  TPASS  :  rt_sigaction03 failure with sig: 48 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   72  TPASS  :  rt_sigaction03 failure with sig: 48 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   73  TPASS  :  rt_sigaction03 failure with sig: 48 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   74  TPASS  :  rt_sigaction03 failure with sig: 48 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   75  TPASS  :  rt_sigaction03 failure with sig: 48 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   76  TPASS  :  rt_sigaction03 failure with sig: 49 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   77  TPASS  :  rt_sigaction03 failure with sig: 49 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   78  TPASS  :  rt_sigaction03 failure with sig: 49 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   79  TPASS  :  rt_sigaction03 failure with sig: 49 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   80  TPASS  :  rt_sigaction03 failure with sig: 49 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   81  TPASS  :  rt_sigaction03 failure with sig: 50 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   82  TPASS  :  rt_sigaction03 failure with sig: 50 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   83  TPASS  :  rt_sigaction03 failure with sig: 50 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   84  TPASS  :  rt_sigaction03 failure with sig: 50 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   85  TPASS  :  rt_sigaction03 failure with sig: 50 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   86  TPASS  :  rt_sigaction03 failure with sig: 51 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   87  TPASS  :  rt_sigaction03 failure with sig: 51 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   88  TPASS  :  rt_sigaction03 failure with sig: 51 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   89  TPASS  :  rt_sigaction03 failure with sig: 51 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   90  TPASS  :  rt_sigaction03 failure with sig: 51 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   91  TPASS  :  rt_sigaction03 failure with sig: 52 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   92  TPASS  :  rt_sigaction03 failure with sig: 52 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   93  TPASS  :  rt_sigaction03 failure with sig: 52 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   94  TPASS  :  rt_sigaction03 failure with sig: 52 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03   95  TPASS  :  rt_sigaction03 failure with sig: 52 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   96  TPASS  :  rt_sigaction03 failure with sig: 53 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03   97  TPASS  :  rt_sigaction03 failure with sig: 53 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   98  TPASS  :  rt_sigaction03 failure with sig: 53 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03   99  TPASS  :  rt_sigaction03 failure with sig: 53 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  100  TPASS  :  rt_sigaction03 failure with sig: 53 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  101  TPASS  :  rt_sigaction03 failure with sig: 54 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  102  TPASS  :  rt_sigaction03 failure with sig: 54 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  103  TPASS  :  rt_sigaction03 failure with sig: 54 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  104  TPASS  :  rt_sigaction03 failure with sig: 54 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  105  TPASS  :  rt_sigaction03 failure with sig: 54 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  106  TPASS  :  rt_sigaction03 failure with sig: 55 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  107  TPASS  :  rt_sigaction03 failure with sig: 55 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  108  TPASS  :  rt_sigaction03 failure with sig: 55 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  109  TPASS  :  rt_sigaction03 failure with sig: 55 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  110  TPASS  :  rt_sigaction03 failure with sig: 55 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  111  TPASS  :  rt_sigaction03 failure with sig: 56 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  112  TPASS  :  rt_sigaction03 failure with sig: 56 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  113  TPASS  :  rt_sigaction03 failure with sig: 56 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  114  TPASS  :  rt_sigaction03 failure with sig: 56 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  115  TPASS  :  rt_sigaction03 failure with sig: 56 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  116  TPASS  :  rt_sigaction03 failure with sig: 57 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  117  TPASS  :  rt_sigaction03 failure with sig: 57 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  118  TPASS  :  rt_sigaction03 failure with sig: 57 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  119  TPASS  :  rt_sigaction03 failure with sig: 57 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  120  TPASS  :  rt_sigaction03 failure with sig: 57 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  121  TPASS  :  rt_sigaction03 failure with sig: 58 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  122  TPASS  :  rt_sigaction03 failure with sig: 58 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  123  TPASS  :  rt_sigaction03 failure with sig: 58 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  124  TPASS  :  rt_sigaction03 failure with sig: 58 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  125  TPASS  :  rt_sigaction03 failure with sig: 58 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  126  TPASS  :  rt_sigaction03 failure with sig: 59 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  127  TPASS  :  rt_sigaction03 failure with sig: 59 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  128  TPASS  :  rt_sigaction03 failure with sig: 59 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  129  TPASS  :  rt_sigaction03 failure with sig: 59 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  130  TPASS  :  rt_sigaction03 failure with sig: 59 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  131  TPASS  :  rt_sigaction03 failure with sig: 60 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  132  TPASS  :  rt_sigaction03 failure with sig: 60 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  133  TPASS  :  rt_sigaction03 failure with sig: 60 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  134  TPASS  :  rt_sigaction03 failure with sig: 60 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  135  TPASS  :  rt_sigaction03 failure with sig: 60 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  136  TPASS  :  rt_sigaction03 failure with sig: 61 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  137  TPASS  :  rt_sigaction03 failure with sig: 61 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  138  TPASS  :  rt_sigaction03 failure with sig: 61 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  139  TPASS  :  rt_sigaction03 failure with sig: 61 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  140  TPASS  :  rt_sigaction03 failure with sig: 61 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  141  TPASS  :  rt_sigaction03 failure with sig: 62 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  142  TPASS  :  rt_sigaction03 failure with sig: 62 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  143  TPASS  :  rt_sigaction03 failure with sig: 62 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  144  TPASS  :  rt_sigaction03 failure with sig: 62 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  145  TPASS  :  rt_sigaction03 failure with sig: 62 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  146  TPASS  :  rt_sigaction03 failure with sig: 63 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  147  TPASS  :  rt_sigaction03 failure with sig: 63 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  148  TPASS  :  rt_sigaction03 failure with sig: 63 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  149  TPASS  :  rt_sigaction03 failure with sig: 63 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  150  TPASS  :  rt_sigaction03 failure with sig: 63 as expected errno  = EINVAL : Invalid argument

rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  151  TPASS  :  rt_sigaction03 failure with sig: 64 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND 
rt_sigaction03  152  TPASS  :  rt_sigaction03 failure with sig: 64 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  153  TPASS  :  rt_sigaction03 failure with sig: 64 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_RESETHAND|SA_SIGINFO 
rt_sigaction03  154  TPASS  :  rt_sigaction03 failure with sig: 64 as expected errno  = EINVAL : Invalid argument
rt_sigaction03    0  TINFO  :  sa.sa_flags = SA_NOMASK 
rt_sigaction03  155  TPASS  :  rt_sigaction03 failure with sig: 64 as expected errno  = EINVAL : Invalid argument

<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigprocmask01 stime=1372196141
cmdline="rt_sigprocmask01"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigprocmask01    1  TPASS  :  rt_sigprocmask functionality passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigprocmask02 stime=1372196141
cmdline="rt_sigprocmask02"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigprocmask02    1  TPASS  :  Got expected errno: TEST_ERRNO=EINVAL(22): Invalid argument
rt_sigprocmask02    2  TPASS  :  Got expected errno: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigqueueinfo01 stime=1372196141
cmdline="rt_sigqueueinfo01"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigqueueinfo01    1  TPASS  :  Test Succeeded
rt_sigqueueinfo01    1  TPASS  :  Test Succeeded
rt_sigqueueinfo01    2  TPASS  :  Test Succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=rt_sigsuspend01 stime=1372196141
cmdline="rt_sigsuspend01"
contacts=""
analysis=exit
<<<test_output>>>
rt_sigsuspend01    1  TPASS  :  rt_sigsuspend PASSED
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sbrk01 stime=1372196146
cmdline="sbrk01"
contacts=""
analysis=exit
<<<test_output>>>
sbrk01      1  TPASS  :  sbrk - Increase by 8192 bytes returned 0x1790000
sbrk01      2  TPASS  :  sbrk - Decrease to original size returned 0x1792000
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_get_priority_max01 stime=1372196146
cmdline="sched_get_priority_max01"
contacts=""
analysis=exit
<<<test_output>>>
sched_get_priority_max01    1  TPASS  :  Test for SCHED_OTHER Passed
sched_get_priority_max01    2  TPASS  :  Test for SCHED_FIFO Passed
sched_get_priority_max01    3  TPASS  :  Test for SCHED_RR Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sched_get_priority_max02 stime=1372196146
cmdline="sched_get_priority_max02"
contacts=""
analysis=exit
<<<test_output>>>
sched_get_priority_max02    1  TPASS  :  Test Passed, Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_get_priority_min01 stime=1372196146
cmdline="sched_get_priority_min01"
contacts=""
analysis=exit
<<<test_output>>>
sched_get_priority_min01    1  TPASS  :  Test for SCHED_OTHER Passed
sched_get_priority_min01    2  TPASS  :  Test for SCHED_FIFO Passed
sched_get_priority_min01    3  TPASS  :  Test for SCHED_RR Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_get_priority_min02 stime=1372196146
cmdline="sched_get_priority_min02"
contacts=""
analysis=exit
<<<test_output>>>
sched_get_priority_min02    1  TPASS  :  Test Passed, Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getparam01 stime=1372196146
cmdline="sched_getparam01"
contacts=""
analysis=exit
<<<test_output>>>
sched_getparam01    1  TPASS  :  sched_getparam() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getparam02 stime=1372196146
cmdline="sched_getparam02"
contacts=""
analysis=exit
<<<test_output>>>
sched_getparam02    1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getparam03 stime=1372196146
cmdline="sched_getparam03"
contacts=""
analysis=exit
<<<test_output>>>
sched_getparam03    1  TPASS  :  expected failure; Got ESRCH
sched_getparam03    2  TPASS  :  expected failure; Got EINVAL
sched_getparam03    3  TPASS  :  expected failure; Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_rr_get_interval01 stime=1372196146
cmdline="sched_rr_get_interval01"
contacts=""
analysis=exit
<<<test_output>>>
sched_rr_get_interval01    1  TPASS  :  sched_rr_get_interval() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_rr_get_interval02 stime=1372196146
cmdline="sched_rr_get_interval02"
contacts=""
analysis=exit
<<<test_output>>>
sched_rr_get_interval02    1  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_rr_get_interval03 stime=1372196146
cmdline="sched_rr_get_interval03"
contacts=""
analysis=exit
<<<test_output>>>
sched_rr_get_interval03    1  TPASS  :  Test Passed
sched_rr_get_interval03    2  TPASS  :  Test Passed
sched_rr_get_interval03    3  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sched_setparam01 stime=1372196146
cmdline="sched_setparam01"
contacts=""
analysis=exit
<<<test_output>>>
sched_setparam01    1  TPASS  :  sched_setparam() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setparam02 stime=1372196146
cmdline="sched_setparam02"
contacts=""
analysis=exit
<<<test_output>>>
sched_setparam02    1  TPASS  :  Test with policy SCHED_FIFO Passed
sched_setparam02    2  TPASS  :  Test with policy SCHED_RR Passed
sched_setparam02    3  TPASS  :  Test with SCHED_OTHER Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setparam03 stime=1372196146
cmdline="sched_setparam03"
contacts=""
analysis=exit
<<<test_output>>>
sched_setparam03    1  TPASS  :  Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setparam04 stime=1372196146
cmdline="sched_setparam04"
contacts=""
analysis=exit
<<<test_output>>>
sched_setparam04    1  TPASS  :  expected failure; Got ESRCH
sched_setparam04    2  TPASS  :  expected failure; Got EINVAL
sched_setparam04    3  TPASS  :  expected failure; Got EINVAL
sched_setparam04    4  TPASS  :  expected failure; Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setparam05 stime=1372196146
cmdline="sched_setparam05"
contacts=""
analysis=exit
<<<test_output>>>
sched_setparam05    1  TPASS  :  Test passed, Got EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getscheduler01 stime=1372196146
cmdline="sched_getscheduler01"
contacts=""
analysis=exit
<<<test_output>>>
sched_getscheduler01    1  TPASS  :  policy value returned is correct
sched_getscheduler01    2  TPASS  :  policy value returned is correct
sched_getscheduler01    3  TPASS  :  policy value returned is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getscheduler02 stime=1372196146
cmdline="sched_getscheduler02"
contacts=""
analysis=exit
<<<test_output>>>
sched_getscheduler02    1  TPASS  :  call failed with ESRCH
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setscheduler01 stime=1372196146
cmdline="sched_setscheduler01"
contacts=""
analysis=exit
<<<test_output>>>
sched_setscheduler01    1  TPASS  :  expected failure - errno = 3 : No such process
sched_setscheduler01    2  TPASS  :  expected failure - errno = 22 : Invalid argument
sched_setscheduler01    3  TPASS  :  expected failure - errno = 14 : Bad address
sched_setscheduler01    4  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_setscheduler02 stime=1372196146
cmdline="sched_setscheduler02"
contacts=""
analysis=exit
<<<test_output>>>
sched_setscheduler02    1  TPASS  :  got EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sched_yield01 stime=1372196146
cmdline="sched_yield01"
contacts=""
analysis=exit
<<<test_output>>>
sched_yield01    1  TPASS  :  sched_yield() call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sched_getaffinity01 stime=1372196146
cmdline="sched_getaffinity01"
contacts=""
analysis=exit
<<<test_output>>>
sched_getaffinity01    0  TINFO  :  system has 4 processor(s).
sched_getaffinity01    0  TINFO  :  cpusetsize is 128
sched_getaffinity01    0  TINFO  :  mask.__bits[0] = 15 
sched_getaffinity01    1  TPASS  :  sched_getaffinity() succeed, this process 20249 is running processor: 0
sched_getaffinity01    2  TPASS  :  sched_getaffinity() succeed, this process 20249 is running processor: 1
sched_getaffinity01    3  TPASS  :  sched_getaffinity() succeed, this process 20249 is running processor: 2
sched_getaffinity01    4  TPASS  :  sched_getaffinity() succeed, this process 20249 is running processor: 3
sched_getaffinity01    5  TPASS  :  sched_getaffinity(0, len, (cpu_set_t *) - 1): TEST_ERRNO=EFAULT(14): Bad address
sched_getaffinity01    6  TPASS  :  sched_getaffinity(0, 0, mask): TEST_ERRNO=EINVAL(22): Invalid argument
sched_getaffinity01    7  TPASS  :  sched_getaffinity(pid, len, mask): TEST_ERRNO=ESRCH(3): No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=select01 stime=1372196146
cmdline="select01"
contacts=""
analysis=exit
<<<test_output>>>
select01    1  TPASS  :  select(4, &Readfds, 0, 0, &timeout) timeout = 0 usecs
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=select02 stime=1372196146
cmdline="select02"
contacts=""
analysis=exit
<<<test_output>>>
select02    1  TPASS  :  select(5, &Readfds, &Writefds, 0, &timeout) timeout = 0 usecs
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=select03 stime=1372196146
cmdline="select03"
contacts=""
analysis=exit
<<<test_output>>>
select03    1  TPASS  :  select(5, &Readfds, &Writefds, 0, &timeout) timeout = 0 usecs
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semctl01 stime=1372196146
cmdline="semctl01"
contacts=""
analysis=exit
<<<test_output>>>
semctl01    1  TPASS  :  buf.sem_nsems and buf.sem_perm.mode are correct
semctl01    2  TPASS  :  buf.sem_perm.mode is correct
semctl01    3  TPASS  :  semaphores have expected values
semctl01    4  TPASS  :  number of sleeping processes is correct
semctl01    1  TPASS  :  buf.sem_nsems and buf.sem_perm.mode are correct
semctl01    2  TPASS  :  buf.sem_perm.mode is correct
semctl01    3  TPASS  :  semaphores have expected values
semctl01    4  TPASS  :  number of sleeping processes is correct
semctl01    5  TPASS  :  last pid value is correct
semctl01    6  TPASS  :  semaphore value is correct
semctl01    7  TPASS  :  number of sleeping processes is correct
semctl01    8  TPASS  :  semaphore values are correct
semctl01    9  TPASS  :  semaphore value is correct
semctl01   10  TPASS  :  semaphore appears to be removed
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=semctl02 stime=1372196149
cmdline="semctl02"
contacts=""
analysis=exit
<<<test_output>>>
semctl02    1  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semctl03 stime=1372196149
cmdline="semctl03"
contacts=""
analysis=exit
<<<test_output>>>
semctl03    1  TPASS  :  expected failure - errno = 22 : Invalid argument
semctl03    2  TPASS  :  expected failure - errno = 22 : Invalid argument
semctl03    3  TPASS  :  expected failure - errno = 14 : Bad address
semctl03    4  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semctl04 stime=1372196149
cmdline="semctl04"
contacts=""
analysis=exit
<<<test_output>>>
semctl04    1  TPASS  :  expected failure - errno = 1 : Operation not permitted
semctl04    2  TPASS  :  expected failure - errno = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semctl05 stime=1372196150
cmdline="semctl05"
contacts=""
analysis=exit
<<<test_output>>>
semctl05    1  TPASS  :  expected failure - errno = 34 : Numerical result out of range
semctl05    2  TPASS  :  expected failure - errno = 34 : Numerical result out of range
semctl05    3  TPASS  :  expected failure - errno = 34 : Numerical result out of range
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semctl06 stime=1372196150
cmdline="semctl06"
contacts=""
analysis=exit
<<<test_output>>>
semctl06    1  TPASS  :  semctl06 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=3
<<<test_end>>>
<<<test_start>>>
tag=semctl07 stime=1372196150
cmdline="semctl07"
contacts=""
analysis=exit
<<<test_output>>>
semctl07    1  TPASS  :  semctl07 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semget01 stime=1372196150
cmdline="semget01"
contacts=""
analysis=exit
<<<test_output>>>
semget01    1  TPASS  :  basic semaphore values are okay
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semget02 stime=1372196150
cmdline="semget02"
contacts=""
analysis=exit
<<<test_output>>>
semget02    1  TPASS  :  expected failure - errno = 13 : Permission denied
semget02    2  TPASS  :  expected failure - errno = 17 : File exists
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semget03 stime=1372196150
cmdline="semget03"
contacts=""
analysis=exit
<<<test_output>>>
semget03    1  TPASS  :  expected failure - errno = 2 : No such file or directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semget05 stime=1372196150
cmdline="semget05"
contacts=""
analysis=exit
<<<test_output>>>
semget05    1  TPASS  :  expected failure - errno = 28 : No space left on device
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semget06 stime=1372196150
cmdline="semget06"
contacts=""
analysis=exit
<<<test_output>>>
semget06    1  TPASS  :  expected failure - errno = 22 : Invalid argument
semget06    2  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=semop01 stime=1372196150
cmdline="semop01"
contacts=""
analysis=exit
<<<test_output>>>
semop01     1  TPASS  :  semaphore values are correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semop02 stime=1372196150
cmdline="semop02"
contacts=""
analysis=exit
<<<test_output>>>
semop02     1  TPASS  :  expected failure - errno = 7 : Argument list too long
semop02     2  TPASS  :  expected failure - errno = 13 : Permission denied
semop02     3  TPASS  :  expected failure - errno = 14 : Bad address
semop02     4  TPASS  :  expected failure - errno = 22 : Invalid argument
semop02     5  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semop03 stime=1372196150
cmdline="semop03"
contacts=""
analysis=exit
<<<test_output>>>
semop03     1  TPASS  :  expected failure - errno = 27 : File too large
semop03     2  TPASS  :  expected failure - errno = 27 : File too large
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semop04 stime=1372196150
cmdline="semop04"
contacts=""
analysis=exit
<<<test_output>>>
semop04     1  TPASS  :  expected failure - errno = 11 : Resource temporarily unavailable
semop04     2  TPASS  :  expected failure - errno = 11 : Resource temporarily unavailable
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semop05 stime=1372196150
cmdline="semop05"
contacts=""
analysis=exit
<<<test_output>>>
semop05     1  TPASS  :  expected failure - errno = 43 : Identifier removed
semop05     1  TPASS  :  expected failure - errno = 43 : Identifier removed
semop05     1  TPASS  :  expected failure - errno = 4 : Interrupted system call
semop05     1  TPASS  :  expected failure - errno = 4 : Interrupted system call
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=send01 stime=1372196154
cmdline="send01"
contacts=""
analysis=exit
<<<test_output>>>
send01      1  TPASS  :  bad file descriptor successful
send01      2  TPASS  :  invalid socket successful
send01      3  TPASS  :  invalid send buffer successful
send01      4  TPASS  :  UDP message too big successful
send01      5  TPASS  :  local endpoint shutdown successful
send01      6  TPASS  :  invalid flags set successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sendfile02 stime=1372196154
cmdline="sendfile02"
contacts=""
analysis=exit
<<<test_output>>>
sendfile02    1  TPASS  :  functionality of sendfile() is correct
sendfile02    1  TPASS  :  functionality of sendfile() is correct
sendfile02    2  TPASS  :  functionality of sendfile() is correct
sendfile02    1  TPASS  :  functionality of sendfile() is correct
sendfile02    2  TPASS  :  functionality of sendfile() is correct
sendfile02    3  TPASS  :  functionality of sendfile() is correct
sendfile02    1  TPASS  :  functionality of sendfile() is correct
sendfile02    2  TPASS  :  functionality of sendfile() is correct
sendfile02    3  TPASS  :  functionality of sendfile() is correct
sendfile02    4  TPASS  :  functionality of sendfile() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile02_64 stime=1372196154
cmdline="sendfile02_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile02_64    1  TPASS  :  functionality of sendfile() is correct
sendfile02_64    1  TPASS  :  functionality of sendfile() is correct
sendfile02_64    2  TPASS  :  functionality of sendfile() is correct
sendfile02_64    1  TPASS  :  functionality of sendfile() is correct
sendfile02_64    2  TPASS  :  functionality of sendfile() is correct
sendfile02_64    3  TPASS  :  functionality of sendfile() is correct
sendfile02_64    1  TPASS  :  functionality of sendfile() is correct
sendfile02_64    2  TPASS  :  functionality of sendfile() is correct
sendfile02_64    3  TPASS  :  functionality of sendfile() is correct
sendfile02_64    4  TPASS  :  functionality of sendfile() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile03 stime=1372196154
cmdline="sendfile03"
contacts=""
analysis=exit
<<<test_output>>>
sendfile03    1  TPASS  :  sendfile() returned 9 : Bad file descriptor
sendfile03    2  TPASS  :  sendfile() returned 9 : Bad file descriptor
sendfile03    3  TPASS  :  sendfile() returned 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile03_64 stime=1372196154
cmdline="sendfile03_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile03_64    1  TPASS  :  sendfile() returned 9 : Bad file descriptor
sendfile03_64    2  TPASS  :  sendfile() returned 9 : Bad file descriptor
sendfile03_64    3  TPASS  :  sendfile() returned 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile04 stime=1372196154
cmdline="sendfile04"
contacts=""
analysis=exit
<<<test_output>>>
sendfile04    1  TPASS  :  sendfile() returned 14 : Bad address
sendfile04    2  TPASS  :  sendfile() returned 14 : Bad address
sendfile04    3  TPASS  :  sendfile() returned 14 : Bad address
sendfile04    4  TPASS  :  sendfile() returned 14 : Bad address
sendfile04    5  TPASS  :  sendfile() returned 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sendfile04_64 stime=1372196154
cmdline="sendfile04_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile04_64    1  TPASS  :  sendfile() returned 14 : Bad address
sendfile04_64    2  TPASS  :  sendfile() returned 14 : Bad address
sendfile04_64    3  TPASS  :  sendfile() returned 14 : Bad address
sendfile04_64    4  TPASS  :  sendfile() returned 14 : Bad address
sendfile04_64    5  TPASS  :  sendfile() returned 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile05 stime=1372196154
cmdline="sendfile05"
contacts=""
analysis=exit
<<<test_output>>>
sendfile05    1  TPASS  :  sendfile() returned 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile05_64 stime=1372196154
cmdline="sendfile05_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile05_64    1  TPASS  :  sendfile() returned 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile06 stime=1372196154
cmdline="sendfile06"
contacts=""
analysis=exit
<<<test_output>>>
sendfile06    1  TPASS  :  functionality of sendfile() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile06_64 stime=1372196154
cmdline="sendfile06_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile06_64    1  TPASS  :  functionality of sendfile() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sendfile07 stime=1372196154
cmdline="sendfile07"
contacts=""
analysis=exit
<<<test_output>>>
sendfile07    1  TPASS  :  sendfile() returned 11 : Resource temporarily unavailable
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile07_64 stime=1372196154
cmdline="sendfile07_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile07_64    1  TPASS  :  sendfile() returned 11 : Resource temporarily unavailable
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile08 stime=1372196154
cmdline="sendfile08"
contacts=""
analysis=exit
<<<test_output>>>
sendfile08    1  TPASS  :  sendfile(2) copies data correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendfile08_64 stime=1372196154
cmdline="sendfile08_64"
contacts=""
analysis=exit
<<<test_output>>>
sendfile08_64    1  TPASS  :  sendfile(2) copies data correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sendmsg01 stime=1372196154
cmdline="sendmsg01"
contacts=""
analysis=exit
<<<test_output>>>
sendmsg01    1  TPASS  :  bad file descriptor successful
sendmsg01    2  TPASS  :  invalid socket successful
sendmsg01    3  TPASS  :  invalid send buffer successful
sendmsg01    4  TPASS  :  connected TCP successful
sendmsg01    5  TPASS  :  not connected TCP successful
sendmsg01    6  TPASS  :  invalid to buffer length successful
sendmsg01    7  TPASS  :  invalid to buffer successful
sendmsg01    8  TPASS  :  UDP message too big successful
sendmsg01    9  TPASS  :  local endpoint shutdown successful
sendmsg01   10  TPASS  :  invalid iovec pointer successful
sendmsg01   11  TPASS  :  invalid msghdr pointer successful
sendmsg01   12  TPASS  :  rights passing successful
sendmsg01   13  TPASS  :  invalid flags set w/ control successful
sendmsg01   14  TPASS  :  invalid flags set successful
sendmsg01   15  TPASS  :  invalid cmsg length successful
sendmsg01   16  TPASS  :  invalid cmsg pointer successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sendmsg02 stime=1372196154
cmdline="sendmsg02"
contacts=""
analysis=exit
<<<test_output>>>
sendmsg02    1  TPASS  :  finished after 15 seconds
<<<execution_status>>>
initiation_status="ok"
duration=15 termination_type=exited termination_id=0 corefile=no
cutime=525 cstime=4422
<<<test_end>>>
<<<test_start>>>
tag=sendto01 stime=1372196169
cmdline="sendto01"
contacts=""
analysis=exit
<<<test_output>>>
sendto01    1  TPASS  :  bad file descriptor successful
sendto01    2  TPASS  :  invalid socket successful
sendto01    3  TPASS  :  invalid send buffer successful
sendto01    4  TPASS  :  connected TCP successful
sendto01    5  TPASS  :  not connected TCP successful
sendto01    6  TPASS  :  invalid to buffer length successful
sendto01    7  TPASS  :  invalid to buffer successful
sendto01    8  TPASS  :  UDP message too big successful
sendto01    9  TPASS  :  local endpoint shutdown successful
sendto01   10  TPASS  :  invalid flags set successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setdomainname01 stime=1372196169
cmdline="setdomainname01"
contacts=""
analysis=exit
<<<test_output>>>
setdomainname01    1  TPASS  :  setdomainname() returned 0, Domain name set to "test_dom"
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setdomainname02 stime=1372196169
cmdline="setdomainname02"
contacts=""
analysis=exit
<<<test_output>>>
setdomainname02    1  TPASS  :  expected failure; Got EINVAL
setdomainname02    2  TPASS  :  expected failure; Got EINVAL
setdomainname02    3  TPASS  :  expected failure; Got EFAULT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setdomainname03 stime=1372196169
cmdline="setdomainname03"
contacts=""
analysis=exit
<<<test_output>>>
setdomainname03    1  TPASS  :  expected failure; Got EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsgid01 stime=1372196169
cmdline="setfsgid01"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid01    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsgid01_16 stime=1372196169
cmdline="setfsgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid01    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsgid02 stime=1372196169
cmdline="setfsgid02"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid02    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsgid02_16 stime=1372196169
cmdline="setfsgid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid02    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsgid03 stime=1372196169
cmdline="setfsgid03"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid03    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setfsgid03_16 stime=1372196169
cmdline="setfsgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsgid03    1  TPASS  :  setfsgid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid01 stime=1372196169
cmdline="setfsuid01"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid01    1  TPASS  :  setfsuid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid01_16 stime=1372196169
cmdline="setfsuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid01    1  TPASS  :  setfsuid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid02 stime=1372196169
cmdline="setfsuid02"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid02    1  TPASS  :  setfsuid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid02_16 stime=1372196169
cmdline="setfsuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid02    1  TPASS  :  setfsuid() returned expected value : 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid03 stime=1372196169
cmdline="setfsuid03"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid03    1  TPASS  :  setfsuid() returned expected value : 65534
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid03_16 stime=1372196169
cmdline="setfsuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setfsuid03    1  TPASS  :  setfsuid() returned expected value : 65534
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setfsuid04 stime=1372196169
cmdline="setfsuid04"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expectedopen failed with EACCES as expected
open call succeededopen failed with EACCES as expectedopen call succeeded<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setfsuid04_16 stime=1372196169
cmdline="setfsuid04_16"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expectedopen failed with EACCES as expected
open call succeededopen failed with EACCES as expectedopen call succeeded<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgid01 stime=1372196169
cmdline="setgid01"
contacts=""
analysis=exit
<<<test_output>>>
setgid01    1  TPASS  :  setgid(0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgid01_16 stime=1372196169
cmdline="setgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setgid01_16    1  TPASS  :  setgid(0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgid02 stime=1372196169
cmdline="setgid02"
contacts=""
analysis=exit
<<<test_output>>>
setgid02    1  TPASS  :  setgid returned EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgid02_16 stime=1372196169
cmdline="setgid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setgid02_16    1  TPASS  :  setgid returned EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setgid03 stime=1372196169
cmdline="setgid03"
contacts=""
analysis=exit
<<<test_output>>>
setgid03    1  TPASS  :  functionality of getgid() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgid03_16 stime=1372196169
cmdline="setgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setgid03_16    1  TPASS  :  functionality of getgid() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setegid01 stime=1372196169
cmdline="setegid01"
contacts=""
analysis=exit
<<<test_output>>>
setegid01    1  TPASS  :  setegid() passed functional test
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sgetmask01 stime=1372196169
cmdline="sgetmask01"
contacts=""
analysis=exit
<<<test_output>>>
sgetmask01    1  TCONF  :  syscall __NR_ssetmask not supported on your arch
sgetmask01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups01 stime=1372196169
cmdline="setgroups01"
contacts=""
analysis=exit
<<<test_output>>>
setgroups01    1  TPASS  :  setgroups(65536, list) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups01_16 stime=1372196169
cmdline="setgroups01_16"
contacts=""
analysis=exit
<<<test_output>>>
setgroups01_16    1  TPASS  :  setgroups(65536, list) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups02 stime=1372196169
cmdline="setgroups02"
contacts=""
analysis=exit
<<<test_output>>>
setgroups02    1  TPASS  :  Functionality of setgroups(1, groups_list) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setgroups02_16 stime=1372196169
cmdline="setgroups02_16"
contacts=""
analysis=exit
<<<test_output>>>
setgroups02_16    1  TPASS  :  Functionality of setgroups(1, groups_list) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups03 stime=1372196169
cmdline="setgroups03"
contacts=""
analysis=exit
<<<test_output>>>
setgroups03    1  TPASS  :  setgroups(65537) fails, Size is > sysconf(_SC_NGROUPS_MAX), errno=22
setgroups03    2  TPASS  :  setgroups(65536) fails, Permission denied, not super-user, errno=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups03_16 stime=1372196169
cmdline="setgroups03_16"
contacts=""
analysis=exit
<<<test_output>>>
setgroups03_16    1  TPASS  :  setgroups(65537) fails, Size is > sysconf(_SC_NGROUPS_MAX), errno=22
setgroups03_16    2  TPASS  :  setgroups(65536) fails, Permission denied, not super-user, errno=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups04 stime=1372196169
cmdline="setgroups04"
contacts=""
analysis=exit
<<<test_output>>>
setgroups04    1  TPASS  :  setgroups() fails with expected error EFAULT errno:14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setgroups04_16 stime=1372196169
cmdline="setgroups04_16"
contacts=""
analysis=exit
<<<test_output>>>
setgroups04_16    1  TPASS  :  setgroups() fails with expected error EFAULT errno:14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sethostname01 stime=1372196169
cmdline="sethostname01"
contacts=""
analysis=exit
<<<test_output>>>
sethostname01    1  TPASS  :  sethostname() returned 0, Hostname set to "ltphost"
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sethostname02 stime=1372196169
cmdline="sethostname02"
contacts=""
analysis=exit
<<<test_output>>>
sethostname02    1  TPASS  :  expected failure; Got EINVAL
sethostname02    2  TPASS  :  expected failure; Got EINVAL
sethostname02    3  TPASS  :  expected failure; Got EFAULT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sethostname03 stime=1372196169
cmdline="sethostname03"
contacts=""
analysis=exit
<<<test_output>>>
sethostname03    1  TPASS  :  Expected Failure; Got EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setitimer01 stime=1372196169
cmdline="setitimer01"
contacts=""
analysis=exit
<<<test_output>>>
setitimer01    1  TPASS  :  functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setitimer02 stime=1372196169
cmdline="setitimer02"
contacts=""
analysis=exit
<<<test_output>>>
setitimer02    1  TPASS  :  expected failure - errno = 14 - Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setitimer03 stime=1372196169
cmdline="setitimer03"
contacts=""
analysis=exit
<<<test_output>>>
setitimer03    1  TPASS  :  expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setns01 stime=1372196169
cmdline="setns01"
contacts=""
analysis=exit
<<<test_output>>>
setns01     0  TINFO  :  ns_fds[0]=5, ns_types[0]=0x8000000
setns01     0  TINFO  :  ns_fds[1]=6, ns_types[1]=0x20000
setns01     0  TINFO  :  ns_fds[2]=7, ns_types[2]=0x40000000
setns01     0  TINFO  :  ns_fds[3]=8, ns_types[3]=0x20000000
setns01     0  TINFO  :  ns_fds[4]=9, ns_types[4]=0x4000000
setns01     0  TINFO  :  setns(-1, 0x8000000)
setns01     1  TPASS  :  invalid fd exp_errno=9
setns01     0  TINFO  :  setns(-1, 0x20000)
setns01     2  TPASS  :  invalid fd exp_errno=9
setns01     0  TINFO  :  setns(-1, 0x40000000)
setns01     3  TPASS  :  invalid fd exp_errno=9
setns01     0  TINFO  :  setns(-1, 0x20000000)
setns01     4  TPASS  :  invalid fd exp_errno=9
setns01     0  TINFO  :  setns(-1, 0x4000000)
setns01     5  TPASS  :  invalid fd exp_errno=9
setns01     0  TINFO  :  setns(10, 0x8000000)
setns01     6  TPASS  :  regular file fd exp_errno=22
setns01     0  TINFO  :  setns(10, 0x20000)
setns01     7  TPASS  :  regular file fd exp_errno=22
setns01     0  TINFO  :  setns(10, 0x40000000)
setns01     8  TPASS  :  regular file fd exp_errno=22
setns01     0  TINFO  :  setns(10, 0x20000000)
setns01     9  TPASS  :  regular file fd exp_errno=22
setns01     0  TINFO  :  setns(10, 0x4000000)
setns01    10  TPASS  :  regular file fd exp_errno=22
setns01     0  TINFO  :  setns(5, 0xffffffff)
setns01    11  TPASS  :  invalid ns_type exp_errno=22
setns01     0  TINFO  :  setns(6, 0xffffffff)
setns01    12  TPASS  :  invalid ns_type exp_errno=22
setns01     0  TINFO  :  setns(7, 0xffffffff)
setns01    13  TPASS  :  invalid ns_type exp_errno=22
setns01     0  TINFO  :  setns(8, 0xffffffff)
setns01    14  TPASS  :  invalid ns_type exp_errno=22
setns01     0  TINFO  :  setns(9, 0xffffffff)
setns01    15  TPASS  :  invalid ns_type exp_errno=22
setns01     0  TINFO  :  setns(5, 0x20000)
setns01    16  TPASS  :  mismatch ns_type/fd exp_errno=22
setns01     0  TINFO  :  setns(6, 0x40000000)
setns01    17  TPASS  :  mismatch ns_type/fd exp_errno=22
setns01     0  TINFO  :  setns(7, 0x20000000)
setns01    18  TPASS  :  mismatch ns_type/fd exp_errno=22
setns01     0  TINFO  :  setns(8, 0x4000000)
setns01    19  TPASS  :  mismatch ns_type/fd exp_errno=22
setns01     0  TINFO  :  setns(9, 0x8000000)
setns01    20  TPASS  :  mismatch ns_type/fd exp_errno=22
setns01     0  TINFO  :  setns(5, 0x8000000)
setns01    21  TPASS  :  without CAP_SYS_ADMIN exp_errno=1
setns01     0  TINFO  :  setns(6, 0x20000)
setns01    22  TPASS  :  without CAP_SYS_ADMIN exp_errno=1
setns01     0  TINFO  :  setns(7, 0x40000000)
setns01    23  TPASS  :  without CAP_SYS_ADMIN exp_errno=1
setns01     0  TINFO  :  setns(8, 0x20000000)
setns01    24  TPASS  :  without CAP_SYS_ADMIN exp_errno=1
setns01     0  TINFO  :  setns(9, 0x4000000)
setns01    25  TPASS  :  without CAP_SYS_ADMIN exp_errno=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setns02 stime=1372196169
cmdline="setns02"
contacts=""
analysis=exit
<<<test_output>>>
setns02     0  TINFO  :  test_newuts
setns02     0  TINFO  :  creating child with clone_flag=0x4000000, ns_flag=0x4000000
setns02     1  TPASS  :  child finished succesfully
setns02     0  TINFO  :  creating child with clone_flag=0x4000000, ns_flag=0x0
setns02     2  TPASS  :  child finished succesfully
setns02     0  TINFO  :  test_newipc
setns02     0  TINFO  :  creating child with clone_flag=0x8000000, ns_flag=0x8000000
setns02     3  TPASS  :  child finished succesfully
setns02     0  TINFO  :  creating child with clone_flag=0x8000000, ns_flag=0x0
setns02     4  TPASS  :  child finished succesfully
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpgid01 stime=1372196169
cmdline="setpgid01"
contacts=""
analysis=exit
<<<test_output>>>
setpgid01    1  TPASS  :  setpgid(20443, 20442) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setpgid02 stime=1372196169
cmdline="setpgid02"
contacts=""
analysis=exit
<<<test_output>>>
setpgid02    1  TPASS  :  expected failure - errno = 22 : Invalid argument
setpgid02    2  TPASS  :  expected failure - errno = 3 : No such process
setpgid02    3  TPASS  :  expected failure - errno = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpgid03 stime=1372196169
cmdline="setpgid03"
contacts=""
analysis=exit
<<<test_output>>>
setpgid03    1  TPASS  :  setpgid SUCCESS to set errno to EPERM
setpgid03    2  TPASS  :  setpgid SUCCEEDED to set errno to EACCES
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpgrp01 stime=1372196174
cmdline="setpgrp01"
contacts=""
analysis=exit
<<<test_output>>>
setpgrp01    1  TPASS  :  setpgrp -  Call the setpgrp system call returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpgrp02 stime=1372196174
cmdline="setpgrp02"
contacts=""
analysis=exit
<<<test_output>>>
setpgrp02    1  TPASS  :  functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpriority01 stime=1372196174
cmdline="setpriority01"
contacts=""
analysis=exit
<<<test_output>>>
setpriority01    1  TPASS  :  functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpriority02 stime=1372196174
cmdline="setpriority02"
contacts=""
analysis=exit
<<<test_output>>>
setpriority02    1  TPASS  :  expected failure - errno = 13 - Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setpriority03 stime=1372196174
cmdline="setpriority03"
contacts=""
analysis=exit
<<<test_output>>>
setpriority03    1  TPASS  :  expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpriority04 stime=1372196174
cmdline="setpriority04"
contacts=""
analysis=exit
<<<test_output>>>
setpriority04    1  TPASS  :  expected failure - errno = 3 - No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setpriority05 stime=1372196174
cmdline="setpriority05"
contacts=""
analysis=exit
<<<test_output>>>
setpriority05    1  TPASS  :  expected failure - errno = 1 - Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid01 stime=1372196174
cmdline="setregid01"
contacts=""
analysis=exit
<<<test_output>>>
setregid01    1  TPASS  :  setregid -  Dont change either real or effective gid returned 0
setregid01    2  TPASS  :  setregid -  change effective to effective gid returned 0
setregid01    3  TPASS  :  setregid -  change real to real gid returned 0
setregid01    4  TPASS  :  setregid -  change effective to real gid returned 0
setregid01    5  TPASS  :  setregid return 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid01_16 stime=1372196174
cmdline="setregid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setregid01    1  TPASS  :  setregid -  Dont change either real or effective gid returned 0
setregid01    2  TPASS  :  setregid -  change effective to effective gid returned 0
setregid01    3  TPASS  :  setregid -  change real to real gid returned 0
setregid01    4  TPASS  :  setregid -  change effective to real gid returned 0
setregid01    5  TPASS  :  setregid return 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid02 stime=1372196174
cmdline="setregid02"
contacts=""
analysis=exit
<<<test_output>>>
setregid02    1  TPASS  :  setregid(-1, 0) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, root), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    2  TPASS  :  setregid(-1, 2) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, bin) real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    3  TPASS  :  setregid(0, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(root,-1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    4  TPASS  :  setregid(2, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(bin, -1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    5  TPASS  :  setregid(0, 2) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(root, bin) real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    6  TPASS  :  setregid(2, 0) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(bin, root), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    7  TPASS  :  setregid(65535, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(invalid group, -1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    8  TPASS  :  setregid(-1, 65535) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, invalid group), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid02_16 stime=1372196174
cmdline="setregid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setregid02    1  TPASS  :  setregid(-1, 0) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, root), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    2  TPASS  :  setregid(-1, 2) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, bin) real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    3  TPASS  :  setregid(0, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(root,-1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    4  TPASS  :  setregid(2, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(bin, -1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    5  TPASS  :  setregid(0, 2) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(root, bin) real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    6  TPASS  :  setregid(2, 0) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(bin, root), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    7  TPASS  :  setregid(65535, -1) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(invalid group, -1), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
setregid02    8  TPASS  :  setregid(-1, 65535) failed as expected.
setregid02    0  TINFO  :  ERROR: After setregid(-1, invalid group), real gid = 65534; effective gid = 65534
setregid02    0  TINFO  :  Expected: real gid = 0; effective gid = 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setregid03 stime=1372196174
cmdline="setregid03"
contacts=""
analysis=exit
<<<test_output>>>
setregid03    1  TPASS  :  setregid(3, 2) succeeded as expected.
setregid03    2  TPASS  :  setregid(-1, 3) succeeded as expected.
setregid03    3  TPASS  :  setregid(-1, 2) succeeded as expected.
setregid03    4  TPASS  :  setregid(2, -1) succeeded as expected.
setregid03    5  TPASS  :  setregid(-1, -1) succeeded as expected.
setregid03    6  TPASS  :  setregid(-1, 2) succeeded as expected.
setregid03    7  TPASS  :  setregid(2, -1) succeeded as expected.
setregid03    8  TPASS  :  setregid(2, 2) succeeded as expected.
setregid03    9  TPASS  :  setregid(3, -1) failed as expected.
setregid03   10  TPASS  :  setregid(-1, 3) failed as expected.
setregid03   11  TPASS  :  setregid(3, 3) failed as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid03_16 stime=1372196174
cmdline="setregid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setregid03    1  TPASS  :  setregid(3, 2) succeeded as expected.
setregid03    2  TPASS  :  setregid(-1, 3) succeeded as expected.
setregid03    3  TPASS  :  setregid(-1, 2) succeeded as expected.
setregid03    4  TPASS  :  setregid(2, -1) succeeded as expected.
setregid03    5  TPASS  :  setregid(-1, -1) succeeded as expected.
setregid03    6  TPASS  :  setregid(-1, 2) succeeded as expected.
setregid03    7  TPASS  :  setregid(2, -1) succeeded as expected.
setregid03    8  TPASS  :  setregid(2, 2) succeeded as expected.
setregid03    9  TPASS  :  setregid(3, -1) failed as expected.
setregid03   10  TPASS  :  setregid(-1, 3) failed as expected.
setregid03   11  TPASS  :  setregid(3, 3) failed as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid04 stime=1372196174
cmdline="setregid04"
contacts=""
analysis=exit
<<<test_output>>>
setregid04    1  TPASS  :  real or effective gid was modified as expected
setregid04    2  TPASS  :  real or effective gid was modified as expected
setregid04    3  TPASS  :  real or effective gid was modified as expected
setregid04    4  TPASS  :  real or effective gid was modified as expected
setregid04    5  TPASS  :  real or effective gid was modified as expected
setregid04    6  TPASS  :  real or effective gid was modified as expected
setregid04    7  TPASS  :  real or effective gid was modified as expected
setregid04    8  TPASS  :  real or effective gid was modified as expected
setregid04    9  TPASS  :  real or effective gid was modified as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setregid04_16 stime=1372196174
cmdline="setregid04_16"
contacts=""
analysis=exit
<<<test_output>>>
setregid04    1  TPASS  :  real or effective gid was modified as expected
setregid04    2  TPASS  :  real or effective gid was modified as expected
setregid04    3  TPASS  :  real or effective gid was modified as expected
setregid04    4  TPASS  :  real or effective gid was modified as expected
setregid04    5  TPASS  :  real or effective gid was modified as expected
setregid04    6  TPASS  :  real or effective gid was modified as expected
setregid04    7  TPASS  :  real or effective gid was modified as expected
setregid04    8  TPASS  :  real or effective gid was modified as expected
setregid04    9  TPASS  :  real or effective gid was modified as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresgid01 stime=1372196174
cmdline="setresgid01"
contacts=""
analysis=exit
<<<test_output>>>
setresgid01    1  TPASS  :  Test for setresgid(-1, -1, -1) successful
setresgid01    2  TPASS  :  Test for setresgid(-1, -1, nobody) successful
setresgid01    3  TPASS  :  Test for setresgid(-1, nobody, -1) successful
setresgid01    4  TPASS  :  Test for setresgid(nobody, -1, -1) successful
setresgid01    5  TPASS  :  Test for setresgid(root, root, root) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setresgid01_16 stime=1372196174
cmdline="setresgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setresgid01    1  TPASS  :  Test for setresgid(-1, -1, -1) successful
setresgid01    2  TPASS  :  Test for setresgid(-1, -1, nobody) successful
setresgid01    3  TPASS  :  Test for setresgid(-1, nobody, -1) successful
setresgid01    4  TPASS  :  Test for setresgid(nobody, -1, -1) successful
setresgid01    5  TPASS  :  Test for setresgid(root, root, root) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresgid02 stime=1372196174
cmdline="setresgid02"
contacts=""
analysis=exit
<<<test_output>>>
setresgid02    1  TPASS  :  Test for setresgid(-1, -1, -1) successful
setresgid02    2  TPASS  :  Test for setresgid(-1, -1, bin) successful
setresgid02    3  TPASS  :  Test for setresgid(-1, bin, -1) successful
setresgid02    4  TPASS  :  Test for setresgid(bin, -1, -1) successful
setresgid02    5  TPASS  :  Test for setresgid(root, root, root) successful
setresgid02    6  TPASS  :  Test for setresgid(root, nobody, nobody) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresgid02_16 stime=1372196174
cmdline="setresgid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setresgid02    1  TPASS  :  Test for setresgid(-1, -1, -1) successful
setresgid02    2  TPASS  :  Test for setresgid(-1, -1, bin) successful
setresgid02    3  TPASS  :  Test for setresgid(-1, bin, -1) successful
setresgid02    4  TPASS  :  Test for setresgid(bin, -1, -1) successful
setresgid02    5  TPASS  :  Test for setresgid(root, root, root) successful
setresgid02    6  TPASS  :  Test for setresgid(root, nobody, nobody) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresgid03 stime=1372196174
cmdline="setresgid03"
contacts=""
analysis=exit
<<<test_output>>>
setresgid03    1  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    2  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    3  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    4  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresgid03_16 stime=1372196174
cmdline="setresgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setresgid03    1  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    2  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    3  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
setresgid03    4  TPASS  :  setresgid() failed as expected for unprivileged user : errno 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid01 stime=1372196174
cmdline="setresuid01"
contacts=""
analysis=exit
<<<test_output>>>
setresuid01    1  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 0 as expected
setresuid01    2  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 65534 as expected
setresuid01    3  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 65534 as expected
setresuid01    4  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 0 as expected
setresuid01    5  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid01    6  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 2 as expected
setresuid01    7  TPASS  :  real uid = 65534, effective uid = 0, and saved uid = 2 as expected
setresuid01    8  TPASS  :  real uid = 65534, effective uid = 0, and saved uid = 2 as expected
setresuid01    9  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 0 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setresuid01_16 stime=1372196174
cmdline="setresuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setresuid01    1  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 0 as expected
setresuid01    2  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 65534 as expected
setresuid01    3  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 65534 as expected
setresuid01    4  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 0 as expected
setresuid01    5  TPASS  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid01    6  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 2 as expected
setresuid01    7  TPASS  :  real uid = 65534, effective uid = 0, and saved uid = 2 as expected
setresuid01    8  TPASS  :  real uid = 65534, effective uid = 0, and saved uid = 2 as expected
setresuid01    9  TPASS  :  real uid = 0, effective uid = 0, and saved uid = 0 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid02 stime=1372196174
cmdline="setresuid02"
contacts=""
analysis=exit
<<<test_output>>>
setresuid02    1  TPASS  :  setresuid(-1, -1, 2) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 65534, effective uid = 2, and saved uid = 2 as expected
setresuid02    2  TPASS  :  setresuid(-1, 65534, -1) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 65534, effective uid = 65534, and saved uid = 2 as expected
setresuid02    3  TPASS  :  setresuid(2, -1, -1) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 2, effective uid = 65534, and saved uid = 2 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid02_16 stime=1372196174
cmdline="setresuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setresuid02    1  TPASS  :  setresuid(-1, -1, 2) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 65534, effective uid = 2, and saved uid = 2 as expected
setresuid02    2  TPASS  :  setresuid(-1, 65534, -1) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 65534, effective uid = 65534, and saved uid = 2 as expected
setresuid02    3  TPASS  :  setresuid(2, -1, -1) succeeded as expected.
setresuid02    0  TINFO  :  real uid = 2, effective uid = 65534, and saved uid = 2 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid03 stime=1372196174
cmdline="setresuid03"
contacts=""
analysis=exit
<<<test_output>>>
setresuid03    1  TPASS  :  setresuid(65534, -1, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    2  TPASS  :  setresuid(-1, -1, 65534) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    3  TPASS  :  setresuid(-1, 65534, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    4  TPASS  :  setresuid(-1, -1, 65533) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    5  TPASS  :  setresuid(-1, 65533, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid03_16 stime=1372196174
cmdline="setresuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setresuid03    1  TPASS  :  setresuid(65534, -1, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    2  TPASS  :  setresuid(-1, -1, 65534) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    3  TPASS  :  setresuid(-1, 65534, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    4  TPASS  :  setresuid(-1, -1, 65533) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
setresuid03    5  TPASS  :  setresuid(-1, 65533, -1) failed as expected.
setresuid03    0  TINFO  :  real uid = 0, effective uid = 2, and saved uid = 2 as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setresuid04 stime=1372196174
cmdline="setresuid04"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expected
open failed with EACCES as expected
open failed with EACCES as expected
open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setresuid04_16 stime=1372196174
cmdline="setresuid04_16"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expected
open failed with EACCES as expected
open failed with EACCES as expected
open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid01 stime=1372196174
cmdline="setreuid01"
contacts=""
analysis=exit
<<<test_output>>>
setreuid01    1  TPASS  :  setreuid -  Don't change either real or effective uid returned 0
setreuid01    2  TPASS  :  setreuid -  change effective to effective uid returned 0
setreuid01    3  TPASS  :  setreuid -  change real to real uid returned 0
setreuid01    4  TPASS  :  setreuid -  change effective to real uid returned 0
setreuid01    5  TPASS  :  setreuid -  try to change real to current real returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid01_16 stime=1372196174
cmdline="setreuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid01    1  TPASS  :  setreuid -  Don't change either real or effective uid returned 0
setreuid01    2  TPASS  :  setreuid -  change effective to effective uid returned 0
setreuid01    3  TPASS  :  setreuid -  change real to real uid returned 0
setreuid01    4  TPASS  :  setreuid -  change effective to real uid returned 0
setreuid01    5  TPASS  :  setreuid -  try to change real to current real returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid02 stime=1372196174
cmdline="setreuid02"
contacts=""
analysis=exit
<<<test_output>>>
setreuid02    1  TPASS  :  real or effective uid was modified as expected
setreuid02    2  TPASS  :  real or effective uid was modified as expected
setreuid02    3  TPASS  :  real or effective uid was modified as expected
setreuid02    4  TPASS  :  real or effective uid was modified as expected
setreuid02    5  TPASS  :  real or effective uid was modified as expected
setreuid02    6  TPASS  :  real or effective uid was modified as expected
setreuid02    7  TPASS  :  real or effective uid was modified as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid02_16 stime=1372196174
cmdline="setreuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid02    1  TPASS  :  real or effective uid was modified as expected
setreuid02    2  TPASS  :  real or effective uid was modified as expected
setreuid02    3  TPASS  :  real or effective uid was modified as expected
setreuid02    4  TPASS  :  real or effective uid was modified as expected
setreuid02    5  TPASS  :  real or effective uid was modified as expected
setreuid02    6  TPASS  :  real or effective uid was modified as expected
setreuid02    7  TPASS  :  real or effective uid was modified as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setreuid03 stime=1372196174
cmdline="setreuid03"
contacts=""
analysis=exit
<<<test_output>>>
setreuid03    1  TPASS  :  setreuid(65534, 65534) succeeded as expected.
setreuid03    2  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid03    3  TPASS  :  setreuid(65534, -1) succeeded as expected.
setreuid03    4  TPASS  :  setreuid(-1, -1) succeeded as expected.
setreuid03    5  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid03    6  TPASS  :  setreuid(0, -1) succeeded as expected.
setreuid03    7  TPASS  :  setreuid(0, 0) succeeded as expected.
setreuid03    8  TPASS  :  setreuid(0, 65534) succeeded as expected.
setreuid03    9  TPASS  :  setreuid(0, 2) succeeded as expected.
setreuid03   10  TPASS  :  setreuid(2, 0) succeeded as expected.
setreuid03   11  TPASS  :  setreuid(2, -1) succeeded as expected.
setreuid03   12  TPASS  :  setreuid(2, 2) succeeded as expected.
setreuid03   13  TPASS  :  setreuid(2, 65534) succeeded as expected.
setreuid03   14  TPASS  :  setreuid(65534, 2) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid03_16 stime=1372196174
cmdline="setreuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid03    1  TPASS  :  setreuid(65534, 65534) succeeded as expected.
setreuid03    2  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid03    3  TPASS  :  setreuid(65534, -1) succeeded as expected.
setreuid03    4  TPASS  :  setreuid(-1, -1) succeeded as expected.
setreuid03    5  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid03    6  TPASS  :  setreuid(0, -1) succeeded as expected.
setreuid03    7  TPASS  :  setreuid(0, 0) succeeded as expected.
setreuid03    8  TPASS  :  setreuid(0, 65534) succeeded as expected.
setreuid03    9  TPASS  :  setreuid(0, 2) succeeded as expected.
setreuid03   10  TPASS  :  setreuid(2, 0) succeeded as expected.
setreuid03   11  TPASS  :  setreuid(2, -1) succeeded as expected.
setreuid03   12  TPASS  :  setreuid(2, 2) succeeded as expected.
setreuid03   13  TPASS  :  setreuid(2, 65534) succeeded as expected.
setreuid03   14  TPASS  :  setreuid(65534, 2) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid04 stime=1372196174
cmdline="setreuid04"
contacts=""
analysis=exit
<<<test_output>>>
setreuid04    1  TPASS  :  setreuid(-1, -1) succeeded as expected.
setreuid04    2  TPASS  :  setreuid(65534, 65534) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid04_16 stime=1372196174
cmdline="setreuid04_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid04    1  TPASS  :  setreuid(-1, -1) succeeded as expected.
setreuid04    2  TPASS  :  setreuid(65534, 65534) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid05 stime=1372196174
cmdline="setreuid05"
contacts=""
analysis=exit
<<<test_output>>>
setreuid05    1  TPASS  :  setreuid(65534, 0) succeeded as expected.
setreuid05    2  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid05    3  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid05    4  TPASS  :  setreuid(1, -1) succeeded as expected.
setreuid05    5  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05    6  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid05    7  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid05    8  TPASS  :  setreuid(-1, 1) succeeded as expected.
setreuid05    9  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05   10  TPASS  :  setreuid(2, 1) succeeded as expected.
setreuid05   11  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05   12  TPASS  :  setreuid(-1, 1) succeeded as expected.
setreuid05   13  TPASS  :  setreuid(1, -1) succeeded as expected.
setreuid05   14  TPASS  :  setreuid(-1, 2) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setreuid05_16 stime=1372196174
cmdline="setreuid05_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid05    1  TPASS  :  setreuid(65534, 0) succeeded as expected.
setreuid05    2  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid05    3  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid05    4  TPASS  :  setreuid(1, -1) succeeded as expected.
setreuid05    5  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05    6  TPASS  :  setreuid(-1, 0) succeeded as expected.
setreuid05    7  TPASS  :  setreuid(-1, 65534) succeeded as expected.
setreuid05    8  TPASS  :  setreuid(-1, 1) succeeded as expected.
setreuid05    9  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05   10  TPASS  :  setreuid(2, 1) succeeded as expected.
setreuid05   11  TPASS  :  setreuid(-1, 2) succeeded as expected.
setreuid05   12  TPASS  :  setreuid(-1, 1) succeeded as expected.
setreuid05   13  TPASS  :  setreuid(1, -1) succeeded as expected.
setreuid05   14  TPASS  :  setreuid(-1, 2) succeeded as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid06 stime=1372196174
cmdline="setreuid06"
contacts=""
analysis=exit
<<<test_output>>>
setreuid06    1  TPASS  :  setreuid set errno to EPERM as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid06_16 stime=1372196174
cmdline="setreuid06_16"
contacts=""
analysis=exit
<<<test_output>>>
setreuid06    1  TPASS  :  setreuid set errno to EPERM as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid07 stime=1372196174
cmdline="setreuid07"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expected
open failed with EACCES as expected
open failed with EACCES as expected
open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setreuid07_16 stime=1372196174
cmdline="setreuid07_16"
contacts=""
analysis=exit
<<<test_output>>>
open failed with EACCES as expected
open failed with EACCES as expected
open failed with EACCES as expected
open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setrlimit01 stime=1372196174
cmdline="setrlimit01"
contacts=""
analysis=exit
<<<test_output>>>
setrlimit01    1  TPASS  :  RLIMIT_NOFILE functionality is correct
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    2  TPASS  :  RLIMIT_FSIZE test PASSED
setrlimit01    3  TPASS  :  RLIMIT_NPROC functionality is correct
setrlimit01    4  TPASS  :  RLIMIT_CORE functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setrlimit02 stime=1372196174
cmdline="setrlimit02"
contacts=""
analysis=exit
<<<test_output>>>
setrlimit02    1  TPASS  :  expected failure - errno = 14 : Bad address
setrlimit02    2  TPASS  :  expected failure - errno = 22 : Invalid argument
setrlimit02    3  TPASS  :  expected failure - errno = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setrlimit03 stime=1372196174
cmdline="setrlimit03"
contacts=""
analysis=exit
<<<test_output>>>
setrlimit03    1  TPASS  :  got expected EPERM error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=set_robust_list01 stime=1372196174
cmdline="set_robust_list01"
contacts=""
analysis=exit
<<<test_output>>>
set_robust_list01    1  TPASS  :  set_robust_list: retval = -1 (expected -1), errno = 22 (expected 22)
set_robust_list01    2  TPASS  :  set_robust_list: retval = 0 (expected 0), errno = 0 (expected 0)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=set_thread_area01 stime=1372196174
cmdline="set_thread_area01"
contacts=""
analysis=exit
<<<test_output>>>
set_thread_area_01    1  TCONF  :  syscall tests[i].syscall not supported on your arch
set_thread_area_01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=set_tid_address01 stime=1372196174
cmdline="set_tid_address01"
contacts=""
analysis=exit
<<<test_output>>>
set_tid_address01    1  TPASS  :  set_tid_address call succeeded:  as expected 20538
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setsid01 stime=1372196174
cmdline="setsid01"
contacts=""
analysis=exit
<<<test_output>>>
setsid01    1  TPASS  :  setsid SUCCESS to set errno to EPERM
setsid01    1  TPASS  :  all misc tests passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setsockopt01 stime=1372196175
cmdline="setsockopt01"
contacts=""
analysis=exit
<<<test_output>>>
setsockopt01    1  TPASS  :  bad file descriptor successful
setsockopt01    2  TPASS  :  bad file descriptor successful
setsockopt01    3  TPASS  :  invalid option buffer successful
setsockopt01    4  TPASS  :  invalid optlen successful
setsockopt01    5  TPASS  :  invalid level successful
setsockopt01    6  TPASS  :  invalid option name (UDP) successful
setsockopt01    7  TPASS  :  invalid option name (IP) successful
setsockopt01    8  TPASS  :  invalid option name (TCP) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=settimeofday01 stime=1372196175
cmdline="settimeofday01"
contacts=""
analysis=exit
<<<test_output>>>
settimeofday01    1  TPASS  :  Test condition 1 successful
settimeofday01    2  TPASS  :  Test condition 2 successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=settimeofday02 stime=1372196175
cmdline="settimeofday02"
contacts=""
analysis=exit
<<<test_output>>>
settimeofday02    1  TPASS  :  Received expected errno
settimeofday02    2  TPASS  :  Received expected errno
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid01 stime=1372196175
cmdline="setuid01"
contacts=""
analysis=exit
<<<test_output>>>
setuid01    1  TPASS  :  setuid -  Set the effective user ID to the current real uid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid01_16 stime=1372196175
cmdline="setuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
setuid01    1  TPASS  :  setuid -  Set the effective user ID to the current real uid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid02 stime=1372196175
cmdline="setuid02"
contacts=""
analysis=exit
<<<test_output>>>
setuid02    1  TPASS  :  setuid -  Set the effective user ID to the current real uid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setuid02_16 stime=1372196175
cmdline="setuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
setuid02    1  TPASS  :  setuid -  Set the effective user ID to the current real uid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid03 stime=1372196175
cmdline="setuid03"
contacts=""
analysis=exit
<<<test_output>>>
setuid03    1  TPASS  :  setuid returned errno EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid03_16 stime=1372196175
cmdline="setuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
setuid03    1  TPASS  :  setuid returned errno EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setuid04 stime=1372196175
cmdline="setuid04"
contacts=""
analysis=exit
<<<test_output>>>
setuid04    1  TPASS  :  open returned errno EACCES
setuid04    2  TPASS  :  open returned errno EACCES
setuid04    1  TPASS  :  open returned errno EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setuid04_16 stime=1372196175
cmdline="setuid04_16"
contacts=""
analysis=exit
<<<test_output>>>
setuid04    1  TPASS  :  open returned errno EACCES
setuid04    2  TPASS  :  open returned errno EACCES
setuid04    1  TPASS  :  open returned errno EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr01 stime=1372196175
cmdline="setxattr01"
contacts=""
analysis=exit
<<<test_output>>>
setxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=EINVAL(22): Invalid argument
setxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=???(61): No data available
setxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
setxattr01    4  TPASS  :  expected behavior: TEST_ERRNO=E2BIG(7): Argument list too long
setxattr01    5  TPASS  :  expected behavior: TEST_ERRNO=???(0): Success
setxattr01    6  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr01    7  TPASS  :  expected behavior: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr02 stime=1372196175
cmdline="setxattr02"
contacts=""
analysis=exit
<<<test_output>>>
setxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=???(0): Success
setxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=???(0): Success
setxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    5  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    6  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    7  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr03 stime=1372196175
cmdline="setxattr03"
contacts=""
analysis=exit
<<<test_output>>>
setxattr03    1  TPASS  :  Set attr to immutable file: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr03    2  TPASS  :  Set attr to append-only file: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmat01 stime=1372196175
cmdline="shmat01"
contacts=""
analysis=exit
<<<test_output>>>
shmat01     1  TPASS  :  conditions and functionality are correct
shmat01     2  TPASS  :  conditions and functionality are correct
shmat01     3  TPASS  :  conditions and functionality are correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmat02 stime=1372196175
cmdline="shmat02"
contacts=""
analysis=exit
<<<test_output>>>
shmat02     1  TPASS  :  shmat failed as expected: errno=EINVAL(22): Invalid argument
shmat02     2  TPASS  :  shmat failed as expected: errno=EINVAL(22): Invalid argument
shmat02     3  TPASS  :  shmat failed as expected: errno=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmat03 stime=1372196175
cmdline="shmat03"
contacts=""
analysis=exit
<<<test_output>>>
shmat03     1  TPASS  :  expected failure: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmctl01 stime=1372196175
cmdline="shmctl01"
contacts=""
analysis=exit
<<<test_output>>>
shmctl01    1  TPASS  :  pid, size, # of attaches and mode are correct - pass #1
shmctl01    2  TPASS  :  pid, size, # of attaches and mode are correct - pass #2
shmctl01    3  TPASS  :  new mode and change time are correct
shmctl01    4  TPASS  :  shared memory appears to be removed
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmctl02 stime=1372196178
cmdline="shmctl02"
contacts=""
analysis=exit
<<<test_output>>>
shmctl02    1  TPASS  :  expected failure - errno = 13 : Permission denied
shmctl02    2  TPASS  :  expected failure - errno = 14 : Bad address
shmctl02    3  TPASS  :  expected failure - errno = 14 : Bad address
shmctl02    4  TPASS  :  expected failure - errno = 22 : Invalid argument
shmctl02    5  TPASS  :  expected failure - errno = 22 : Invalid argument
shmctl02    6  TCONF  :  shmctl() did not fail for non-root user.This may be okay for your distribution.
shmctl02    7  TCONF  :  shmctl() did not fail for non-root user.This may be okay for your distribution.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmctl03 stime=1372196178
cmdline="shmctl03"
contacts=""
analysis=exit
<<<test_output>>>
shmctl03    1  TPASS  :  expected failure - errno = 13 : Permission denied
shmctl03    2  TPASS  :  expected failure - errno = 1 : Operation not permitted
shmctl03    3  TPASS  :  expected failure - errno = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmctl04 stime=1372196178
cmdline="shmctl04"
contacts=""
analysis=exit
<<<test_output>>>
shmctl04    1  TPASS  :  SHM_INFO call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmdt01 stime=1372196178
cmdline="shmdt01"
contacts=""
analysis=exit
<<<test_output>>>
shmdt01     1  TPASS  :  shared memory detached correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmdt02 stime=1372196178
cmdline="shmdt02"
contacts=""
analysis=exit
<<<test_output>>>
shmdt02     1  TPASS  :  expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmget01 stime=1372196178
cmdline="shmget01"
contacts=""
analysis=exit
<<<test_output>>>
shmget01    1  TPASS  :  size, pid & mode are correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmget02 stime=1372196178
cmdline="shmget02"
contacts=""
analysis=exit
<<<test_output>>>
shmget02    1  TPASS  :  expected failure - errno = 22 : Invalid argument
shmget02    2  TPASS  :  expected failure - errno = 22 : Invalid argument
shmget02    3  TPASS  :  expected failure - errno = 17 : File exists
shmget02    4  TPASS  :  expected failure - errno = 2 : No such file or directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmget03 stime=1372196178
cmdline="shmget03"
contacts=""
analysis=exit
<<<test_output>>>
shmget03    1  TPASS  :  expected failure - errno = 28 : No space left on device
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=shmget04 stime=1372196178
cmdline="shmget04"
contacts=""
analysis=exit
<<<test_output>>>
shmget04    1  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmget05 stime=1372196178
cmdline="shmget05"
contacts=""
analysis=exit
<<<test_output>>>
shmget05    1  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sigaction01 stime=1372196178
cmdline="sigaction01"
contacts=""
analysis=exit
<<<test_output>>>
sigaction01    1  TPASS  :  SA_RESETHAND did not cause SA_SIGINFO to be cleared
sigaction01    2  TPASS  :  SA_RESETHAND was masked when handler executed
sigaction01    3  TPASS  :  sig has been masked because sa_mask originally contained sig
sigaction01    4  TPASS  :  siginfo pointer non NULL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigaction02 stime=1372196178
cmdline="sigaction02"
contacts=""
analysis=exit
<<<test_output>>>
sigaction02    1  TPASS  :  call failed with expected EINVAL error
sigaction02    2  TPASS  :  call failed with expected EINVAL error
sigaction02    3  TPASS  :  call failed with expected EINVAL error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigaltstack01 stime=1372196178
cmdline="sigaltstack01"
contacts=""
analysis=exit
<<<test_output>>>
sigaltstack01    1  TPASS  :  Functionality of sigaltstack() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigaltstack02 stime=1372196178
cmdline="sigaltstack02"
contacts=""
analysis=exit
<<<test_output>>>
sigaltstack02    1  TPASS  :  stgaltstack() fails, Invalid Flag value, errno:22
sigaltstack02    2  TPASS  :  stgaltstack() fails, alternate stack is < MINSIGSTKSZ, errno:12
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sighold02 stime=1372196178
cmdline="sighold02"
contacts=""
analysis=exit
<<<test_output>>>
sighold02    1  TPASS  :  Sighold called without error for 57 of 64 signals
sighold02    2  TPASS  :  No signals trapped after being sent by parent
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal01 stime=1372196178
cmdline="signal01"
contacts=""
analysis=exit
<<<test_output>>>
signal01    1  TPASS  :  From child: signal(SIGKILL, catchsig) ret:0xffffffffffffffff SIG_ERR (-1) as expected
signal01    2  TPASS  :  The child was killed by SIGKILL.
signal01    3  TPASS  :  From child: signal(SIGKILL, SIG_IGN) ret:0xffffffffffffffff SIG_ERR (-1) as expected
signal01    4  TPASS  :  The child was killed by SIGKILL.
signal01    5  TPASS  :  signal(SIGKILL,SIG_DFL) ret:0xffffffffffffffff, errno EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=signal02 stime=1372196178
cmdline="signal02"
contacts=""
analysis=exit
<<<test_output>>>
signal02    1  TPASS  :  expected failure - errno = 22 - Invalid argument
signal02    2  TPASS  :  expected failure - errno = 22 - Invalid argument
signal02    3  TPASS  :  expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal03 stime=1372196178
cmdline="signal03"
contacts=""
analysis=exit
<<<test_output>>>
signal03    1  TPASS  :  signal03 call succeeded
signal03    2  TPASS  :  signal03 call succeeded
signal03    3  TPASS  :  signal03 call succeeded
signal03    4  TPASS  :  signal03 call succeeded
signal03    5  TPASS  :  signal03 call succeeded
signal03    6  TPASS  :  signal03 call succeeded
signal03    7  TPASS  :  signal03 call succeeded
signal03    8  TPASS  :  signal03 call succeeded
signal03    9  TPASS  :  signal03 call succeeded
signal03   10  TPASS  :  signal03 call succeeded
signal03   11  TPASS  :  signal03 call succeeded
signal03   12  TPASS  :  signal03 call succeeded
signal03   13  TPASS  :  signal03 call succeeded
signal03   14  TPASS  :  signal03 call succeeded
signal03   15  TPASS  :  signal03 call succeeded
signal03   16  TPASS  :  signal03 call succeeded
signal03   17  TPASS  :  signal03 call succeeded
signal03   18  TPASS  :  signal03 call succeeded
signal03   19  TPASS  :  signal03 call succeeded
signal03   20  TPASS  :  signal03 call succeeded
signal03   21  TPASS  :  signal03 call succeeded
signal03   22  TPASS  :  signal03 call succeeded
signal03   23  TPASS  :  signal03 call succeeded
signal03   24  TPASS  :  signal03 call succeeded
signal03   25  TPASS  :  signal03 call succeeded
signal03   26  TPASS  :  signal03 call succeeded
signal03   27  TPASS  :  signal03 call succeeded
signal03   28  TPASS  :  signal03 call succeeded
signal03   29  TPASS  :  signal03 call succeeded
signal03   30  TPASS  :  signal03 call succeeded
signal03   31  TPASS  :  signal03 call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal04 stime=1372196178
cmdline="signal04"
contacts=""
analysis=exit
<<<test_output>>>
signal04    1  TPASS  :  signal04 call succeeded received (nil).
signal04    2  TPASS  :  signal04 call succeeded received (nil).
signal04    3  TPASS  :  signal04 call succeeded received (nil).
signal04    4  TPASS  :  signal04 call succeeded received (nil).
signal04    5  TPASS  :  signal04 call succeeded received (nil).
signal04    6  TPASS  :  signal04 call succeeded received (nil).
signal04    7  TPASS  :  signal04 call succeeded received (nil).
signal04    8  TPASS  :  signal04 call succeeded received (nil).
signal04    9  TPASS  :  signal04 call succeeded received (nil).
signal04   10  TPASS  :  signal04 call succeeded received (nil).
signal04   11  TPASS  :  signal04 call succeeded received (nil).
signal04   12  TPASS  :  signal04 call succeeded received (nil).
signal04   13  TPASS  :  signal04 call succeeded received (nil).
signal04   14  TPASS  :  signal04 call succeeded received (nil).
signal04   15  TPASS  :  signal04 call succeeded received (nil).
signal04   16  TPASS  :  signal04 call succeeded received (nil).
signal04   17  TPASS  :  signal04 call succeeded received (nil).
signal04   18  TPASS  :  signal04 call succeeded received (nil).
signal04   19  TPASS  :  signal04 call succeeded received (nil).
signal04   20  TPASS  :  signal04 call succeeded received (nil).
signal04   21  TPASS  :  signal04 call succeeded received (nil).
signal04   22  TPASS  :  signal04 call succeeded received (nil).
signal04   23  TPASS  :  signal04 call succeeded received (nil).
signal04   24  TPASS  :  signal04 call succeeded received (nil).
signal04   25  TPASS  :  signal04 call succeeded received (nil).
signal04   26  TPASS  :  signal04 call succeeded received (nil).
signal04   27  TPASS  :  signal04 call succeeded received (nil).
signal04   28  TPASS  :  signal04 call succeeded received (nil).
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal05 stime=1372196178
cmdline="signal05"
contacts=""
analysis=exit
<<<test_output>>>
signal05    1  TPASS  :  signal05 call succeeded
signal05    2  TPASS  :  signal05 call succeeded
signal05    3  TPASS  :  signal05 call succeeded
signal05    4  TPASS  :  signal05 call succeeded
signal05    5  TPASS  :  signal05 call succeeded
signal05    6  TPASS  :  signal05 call succeeded
signal05    7  TPASS  :  signal05 call succeeded
signal05    8  TPASS  :  signal05 call succeeded
signal05    9  TPASS  :  signal05 call succeeded
signal05   10  TPASS  :  signal05 call succeeded
signal05   11  TPASS  :  signal05 call succeeded
signal05   12  TPASS  :  signal05 call succeeded
signal05   13  TPASS  :  signal05 call succeeded
signal05   14  TPASS  :  signal05 call succeeded
signal05   15  TPASS  :  signal05 call succeeded
signal05   16  TPASS  :  signal05 call succeeded
signal05   17  TPASS  :  signal05 call succeeded
signal05   18  TPASS  :  signal05 call succeeded
signal05   19  TPASS  :  signal05 call succeeded
signal05   20  TPASS  :  signal05 call succeeded
signal05   21  TPASS  :  signal05 call succeeded
signal05   22  TPASS  :  signal05 call succeeded
signal05   23  TPASS  :  signal05 call succeeded
signal05   24  TPASS  :  signal05 call succeeded
signal05   25  TPASS  :  signal05 call succeeded
signal05   26  TPASS  :  signal05 call succeeded
signal05   27  TPASS  :  signal05 call succeeded
signal05   28  TPASS  :  signal05 call succeeded
signal05   29  TPASS  :  signal05 call succeeded
signal05   30  TPASS  :  signal05 call succeeded
signal05   31  TPASS  :  signal05 call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signalfd01 stime=1372196178
cmdline="signalfd01"
contacts=""
analysis=exit
<<<test_output>>>
signalfd01    1  TPASS  :  got expected signal
signalfd01    2  TPASS  :  got expected signal
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signalfd4_01 stime=1372196178
cmdline="signalfd4_01"
contacts=""
analysis=exit
<<<test_output>>>
signalfd4_01    1  TPASS  :  signalfd4(SFD_CLOEXEC) Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signalfd4_02 stime=1372196178
cmdline="signalfd4_02"
contacts=""
analysis=exit
<<<test_output>>>
signalfd4_02    1  TPASS  :  signalfd4(SFD_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigpending02 stime=1372196178
cmdline="sigpending02"
contacts=""
analysis=exit
<<<test_output>>>
sigpending02    1  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigprocmask01 stime=1372196178
cmdline="sigprocmask01"
contacts=""
analysis=exit
<<<test_output>>>
sigprocmask01    1  TPASS  :  Functionality of sigprocmask() Successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sigrelse01 stime=1372196178
cmdline="sigrelse01"
contacts=""
analysis=exit
<<<test_output>>>
sigrelse01    1  TPASS  :  sigrelse() released all 55 signals under test.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sigsuspend01 stime=1372196178
cmdline="sigsuspend01"
contacts=""
analysis=exit
<<<test_output>>>
sigsuspend01    1  TPASS  :  Functionality of sigsuspend() successful
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socket01 stime=1372196183
cmdline="socket01"
contacts=""
analysis=exit
<<<test_output>>>
socket01    1  TPASS  :  invalid domain successful
socket01    2  TPASS  :  invalid type successful
socket01    3  TPASS  :  UNIX domain dgram successful
socket01    4  TPASS  :  raw open as non-root successful
socket01    5  TPASS  :  UDP socket successful
socket01    6  TPASS  :  UDP stream successful
socket01    7  TPASS  :  TCP dgram successful
socket01    8  TPASS  :  TCP socket successful
socket01    9  TPASS  :  ICMP stream successful
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socket02 stime=1372196184
cmdline="socket02"
contacts=""
analysis=exit
<<<test_output>>>
socket02    1  TPASS  :  socket(SOCK_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socket03 stime=1372196184
cmdline="socket03"
contacts=""
analysis=exit
<<<test_output>>>
socket03    1  TPASS  :  socket(SOCK_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socketcall01 stime=1372196184
cmdline="socketcall01"
contacts=""
analysis=exit
<<<test_output>>>
socketcall01    1  TPASS  :  socket call test on this architecture disabled.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socketcall02 stime=1372196184
cmdline="socketcall02"
contacts=""
analysis=exit
<<<test_output>>>
socketcall02    1  TPASS  :  socket call test on this architecture disabled.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socketcall03 stime=1372196184
cmdline="socketcall03"
contacts=""
analysis=exit
<<<test_output>>>
socketcall03    1  TPASS  :  socket call test on this architecture disabled.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=socketcall04 stime=1372196184
cmdline="socketcall04"
contacts=""
analysis=exit
<<<test_output>>>
socketcall04    1  TPASS  :  socket call test on this architecture disabled.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socketpair01 stime=1372196184
cmdline="socketpair01"
contacts=""
analysis=exit
<<<test_output>>>
socketpair01    1  TPASS  :  invalid domain successful
socketpair01    2  TPASS  :  invalid type successful
socketpair01    3  TPASS  :  UNIX domain dgram successful
socketpair01    4  TPASS  :  raw open as non-root successful
socketpair01    5  TPASS  :  bad aligned pointer successful
socketpair01    6  TPASS  :  bad unaligned pointer successful
socketpair01    7  TPASS  :  UDP socket successful
socketpair01    8  TPASS  :  TCP dgram successful
socketpair01    9  TPASS  :  TCP socket successful
socketpair01   10  TPASS  :  ICMP stream successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=socketpair02 stime=1372196184
cmdline="socketpair02"
contacts=""
analysis=exit
<<<test_output>>>
socketpair02    1  TPASS  :  socketpair(SOCK_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sockioctl01 stime=1372196184
cmdline="sockioctl01"
contacts=""
analysis=exit
<<<test_output>>>
sockioctl01    1  TPASS  :  bad file descriptor successful
sockioctl01    2  TPASS  :  not a socket successful
sockioctl01    3  TPASS  :  invalid option buffer successful
sockioctl01    4  TPASS  :  ATMARK on UDP successful
sockioctl01    5  TPASS  :  SIOCGIFCONF successful
sockioctl01    6  TPASS  :  SIOCGIFFLAGS successful
sockioctl01    7  TPASS  :  SIOCGIFFLAGS with invalid ifr successful
sockioctl01    8  TPASS  :  SIOCSIFFLAGS with invalid ifr successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=splice01 stime=1372196184
cmdline="splice01"
contacts=""
analysis=exit
<<<test_output>>>
splice01    1  TPASS  :  splice() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=splice02 stime=1372196184
cmdline="seq 1 10000000 | splice02 splice02-temp"
contacts=""
analysis=exit
<<<test_output>>>
splice02    1  TPASS  :  splice() system call Passed
<<<execution_status>>>
initiation_status="ok"
duration=8 termination_type=exited termination_id=0 corefile=no
cutime=758 cstime=34
<<<test_end>>>
<<<test_start>>>
tag=tee01 stime=1372196192
cmdline="tee01"
contacts=""
analysis=exit
<<<test_output>>>
tee01       1  TPASS  :  tee() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ssetmask01 stime=1372196192
cmdline="ssetmask01"
contacts=""
analysis=exit
<<<test_output>>>
ssetmask01    1  TCONF  :  syscall __NR_ssetmask not supported on your arch
ssetmask01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat01 stime=1372196192
cmdline="stat01"
contacts=""
analysis=exit
<<<test_output>>>
stat01      1  TPASS  :  Functionality of stat(2) on 'testfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat01_64 stime=1372196192
cmdline="stat01_64"
contacts=""
analysis=exit
<<<test_output>>>
stat01      1  TPASS  :  Functionality of stat(2) on 'testfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat02 stime=1372196192
cmdline="stat02"
contacts=""
analysis=exit
<<<test_output>>>
stat02      1  TPASS  :  Functionality of stat(2) on 'testfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat02_64 stime=1372196192
cmdline="stat02_64"
contacts=""
analysis=exit
<<<test_output>>>
stat02      1  TPASS  :  Functionality of stat(2) on 'testfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=stat03 stime=1372196192
cmdline="stat03"
contacts=""
analysis=exit
<<<test_output>>>
stat03      1  TPASS  :  stat() fails, No Search permissions to process, errno:13
stat03      2  TPASS  :  stat() fails, Address beyond address space, errno:14
stat03      3  TPASS  :  stat() fails, Negative address, errno:14
stat03      4  TPASS  :  stat() fails, Pathname too long, errno:36
stat03      5  TPASS  :  stat() fails, Pathname is empty, errno:2
stat03      6  TPASS  :  stat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat03_64 stime=1372196192
cmdline="stat03_64"
contacts=""
analysis=exit
<<<test_output>>>
stat03      1  TPASS  :  stat() fails, No Search permissions to process, errno:13
stat03      2  TPASS  :  stat() fails, Address beyond address space, errno:14
stat03      3  TPASS  :  stat() fails, Negative address, errno:14
stat03      4  TPASS  :  stat() fails, Pathname too long, errno:36
stat03      5  TPASS  :  stat() fails, Pathname is empty, errno:2
stat03      6  TPASS  :  stat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat04 stime=1372196192
cmdline="symlink01 -T stat04"
contacts=""
analysis=exit
<<<test_output>>>
stat04      1  TPASS  :  Getting stat info about object file through symbolic link file is ok
stat04      2  TPASS  :  Stat(2) error when accessing non-existent object through symbolic link is caught
stat04      3  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat04_64 stime=1372196192
cmdline="symlink01 -T stat04_64"
contacts=""
analysis=exit
<<<test_output>>>
stat04_64    1  TPASS  :  Getting stat info about object file through symbolic link file is ok
stat04_64    2  TPASS  :  Stat(2) error when accessing non-existent object through symbolic link is caught
stat04_64    3  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat05 stime=1372196192
cmdline="stat05"
contacts=""
analysis=exit
<<<test_output>>>
stat05      1  TPASS  :  stat(tfile_20664, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat05_64 stime=1372196192
cmdline="stat05_64"
contacts=""
analysis=exit
<<<test_output>>>
stat05      1  TPASS  :  stat(tfile_20665, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=stat06 stime=1372196192
cmdline="stat06"
contacts=""
analysis=exit
<<<test_output>>>
stat06      1  TPASS  :  stat(<non-existent file>, &stbuf) Failed, errno=2
stat06      2  TPASS  :  stat(<path is empty string>, &stbuf) Failed, errno=2
stat06      3  TPASS  :  stat(<path contains a non-existent file>, &stbuf) Failed, errno=2
stat06      4  TPASS  :  stat(<path contains a regular file>, &stbuf) Failed, errno=20
stat06      5  TPASS  :  stat(<pathname too long>, &stbuf) Failed, errno=36
stat06      6  TPASS  :  stat(<address beyond address space>, &stbuf) Failed, errno=14
stat06      7  TPASS  :  stat(<negative address>, &stbuf) Failed, errno=14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stat06_64 stime=1372196192
cmdline="stat06_64"
contacts=""
analysis=exit
<<<test_output>>>
stat06      1  TPASS  :  stat(<non-existent file>, &stbuf) Failed, errno=2
stat06      2  TPASS  :  stat(<path is empty string>, &stbuf) Failed, errno=2
stat06      3  TPASS  :  stat(<path contains a non-existent file>, &stbuf) Failed, errno=2
stat06      4  TPASS  :  stat(<path contains a regular file>, &stbuf) Failed, errno=20
stat06      5  TPASS  :  stat(<pathname too long>, &stbuf) Failed, errno=36
stat06      6  TPASS  :  stat(<address beyond address space>, &stbuf) Failed, errno=14
stat06      7  TPASS  :  stat(<negative address>, &stbuf) Failed, errno=14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statfs01 stime=1372196192
cmdline="statfs01"
contacts=""
analysis=exit
<<<test_output>>>
statfs01    1  TPASS  :  statfs(tfile_20668, ..) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statfs01_64 stime=1372196192
cmdline="statfs01_64"
contacts=""
analysis=exit
<<<test_output>>>
statfs01    1  TPASS  :  statfs(tfile_20669, ..) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statfs02 stime=1372196192
cmdline="statfs02"
contacts=""
analysis=exit
<<<test_output>>>
statfs02    1  TPASS  :  expected failure - errno = 20 : Not a directory
statfs02    2  TPASS  :  expected failure - errno = 2 : No such file or directory
statfs02    3  TPASS  :  expected failure - errno = 36 : File name too long
statfs02    4  TPASS  :  expected failure - errno = 14 : Bad address
statfs02    5  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statfs02_64 stime=1372196192
cmdline="statfs02_64"
contacts=""
analysis=exit
<<<test_output>>>
statfs02    1  TPASS  :  expected failure - errno = 20 : Not a directory
statfs02    2  TPASS  :  expected failure - errno = 2 : No such file or directory
statfs02    3  TPASS  :  expected failure - errno = 36 : File name too long
statfs02    4  TPASS  :  expected failure - errno = 14 : Bad address
statfs02    5  TPASS  :  expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statfs03 stime=1372196192
cmdline="statfs03"
contacts=""
analysis=exit
<<<test_output>>>
statfs03    1  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=statfs03_64 stime=1372196192
cmdline="statfs03_64"
contacts=""
analysis=exit
<<<test_output>>>
statfs03    1  TPASS  :  expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=statvfs01 stime=1372196192
cmdline="statvfs01"
contacts=""
analysis=exit
<<<test_output>>>
statvfs01    1  TPASS  :  statvfs(/, ...) passed
statvfs01    0  TINFO  :  This call is similar to statfs
statvfs01    0  TINFO  :  Extracting info about the '/' file system
statvfs01    0  TINFO  :  file system block size = 4096 bytes
statvfs01    0  TINFO  :  file system fragment size = 4096 bytes
statvfs01    0  TINFO  :  file system free blocks = 1001203
statvfs01    0  TINFO  :  file system total inodes = 1136464
statvfs01    0  TINFO  :  file system free inodes = 722502
statvfs01    0  TINFO  :  file system id = 6682164853271191067
statvfs01    0  TINFO  :  file system max filename length = 255
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stime01 stime=1372196192
cmdline="stime01"
contacts=""
analysis=exit
<<<test_output>>>
stime01     0  TINFO  :  pt.tv_sec: 1372196222
stime01     1  TPASS  :  system time was set to 1372196222
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=stime02 stime=1372196192
cmdline="stime02"
contacts=""
analysis=exit
<<<test_output>>>
stime02     1  TPASS  :  stime(2) fails, Caller not root, errno:1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=string01 stime=1372196192
cmdline="string01"
contacts=""
analysis=exit
<<<test_output>>>
string01    1  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=swapoff01 stime=1372196192
cmdline="swapoff01"
contacts=""
analysis=exit
<<<test_output>>>
swapoff01    1  TPASS  :  swapoff(2) passed and turned off swapfile.
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=5 cstime=30
<<<test_end>>>
<<<test_start>>>
tag=swapoff02 stime=1372196194
cmdline="swapoff02"
contacts=""
analysis=exit
<<<test_output>>>
swapoff02    1  TPASS  :  swapoff(2) expected failure; Got errno - ENOENT : path does not exist
swapoff02    2  TPASS  :  swapoff(2) expected failure; Got errno - EINVAL  : Invalid path
swapoff02    3  TPASS  :  swapoff(2) expected failure; Got errno - EPERM  : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=6 cstime=30
<<<test_end>>>
<<<test_start>>>
tag=swapon01 stime=1372196196
cmdline="swapon01"
contacts=""
analysis=exit
<<<test_output>>>
swapon01    1  TPASS  :  swapon(2) passed and turned on swapfile
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=6 cstime=29
<<<test_end>>>
<<<test_start>>>
tag=swapon02 stime=1372196199
cmdline="swapon02"
contacts=""
analysis=exit
<<<test_output>>>
swapon02    1  TPASS  :  swapon(2) expected failure; Got errno - ENOENT : Path does not exist
swapon02    2  TPASS  :  swapon(2) expected failure; Got errno - EINVAL : Invalid path
swapon02    3  TPASS  :  swapon(2) expected failure; Got errno - EPERM : Permission denied
swapon02    4  TPASS  :  swapon(2) expected failure; Got errno - EBUSY : The specified path is already being used as a swap area
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=swapon03 stime=1372196199
cmdline="swapon03"
contacts=""
analysis=exit
<<<test_output>>>
Successfully created 28 swapfiles
swapon03    1  TPASS  :  swapon(2) got expected failure (1),
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=10 cstime=24
<<<test_end>>>
<<<test_start>>>
tag=switch01 stime=1372196202
cmdline="endian_switch01"
contacts=""
analysis=exit
<<<test_output>>>
endian_switch01    1  TCONF  :  This system does not support running of switch() syscall
endian_switch01    2  TCONF  :  Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=symlink01 stime=1372196202
cmdline="symlink01"
contacts=""
analysis=exit
<<<test_output>>>
symlink01    1  TPASS  :  Creation of symbolic link file to no object file is ok
symlink01    2  TPASS  :  Creation of symbolic link file to no object file is ok
symlink01    3  TPASS  :  Creation of symbolic link file and object file via symbolic link is ok
symlink01    4  TPASS  :  Creating an existing symbolic link file error is caught
symlink01    5  TPASS  :  Creating a symbolic link which exceeds maximum pathname error is caught
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=symlink02 stime=1372196202
cmdline="symlink02"
contacts=""
analysis=exit
<<<test_output>>>
symlink02    1  TPASS  :  symlink(tfile_20962, st_20962) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=symlink03 stime=1372196202
cmdline="symlink03"
contacts=""
analysis=exit
<<<test_output>>>
symlink03    1  TPASS  :  symlink() Fails, No Search permissions to process, errno=13
symlink03    2  TPASS  :  symlink() Fails, Specified symlink already exists, errno=17
symlink03    3  TPASS  :  symlink() Fails, Address beyond address space, errno=14
symlink03    4  TPASS  :  symlink() Fails, Negative address, errno=14
symlink03    5  TPASS  :  symlink() Fails, Symlink path too long, errno=36
symlink03    6  TPASS  :  symlink() Fails, Symlink Pathname is empty, errno=2
symlink03    7  TPASS  :  symlink() Fails, Symlink Path contains regular file, errno=20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=symlink04 stime=1372196202
cmdline="symlink04"
contacts=""
analysis=exit
<<<test_output>>>
symlink04    1  TPASS  :  symlink(testfile, slink_file) functionality successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=symlink05 stime=1372196202
cmdline="symlink05"
contacts=""
analysis=exit
<<<test_output>>>
symlink05    1  TPASS  :  symlink(testfile, slink_file) functionality successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=symlinkat01 stime=1372196202
cmdline="symlinkat01"
contacts=""
analysis=exit
<<<test_output>>>
symlinkat01    1  TPASS  :  Test passed
symlinkat01    2  TPASS  :  Test passed
symlinkat01    3  TPASS  :  Test passed
symlinkat01    4  TPASS  :  Test passed
symlinkat01    5  TPASS  :  symlinkat() returned the expected  errno 20: Not a directory
symlinkat01    6  TPASS  :  Test passed
symlinkat01    7  TPASS  :  symlinkat() returned the expected  errno 9: Bad file descriptor
symlinkat01    8  TPASS  :  Test passed
symlinkat01    9  TPASS  :  symlinkat() returned the expected  errno 2: No such file or directory
symlinkat01   10  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sync01 stime=1372196202
cmdline="sync01"
contacts=""
analysis=exit
<<<test_output>>>
sync01      1  TPASS  :  sync() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sync02 stime=1372196202
cmdline="sync02"
contacts=""
analysis=exit
<<<test_output>>>
sync02      1  TPASS  :  Functionality of sync() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sync_file_range01 stime=1372196202
cmdline="sync_file_range01"
contacts=""
analysis=exit
<<<test_output>>>
sync_file_range01    1  TPASS  :  got expected error: TEST_ERRNO=EBADF(9): Bad file descriptor
sync_file_range01    2  TPASS  :  got expected error: TEST_ERRNO=ESPIPE(29): Illegal seek
sync_file_range01    3  TPASS  :  got expected error: TEST_ERRNO=EINVAL(22): Invalid argument
sync_file_range01    4  TPASS  :  got expected error: TEST_ERRNO=EINVAL(22): Invalid argument
sync_file_range01    5  TPASS  :  got expected error: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=syscall01 stime=1372196202
cmdline="syscall01"
contacts=""
analysis=exit
<<<test_output>>>
syscall01    1  TPASS  :  Test passed
syscall01    2  TPASS  :  Test passed
syscall01    3  TPASS  :  Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sysconf01 stime=1372196202
cmdline="sysconf01"
contacts=""
analysis=exit
<<<test_output>>>
sysconf01    1  TPASS  :  _SC_CLK_TCK = 100
sysconf01    2  TPASS  :  _SC_ARG_MAX = 2097152
sysconf01    3  TPASS  :  _SC_CHILD_MAX = 30769
sysconf01    4  TPASS  :  _SC_OPEN_MAX = 1024
sysconf01    5  TPASS  :  _SC_JOB_CONTROL = 1
sysconf01    6  TPASS  :  _SC_SAVED_IDS = 1
sysconf01    7  TPASS  :  _SC_VERSION = 200809
sysconf01    8  TPASS  :  _SC_PASS_MAX = 8192
sysconf01    9  TPASS  :  _SC_LOGIN_NAME_MAX = 256
sysconf01   10  TPASS  :  _SC_XOPEN_VERSION = 700
sysconf01   11  TPASS  :  _SC_TZNAME_MAX = 6
sysconf01   12  TPASS  :  _SC_STREAM_MAX = 16
sysconf01   13  TPASS  :  _SC_XOPEN_CRYPT = 1
sysconf01   14  TPASS  :  _SC_XOPEN_ENH_I18N = 1
sysconf01   15  TPASS  :  _SC_XOPEN_SHM = 1
sysconf01   16  TPASS  :  _SC_XOPEN_XCU_VERSION = 4
sysconf01   17  TPASS  :  _SC_ATEXIT_MAX = 2147483647
sysconf01   18  TPASS  :  _SC_2_C_BIND = 200809
sysconf01   19  TPASS  :  _SC_2_C_DEV = 200809
sysconf01   20  TCONF  :  Not supported sysconf resource: _SC_2_C_VERSION
sysconf01   21  TPASS  :  _SC_2_CHAR_TERM = 200809
sysconf01   22  TCONF  :  Not supported sysconf resource: _SC_2_FORT_DEV
sysconf01   23  TCONF  :  Not supported sysconf resource: _SC_2_FORT_RUN
sysconf01   24  TPASS  :  _SC_2_LOCALEDEF = 200809
sysconf01   25  TPASS  :  _SC_2_SW_DEV = 200809
sysconf01   26  TCONF  :  Not supported sysconf resource: _SC_2_UPE
sysconf01   27  TPASS  :  _SC_2_VERSION = 200809
sysconf01   28  TPASS  :  _SC_BC_BASE_MAX = 99
sysconf01   29  TPASS  :  _SC_BC_DIM_MAX = 2048
sysconf01   30  TPASS  :  _SC_BC_SCALE_MAX = 99
sysconf01   31  TPASS  :  _SC_BC_STRING_MAX = 1000
sysconf01   32  TPASS  :  _SC_COLL_WEIGHTS_MAX = 255
sysconf01   33  TPASS  :  _SC_EXPR_NEST_MAX = 32
sysconf01   34  TPASS  :  _SC_LINE_MAX = 2048
sysconf01   35  TPASS  :  _SC_RE_DUP_MAX = 32767
sysconf01   36  TPASS  :  _SC_XOPEN_UNIX = 1
sysconf01   37  TPASS  :  _SC_PAGESIZE = 4096
sysconf01   38  TPASS  :  _SC_PHYS_PAGES = 986318
sysconf01   39  TPASS  :  _SC_AVPHYS_PAGES = 623413
sysconf01   40  TCONF  :  Not supported sysconf resource: _SC_AIO_MAX
sysconf01   41  TPASS  :  _SC_AIO_PRIO_DELTA_MAX = 20
sysconf01   42  TPASS  :  _SC_SEMAPHORES = 200809
sysconf01   43  TCONF  :  Not supported sysconf resource: _SC_SEM_NSEMS_MAX
sysconf01   44  TPASS  :  _SC_SEM_VALUE_MAX = 2147483647
sysconf01   45  TPASS  :  _SC_MEMORY_PROTECTION = 200809
sysconf01   46  TPASS  :  _SC_FSYNC = 200809
sysconf01   47  TPASS  :  _SC_MEMORY_PROTECTION = 200809
sysconf01   48  TPASS  :  _SC_TIMERS = 200809
sysconf01   49  TCONF  :  Not supported sysconf resource: _SC_TIMER_MAX
sysconf01   50  TPASS  :  _SC_MAPPED_FILES = 200809
sysconf01   51  TPASS  :  _SC_THREAD_PRIORITY_SCHEDULING = 200809
sysconf01   52  TPASS  :  _SC_XOPEN_LEGACY = 1
sysconf01   53  TPASS  :  _SC_MEMLOCK = 200809
sysconf01   54  TCONF  :  Not supported sysconf resource: _SC_XBS5_ILP32_OFF32
sysconf01   55  TCONF  :  Not supported sysconf resource: _SC_XBS5_ILP32_OFFBIG
sysconf01   56  TPASS  :  The invalid sysconf key was trapped appropriately
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysctl01 stime=1372196202
cmdline="sysctl01"
contacts=""
analysis=exit
<<<test_output>>>
sysctl01    1  TCONF  :  This test needs a kernel that has sysctl syscall.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysctl03 stime=1372196202
cmdline="sysctl03"
contacts=""
analysis=exit
<<<test_output>>>
sysctl03    1  TCONF  :  This test needs a kernel that has sysctl syscall.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysctl04 stime=1372196202
cmdline="sysctl04"
contacts=""
analysis=exit
<<<test_output>>>
sysctl04    1  TCONF  :  This test needs a kernel that has sysctl syscall.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysctl05 stime=1372196202
cmdline="sysctl05"
contacts=""
analysis=exit
<<<test_output>>>
sysctl05    1  TCONF  :  This test needs a kernel that has sysctl syscall.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysfs01 stime=1372196202
cmdline="sysfs01"
contacts=""
analysis=exit
<<<test_output>>>
sysfs01     1  TPASS  :  sysfs(2) Passed for option 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysfs02 stime=1372196202
cmdline="sysfs02"
contacts=""
analysis=exit
<<<test_output>>>
sysfs02     1  TPASS  :  sysfs(2) Passed for option 2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysfs03 stime=1372196202
cmdline="sysfs03"
contacts=""
analysis=exit
<<<test_output>>>
sysfs03     1  TPASS  :  sysfs(2) Passed for option 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysfs04 stime=1372196202
cmdline="sysfs04"
contacts=""
analysis=exit
<<<test_output>>>
sysfs04     1  TPASS  :  sysfs(2) expected failure; Got errno - EINVAL : Invalid option
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=sysfs05 stime=1372196202
cmdline="sysfs05"
contacts=""
analysis=exit
<<<test_output>>>
sysfs05     1  TPASS  :  sysfs(2) expected failure; Got errno - EINVAL : Invalid option
sysfs05     1  TPASS  :  sysfs(2) expected failure; Got errno - EINVAL  : Invalid filesystem name
sysfs05     1  TPASS  :  sysfs(2) expected failure; Got errno - EFAULT  : Address is out of your address space
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysfs06 stime=1372196202
cmdline="sysfs06"
contacts=""
analysis=exit
<<<test_output>>>
sysfs06     1  TPASS  :  sysfs(2) expected failure; Got errno - EINVAL : Invalid option
sysfs06     1  TPASS  :  sysfs(2) expected failure; Got errno - EINVAL : fs_index is out of bounds
sysfs06     1  TPASS  :  sysfs(2) expected failure; Got errno - EFAULT : buf is outside your accessible address space
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysinfo01 stime=1372196202
cmdline="sysinfo01"
contacts=""
analysis=exit
<<<test_output>>>
sysinfo01    1  TPASS  :  Test to check the return code PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sysinfo02 stime=1372196202
cmdline="sysinfo02"
contacts=""
analysis=exit
<<<test_output>>>
sysinfo02    1  TPASS  :  Test to check the error code 14 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=syslog01 stime=1372196202
cmdline="syslog01"
contacts=""
analysis=exit
<<<test_output>>>
syslog01    0  TINFO  :  Send messages to syslogd at some level 
syslog01    0  TINFO  :  and facility and grep for those messages.
/opt/ltp/testcases/bin/syslog01: 95: [: 1: unexpected operator
syslog01    0  TINFO  :  testing whether messages are logged into log file
syslog01    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog01    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=7 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=syslog02 stime=1372196209
cmdline="syslog02"
contacts=""
analysis=exit
<<<test_output>>>
syslog02    0  TINFO  :  Test if messages of all levels are logged.
syslog02    0  TINFO  :  For each level, a separate configuration file is
syslog02    0  TINFO  :  created and that will be used as syslog.conf file.
/opt/ltp/testcases/bin/syslog02: 95: [: 1: unexpected operator
syslog02    0  TINFO  :  testing whether messages are logged into log file
syslog02    0  TINFO  :  Doing level: emerg...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    1  TPASS  :  ***** Level emerg passed *****
syslog02    0  TINFO  :  Doing level: alert...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    2  TPASS  :  ***** Level alert passed *****
syslog02    0  TINFO  :  Doing level: crit...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    3  TPASS  :  ***** Level crit passed *****
syslog02    0  TINFO  :  Doing level: err...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    4  TPASS  :  ***** Level err passed *****
syslog02    0  TINFO  :  Doing level: warning...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    5  TPASS  :  ***** Level warning passed *****
syslog02    0  TINFO  :  Doing level: notice...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    6  TPASS  :  ***** Level notice passed *****
syslog02    0  TINFO  :  Doing level: info...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    7  TPASS  :  ***** Level info passed *****
syslog02    0  TINFO  :  Doing level: debug...
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog02    8  TPASS  :  ***** Level debug passed *****
syslog02    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=35 termination_type=exited termination_id=0 corefile=no
cutime=13 cstime=26
<<<test_end>>>
<<<test_start>>>
tag=syslog03 stime=1372196244
cmdline="syslog03"
contacts=""
analysis=exit
<<<test_output>>>
syslog03    0  TINFO  :  Do openlog(), log the messages and see whether
syslog03    0  TINFO  :  ident string is prepended to the message.
/opt/ltp/testcases/bin/syslog03: 95: [: 1: unexpected operator
syslog03    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog03    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=3 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=syslog04 stime=1372196250
cmdline="syslog04"
contacts=""
analysis=exit
<<<test_output>>>
syslog04    0  TINFO  :  case4: Test the logging option: LOG_PID
syslog04    0  TINFO  :  Do openlog() with LOG_PID option and see whether pid
syslog04    0  TINFO  :  is logged with message.
/opt/ltp/testcases/bin/syslog04: 95: [: 1: unexpected operator
syslog04    0  TINFO  :  Testing the log option: LOG_PID...
syslog04    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog04    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=3 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=syslog05 stime=1372196256
cmdline="syslog05"
contacts=""
analysis=exit
<<<test_output>>>
syslog05    0  TINFO  :   case5: Test the logging option: LOG_CONS
syslog05    0  TINFO  :   o Do openlog() with LOG_CONS option.
syslog05    0  TINFO  :   o Disable /dev/syslog by moving it to a temporary file name.
syslog05    0  TINFO  :   o Send the syslog message.
syslog05    0  TINFO  :   o Check whether this is written to the console i.e to
syslog05    0  TINFO  :     the file /usr/adm/ktlog/<this year>/<this month>/<to_day>
/opt/ltp/testcases/bin/syslog05: 95: [: 1: unexpected operator
syslog05    0  TINFO  :  syslog: Testing the log option: LOG_CONS...
syslog05    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog05    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=26 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=syslog06 stime=1372196282
cmdline="syslog06"
contacts=""
analysis=exit
<<<test_output>>>
syslog06    0  TINFO  :   Test the logging option: LOG_NDELAY
syslog06    0  TINFO  :   o Do openlog() without LOG_NDELAY option.
syslog06    0  TINFO  :   o open a file and check the returned file descriptor
syslog06    0  TINFO  :     It should be 3.
syslog06    0  TINFO  :   o Now do openlog() with LOG_NDELAY option.
syslog06    0  TINFO  :   o open a file and check the returned file descriptor.
syslog06    0  TINFO  :     It should be greater than 3.
/opt/ltp/testcases/bin/syslog06: 95: [: 1: unexpected operator
syslog06    0  TINFO  :  syslog: Testing the log option: LOG_NDELAY...
syslog06    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog06    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=3 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=syslog07 stime=1372196286
cmdline="syslog07"
contacts=""
analysis=exit
<<<test_output>>>
/opt/ltp/testcases/bin/syslog07: 95: [: 1: unexpected operator
syslog07    0  TINFO  :  testing syslog priorities ...
syslog07    0  TINFO  :   o Send syslog messages at all levels and see whether
syslog07    0  TINFO  :     All level messages are logged.
syslog07    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog07    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=syslog08 stime=1372196292
cmdline="syslog08"
contacts=""
analysis=exit
<<<test_output>>>
syslog08    0  TINFO  :   Test all the facilities at a particular level.
syslog08    0  TINFO  :   Facilities available are: LOG_KERN, LOG_USER, LOG_MAIL
syslog08    0  TINFO  :   LOG_DAEMON, LOG_AUTH, LOG_LPR.
syslog08    0  TINFO  :   Don't know how to send kernel messages from syslog()
syslog08    0  TINFO  :   o Create seperate entries in config file for each facility.
syslog08    0  TINFO  :   o Send the message and grep for the entry in log file.
/opt/ltp/testcases/bin/syslog08: 95: [: 1: unexpected operator
syslog08    0  TINFO  :  testing all the facilities
syslog08    0  TINFO  :  Doing facility: user...
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog08    1  TPASS  :   Facility user passed
syslog08    0  TINFO  :  Doing facility: mail...
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog08    1  TPASS  :   Facility mail passed
syslog08    0  TINFO  :  Doing facility: daemon...
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog08    1  TPASS  :   Facility daemon passed
syslog08    0  TINFO  :  Doing facility: auth...
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog08    1  TPASS  :   Facility auth passed
syslog08    0  TINFO  :  Doing facility: lpr...
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog08    1  TPASS  :   Facility lpr passed
syslog08    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=23 termination_type=exited termination_id=0 corefile=no
cutime=10 cstime=19
<<<test_end>>>
<<<test_start>>>
tag=syslog09 stime=1372196315
cmdline="syslog09"
contacts=""
analysis=exit
<<<test_output>>>
syslog09    0  TINFO  :   Test setlogmask() with LOG_UPTO macro.
syslog09    0  TINFO  :   o Use setlogmask() with LOG_UPTO macro to set some priority
syslog09    0  TINFO  :     level.
syslog09    0  TINFO  :   o Send message which is lower priority than the one
syslog09    0  TINFO  :     set above, which should not be logged
/opt/ltp/testcases/bin/syslog09: 95: [: 1: unexpected operator
syslog09    0  TINFO  :  syslog: Testing setlogmask() with LOG_UPTO macro
syslog09    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog09    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=3 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=syslog10 stime=1372196321
cmdline="syslog10"
contacts=""
analysis=exit
<<<test_output>>>
syslog10    0  TINFO  :   Test setlogmask() with LOG_MASK macro.
syslog10    0  TINFO  :   o Use setlogmask() with LOG_MASK macro to set an
syslog10    0  TINFO  :     individual priority level.
syslog10    0  TINFO  :   o Send the message of above prority and expect it to be
syslog10    0  TINFO  :     logged.
syslog10    0  TINFO  :   o Send message which is at other priority level to
syslog10    0  TINFO  :     the one set above, which should not be logged.
/opt/ltp/testcases/bin/syslog10: 95: [: 1: unexpected operator
syslog10    0  TINFO  :  syslog: Testing setlogmask() with LOG_MASK macro...
syslog10    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
syslog10    0  TINFO  :  restarting syslog daemon via /etc/init.d/rsyslog restart
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=3 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=syslog11 stime=1372196327
cmdline="syslog11"
contacts=""
analysis=exit
<<<test_output>>>
syslog11    1  TPASS  :  syslog() successful for type 0/Close the log
syslog11    2  TPASS  :  syslog() successful for type 1/Open the log
syslog11    3  TPASS  :  syslog() successful for type 2/Read from the log
syslog11    4  TPASS  :  syslog() successful for type 3/Read ring buffer
syslog11    5  TPASS  :  syslog() successful for type 3/Read ring buffer for non-root user
syslog11    6  TPASS  :  syslog() successful for type 8/Set log level to 1
syslog11    7  TPASS  :  syslog() successful for type 8/Set log level to 7(default)
syslog11    8  TPASS  :  syslog() successful for type 6/Disable printk's to console
syslog11    9  TPASS  :  syslog() successful for type 7/Enable printk's to console
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=syslog12 stime=1372196327
cmdline="syslog12"
contacts=""
analysis=exit
<<<test_output>>>
syslog12    1  TPASS  :  syslog() failed as expected for invalid type/command : errno 22
syslog12    2  TPASS  :  syslog() failed as expected for NULL buffer argument : errno 22
syslog12    3  TPASS  :  syslog() failed as expected for negative length argument : errno 22
syslog12    4  TPASS  :  syslog() failed as expected for non-root user : errno 1
syslog12    5  TPASS  :  syslog() failed as expected for console level less than 0 : errno 22
syslog12    6  TPASS  :  syslog() failed as expected for console level greater than 8 : errno 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=time01 stime=1372196327
cmdline="time01"
contacts=""
analysis=exit
<<<test_output>>>
time01      1  TPASS  :  time(0) returned 1372196327
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=time02 stime=1372196327
cmdline="time02"
contacts=""
analysis=exit
<<<test_output>>>
time02      1  TPASS  :  time() returned value 1372196327, stored value 1372196327 are same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=times01 stime=1372196327
cmdline="times01"
contacts=""
analysis=exit
<<<test_output>>>
times01     1  TPASS  :  times(&mytimes) returned 1718148939
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=times03 stime=1372196327
cmdline="times03"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=23 termination_type=exited termination_id=0 corefile=no
cutime=1360 cstime=880
<<<test_end>>>
<<<test_start>>>
tag=timerfd01 stime=1372196350
cmdline="timerfd01"
contacts=""
analysis=exit
<<<test_output>>>


---------------------------------------
| testing CLOCK MONOTONIC
---------------------------------------

relative timer test (at 500 ms) ...
timerfd = 5
wating timer ...
got timer ticks (1) after 500 ms
absolute timer test (at 500 ms) ...
wating timer ...
got timer ticks (1) after 500 ms
sequential timer test (100 ms clock) ...
sleeping 1 second ...
timerfd_gettime returned:
	it_value = { 0, 99872718 } it_interval = { 0, 100000000 }
sleeping 1 second ...
wating timer ...
got timer ticks (20) after 2000 ms
O_NONBLOCK test ...
timerfd = 5
wating timer (flush the single tick) ...
got timer ticks (1) after 100 ms
success


---------------------------------------
| testing CLOCK REALTIME
---------------------------------------

relative timer test (at 500 ms) ...
timerfd = 5
wating timer ...
got timer ticks (1) after 500 ms
absolute timer test (at 500 ms) ...
wating timer ...
got timer ticks (1) after 500 ms
sequential timer test (100 ms clock) ...
sleeping 1 second ...
timerfd_gettime returned:
	it_value = { 0, 99907449 } it_interval = { 0, 100000000 }
sleeping 1 second ...
wating timer ...
got timer ticks (20) after 2000 ms
O_NONBLOCK test ...
timerfd = 5
wating timer (flush the single tick) ...
got timer ticks (1) after 100 ms
success
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=timerfd02 stime=1372196356
cmdline="timerfd02"
contacts=""
analysis=exit
<<<test_output>>>
timerfd02    1  TPASS  :  timerfd_create(TFD_CLOEXEC) Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=timerfd03 stime=1372196356
cmdline="timerfd03"
contacts=""
analysis=exit
<<<test_output>>>
timerfd03    1  TPASS  :  timerfd_create(TFD_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=timer_getoverrun01 stime=1372196356
cmdline="timer_getoverrun01"
contacts=""
analysis=exit
<<<test_output>>>
timer_getoverrun01    0  TINFO  :  Enter block 1: test 0 (NORMAL)
timer_getoverrun01    1  TPASS  :  Block 1: test 0 PASSED
timer_getoverrun01    0  TINFO  :  Enter block 1: test 1 (ERROR)
timer_getoverrun01    2  TPASS  :  Block 1: test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=timer_gettime01 stime=1372196356
cmdline="timer_gettime01"
contacts=""
analysis=exit
<<<test_output>>>
timer_gettime01    0  TINFO  :  Enter block 1: test 0 (NORMAL)
timer_gettime01    1  TPASS  :  Block 1: test 0 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 1 (ERROR)
timer_gettime01    2  TPASS  :  Block 1: test 1 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 2 (ERROR)
timer_gettime01    3  TPASS  :  Block 1: test 2 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 3 (NORMAL)
timer_gettime01    4  TPASS  :  Block 1: test 3 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 4 (ERROR)
timer_gettime01    5  TPASS  :  Block 1: test 4 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 5 (ERROR)
timer_gettime01    6  TPASS  :  Block 1: test 5 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 6 (NORMAL)
timer_gettime01    7  TPASS  :  Block 1: test 6 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 7 (ERROR)
timer_gettime01    8  TPASS  :  Block 1: test 7 PASSED
timer_gettime01    0  TINFO  :  Enter block 1: test 8 (ERROR)
timer_gettime01    9  TPASS  :  Block 1: test 8 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=tkill01 stime=1372196356
cmdline="tkill01"
contacts=""
analysis=exit
<<<test_output>>>
tkill01     1  TPASS  :  tkill call succeeded
tkill01     2  TPASS  :  tkill call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=tkill02 stime=1372196356
cmdline="tkill02"
contacts=""
analysis=exit
<<<test_output>>>
tkill02     1  TPASS  :  tkill(-1, SIGUSR1) failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
tkill02     2  TPASS  :  tkill(99999, SIGUSR1) failed as expected: TEST_ERRNO=ESRCH(3): No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate01 stime=1372196356
cmdline="truncate01"
contacts=""
analysis=exit
<<<test_output>>>
truncate01    1  TPASS  :  Functionality of truncate(testfile, 256) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate01_64 stime=1372196356
cmdline="truncate01_64"
contacts=""
analysis=exit
<<<test_output>>>
truncate01_64    1  TPASS  :  Functionality of truncate(testfile, 256) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=truncate02 stime=1372196356
cmdline="truncate02"
contacts=""
analysis=exit
<<<test_output>>>
truncate02    1  TPASS  :  Functionality of truncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate02_64 stime=1372196356
cmdline="truncate02_64"
contacts=""
analysis=exit
<<<test_output>>>
truncate02_64    1  TPASS  :  Functionality of truncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate03 stime=1372196356
cmdline="truncate03"
contacts=""
analysis=exit
<<<test_output>>>
truncate03    1  TPASS  :  truncate() fails, No Search permissions to process, errno=13
truncate03    2  TPASS  :  truncate() fails, Path contains regular file, errno=20
truncate03    3  TPASS  :  truncate() fails, Address beyond address space, errno=14
truncate03    4  TPASS  :  truncate() fails, Negative address, errno=14
truncate03    5  TPASS  :  truncate() fails, Pathname too long, errno=36
truncate03    6  TPASS  :  truncate() fails, Pathname is empty, errno=2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate03_64 stime=1372196356
cmdline="truncate03_64"
contacts=""
analysis=exit
<<<test_output>>>
truncate03_64    1  TPASS  :  truncate() fails, No Search permissions to process, errno=13
truncate03_64    2  TPASS  :  truncate() fails, Path contains regular file, errno=20
truncate03_64    3  TPASS  :  truncate() fails, Address beyond address space, errno=14
truncate03_64    4  TPASS  :  truncate() fails, Negative address, errno=14
truncate03_64    5  TPASS  :  truncate() fails, Pathname too long, errno=36
truncate03_64    6  TPASS  :  truncate() fails, Pathname is empty, errno=2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate04 stime=1372196356
cmdline="truncate04"
contacts=""
analysis=exit
<<<test_output>>>
truncate04    1  TPASS  :  truncate() fails, File is a directory, errno=21
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=truncate04_64 stime=1372196356
cmdline="truncate04_64"
contacts=""
analysis=exit
<<<test_output>>>
truncate04_64    1  TPASS  :  truncate() fails, File is a directory, errno=21
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ulimit01 stime=1372196356
cmdline="ulimit01"
contacts=""
analysis=exit
<<<test_output>>>
ulimit01    1  TPASS  :  ulimit(1, -1) returned 9223372036854775807
ulimit01    2  TPASS  :  ulimit(2, 9223372036854775807) returned 9223372036854775807
ulimit01    3  TPASS  :  ulimit(2, 9223372036854775806) returned 9223372036854775807
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umask01 stime=1372196356
cmdline="umask01"
contacts=""
analysis=exit
<<<test_output>>>
umask01     1  TPASS  :  umask(022) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umask02 stime=1372196356
cmdline="umask02"
contacts=""
analysis=exit
<<<test_output>>>
umask02     1  TPASS  :  All umask values return correct values
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umask03 stime=1372196356
cmdline="umask03"
contacts=""
analysis=exit
<<<test_output>>>
umask03     1  TPASS  :  umask correctly returns the previous value for all masks
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=uname01 stime=1372196356
cmdline="uname01"
contacts=""
analysis=exit
<<<test_output>>>
uname01     1  TPASS  :  uname(&un) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=uname02 stime=1372196356
cmdline="uname02"
contacts=""
analysis=exit
<<<test_output>>>
uname02     1  TPASS  :  uname failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=uname03 stime=1372196356
cmdline="uname03"
contacts=""
analysis=exit
<<<test_output>>>
uname03     1  TPASS  :  uname03 functionality test succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unlink01 stime=1372196356
cmdline="symlink01 -T unlink01"
contacts=""
analysis=exit
<<<test_output>>>
unlink01    1  TPASS  :  unlink(2) of symbolic link file with no object file removal is ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=unlink05 stime=1372196356
cmdline="unlink05"
contacts=""
analysis=exit
<<<test_output>>>
unlink05    1  TPASS  :  unlink(tfile_22280) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unlink06 stime=1372196356
cmdline="unlink06"
contacts=""
analysis=exit
<<<test_output>>>
unlink06    1  TPASS  :  unlink(fifo_unlink22281) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unlink07 stime=1372196356
cmdline="unlink07"
contacts=""
analysis=exit
<<<test_output>>>
unlink07    1  TPASS  :  unlink(<non-existent file>) Failed, errno=2
unlink07    2  TPASS  :  unlink(<path is empty string>) Failed, errno=2
unlink07    3  TPASS  :  unlink(<path contains a non-existent file>) Failed, errno=2
unlink07    4  TPASS  :  unlink(<address beyond address space>) Failed, errno=14
unlink07    5  TPASS  :  unlink(<path contains a regular file>) Failed, errno=20
unlink07    6  TPASS  :  unlink(<address beyond address space>) Failed, errno=14
unlink07    7  TPASS  :  unlink(<pathname too long>) Failed, errno=36
unlink07    8  TPASS  :  unlink(<negative address>) Failed, errno=14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unlink08 stime=1372196356
cmdline="unlink08"
contacts=""
analysis=exit
<<<test_output>>>
unlink08    1  TPASS  :  unlink(<unwritable directory>) returned 0
unlink08    2  TPASS  :  unlink(<unsearchable directory>) returned 0
unlink08    3  TPASS  :  unlink(<directory>) Failed, errno=21
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unlinkat01 stime=1372196356
cmdline="unlinkat01"
contacts=""
analysis=exit
<<<test_output>>>
unlinkat01    1  TPASS  :  unlinkat() returned the expected  errno 0: Success
unlinkat01    2  TPASS  :  unlinkat() returned the expected  errno 0: Success
unlinkat01    3  TPASS  :  unlinkat() returned the expected  errno 20: Not a directory
unlinkat01    4  TPASS  :  unlinkat() returned the expected  errno 9: Bad file descriptor
unlinkat01    5  TPASS  :  unlinkat() returned the expected  errno 22: Invalid argument
unlinkat01    6  TPASS  :  unlinkat() returned the expected  errno 0: Success
unlinkat01    7  TPASS  :  unlinkat() returned the expected  errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=unshare01 stime=1372196356
cmdline="unshare01"
contacts=""
analysis=exit
<<<test_output>>>
unshare with CLONE_FILES call succeeded
unshare with CLONE_FS call succeeded
unshare call with CLONE_NEWNS succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=unshare02 stime=1372196356
cmdline="unshare02"
contacts=""
analysis=exit
<<<test_output>>>
Got EINVAL
unshare02    1  TPASS  :  Call succeeded
Got EINVAL
unshare02    1  TPASS  :  Call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umount01 stime=1372196356
cmdline="umount01 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
umount01    1  TPASS  :  umount(2) Passed 
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umount02 stime=1372196356
cmdline="umount02 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
umount02    1  TPASS  :  umount(2) expected failure; Got errno - EBUSY : Already mounted/busy
umount02    0  TWARN  :  umount(2) Failed while unmounting errno 16 for testcase EBUSY
umount02    2  TPASS  :  umount(2) expected failure; Got errno - EFAULT : Invalid address space
umount02    3  TPASS  :  umount(2) expected failure; Got errno - ENOENT : Directory not found
umount02    4  TPASS  :  umount(2) expected failure; Got errno - EINVAL : Invalid  device 
umount02    5  TPASS  :  umount(2) expected failure; Got errno - ENAMETOOLONG : Pathname too long
umount02    0  TWARN  :  tst_rmdir: rmobj(/tmp/ltp-LbqYZRF5cO/umodZtzKH) failed: remove(/tmp/ltp-LbqYZRF5cO/umodZtzKH/mnt_22295) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=4 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=umount03 stime=1372196356
cmdline="umount03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
umount03    1  TPASS  :  umount(2) expected failure Got errno - EPERM : User not Super User/root
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ustat01 stime=1372196356
cmdline="ustat01"
contacts=""
analysis=exit
<<<test_output>>>
ustat01     1  TPASS  :  ustat(2) passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ustat02 stime=1372196356
cmdline="ustat02"
contacts=""
analysis=exit
<<<test_output>>>
ustat02     1  TPASS  :  ustat(2) expected failure; Got errno - EINVAL : Invalid parameter
ustat02     2  TPASS  :  ustat(2) expected failure; Got errno - EFAULT : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime01 stime=1372196356
cmdline="utime01"
contacts=""
analysis=exit
<<<test_output>>>
utime01     1  TPASS  :  Functionality of utime(tmp_file, NULL) successful
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime01A stime=1372196360
cmdline="symlink01 -T utime01"
contacts=""
analysis=exit
<<<test_output>>>
utime01     1  TPASS  :  utime(2) change of object file access and modify times through symbolic link file is ok
utime01     2  TPASS  :  utime(2) error when accessing non-existent object through symbolic link is caught
utime01     3  TPASS  :  Nested symbolic link access condition caught.  ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime02 stime=1372196360
cmdline="utime02"
contacts=""
analysis=exit
<<<test_output>>>
utime02     1  TPASS  :  Functionality of utime(tmp_file, NULL) successful
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime03 stime=1372196364
cmdline="utime03"
contacts=""
analysis=exit
<<<test_output>>>
utime03     1  TPASS  :  Functionality of utime(tmp_file, NULL) successful
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=utime04 stime=1372196368
cmdline="utime04"
contacts=""
analysis=exit
<<<test_output>>>
utime04     1  TPASS  :  Functionality of utime(tmp_file, &times) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime05 stime=1372196368
cmdline="utime05"
contacts=""
analysis=exit
<<<test_output>>>
utime05     1  TPASS  :  Functionality of utime(tmp_file, &times) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utime06 stime=1372196368
cmdline="utime06"
contacts=""
analysis=exit
<<<test_output>>>
utime06     1  TPASS  :  utime() fails, Permission denied to modify file time, errno:13
utime06     2  TPASS  :  utime() fails, Specified file doesn't exist, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utimes01 stime=1372196368
cmdline="utimes01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)=       0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=13 (Permission denied)
RESULT: return value(ret)=-1 errno=13 (Permission denied)
EXPECT: return value(ret)=-1 errno=2 (No such file or directory)
RESULT: return value(ret)=-1 errno=2 (No such file or directory)
open failed.
utimes01    0  TINFO  :  (case00) START
utimes01    0  TINFO  :  E:0,1000 <=> R:0,1000
utimes01    0  TINFO  :  (case00) END => OK
utimes01    0  TINFO  :  (case01) START
utimes01    0  TINFO  :  E:1000,0 <=> R:1000,0
utimes01    0  TINFO  :  (case01) END => OK
utimes01    0  TINFO  :  (case02) START
utimes01    0  TINFO  :  (case02) END => OK
utimes01    0  TINFO  :  (case03) START
utimes01    0  TINFO  :  (case03) END => OK
utimes01    0  TINFO  :  (case04) START
utimes01    0  TINFO  :  (case04) END => NG
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=utimensat01 stime=1372196368
cmdline="utimensat_tests.sh"
contacts=""
analysis=exit
<<<test_output>>>
test sudo for -n option, non-interactive
sudo supports -n
============================================================

Testing read-only file, owned by self

***** Testing times==NULL case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196369 1372196369
PASSED test 1

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196369 1372196369
PASSED test 2

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196369 1372196369
PASSED test 3

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196369 1372196369
PASSED test 4

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 5

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 6

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: SUCCESS y  n
RESULT:   SUCCESS 1372196369 0
PASSED test 7

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: SUCCESS y  n
RESULT:   SUCCESS 1372196369 0
PASSED test 8

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: SUCCESS n  y
RESULT:   SUCCESS 0 1372196369
PASSED test 9

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: SUCCESS n  y
RESULT:   SUCCESS 0 1372196369
PASSED test 10

***** Testing times=={ x, y } case *****
Pathname test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1 1
PASSED test 11

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-r--------; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1 1
PASSED test 12

============================================================

Testing read-only file, not owned by self

***** Testing times==NULL case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 13

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 14

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 15

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 16

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 17

***** Testing times=={ x, y } case *****
Pathname test
Owner=root; perms=-r--------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 18

============================================================

Testing writable file, not owned by self

***** Testing times==NULL case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 19

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 20

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 21

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 22

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 23

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196370 1372196370
PASSED test 24

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 25

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 26

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 27

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 28

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 29

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 30

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 31

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 32

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 33

***** Testing times=={ x, y } case *****
Pathname test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 34

Readable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 35

Writable file descriptor (futimens(3)) test
Owner=root; perms=-rw-rw-rw-; EFAs=Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 36

============================================================

Testing append-only file, owned by self

***** Testing times==NULL case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196371 1372196371
PASSED test 37

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196371 1372196371
PASSED test 38

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196371 1372196371
PASSED test 39

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196371 1372196371
PASSED test 40

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196371 1372196371
PASSED test 41

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196372 1372196372
PASSED test 42

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 43

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 44

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 45

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 46

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 47

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 48

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 49

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 50

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 51

***** Testing times=={ x, y } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 52

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 53

Writable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Append_Only,Extents
./utimensat01 -q -w -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 54

============================================================

Testing immutable file, owned by self

***** Testing times==NULL case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 55

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 56

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 57

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 58

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 59

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 60

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 61

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 62

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 63

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 64

***** Testing times=={ x, y } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 65

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 66

============================================================

Testing immutable append-only file, owned by self

***** Testing times==NULL case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 67

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 68

***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 n
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 69

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 n
EXPECTED: EACCES   
RESULT:   EACCES  
PASSED test 70

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 71

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 72

***** Testing times=={ UTIME_NOW, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 73

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 n 0 o
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 74

***** Testing times=={ UTIME_OMIT, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 75

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 0 o 0 n
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 76

***** Testing times=={ x, y } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 77

Readable file descriptor (futimens(3)) test
Owner=nobody; perms=-rw-------; EFAs=Immutable,Append_Only,Extents
./utimensat01 -q -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 1 1 1 1
EXPECTED: EPERM   
RESULT:   EPERM  
PASSED test 78

============================================================

***** Testing pathname==NULL, dirfd!=AT_FDCWD, flags has AT_SYMLINK_NOFOLLOW *****
Owner=nobody; perms=-rw-------; EFAs=Extents
utimensat01 -q -n -d /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file NULL 
EXPECTED: EINVAL   
RESULT:   EINVAL  
PASSED test 79

============================================================

tv_sec should be ignored if tv_nsec is UTIME_OMIT or UTIME_NOW
***** Testing times=={ UTIME_NOW, UTIME_NOW } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 n 1 n
EXPECTED: SUCCESS y  y
RESULT:   SUCCESS 1372196374 1372196374
PASSED test 80

***** Testing times=={ UTIME_OMIT, UTIME_OMIT } case *****
Pathname test
Owner=nobody; perms=-rw-------; EFAs=Extents
./utimensat01 -q /tmp/ltp-LbqYZRF5cO/utimensat_tests/utimensat.test_file 1 o 1 o
EXPECTED: SUCCESS n  n
RESULT:   SUCCESS 0 0
PASSED test 81

============================================================

Linux fambox 3.10.0-rc7-next20130624-3-iniza-small #1 SMP Tue Jun 25 23:03:26 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux
Tue Jun 25 23:39:35 CEST 2013
Total tests: 81; passed: 81; failed: 0
<<<execution_status>>>
initiation_status="ok"
duration=7 termination_type=exited termination_id=0 corefile=no
cutime=207 cstime=440
<<<test_end>>>
<<<test_start>>>
tag=vfork01 stime=1372196375
cmdline="vfork01"
contacts=""
analysis=exit
<<<test_output>>>
vfork01     0  TINFO  :  Attribute values of parent and child match
vfork01     0  TINFO  :  Working directories of parent and child match
vfork01     0  TINFO  :  Device/inode number of parent and childs '/' match
vfork01     0  TINFO  :  Device/inode number of parent and childs '.' don't match
vfork01     1  TPASS  :  Call of vfork() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=vfork02 stime=1372196375
cmdline="vfork02"
contacts=""
analysis=exit
<<<test_output>>>
vfork02     1  TPASS  :  Call to vfork() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=vhangup01 stime=1372196375
cmdline="vhangup01"
contacts=""
analysis=exit
<<<test_output>>>
vhangup01    1  TPASS  :  Got EPERM as expected.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=vhangup02 stime=1372196375
cmdline="vhangup02"
contacts=""
analysis=exit
<<<test_output>>>
vhangup02    1  TPASS  :  vhangup() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=vmsplice01 stime=1372196375
cmdline="vmsplice01"
contacts=""
analysis=exit
<<<test_output>>>
vmsplice01    1  TPASS  :  vmsplice() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=wait02 stime=1372196375
cmdline="wait02"
contacts=""
analysis=exit
<<<test_output>>>
wait02      1  TPASS  :  wait(&ret_code) returned 24082
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=wait401 stime=1372196376
cmdline="wait401"
contacts=""
analysis=exit
<<<test_output>>>
wait401     1  TPASS  :  Received child pid as expected.
wait401     2  TPASS  :  wait401 call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=wait402 stime=1372196377
cmdline="wait402"
contacts=""
analysis=exit
<<<test_output>>>
wait402     1  TPASS  :  received expected failure - errno = 10 - No child processes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid01 stime=1372196377
cmdline="waitpid01"
contacts=""
analysis=exit
<<<test_output>>>
waitpid01    1  TPASS  :  recieved expected pid
waitpid01    2  TPASS  :  recieved expected signal
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid02 stime=1372196379
cmdline="waitpid02"
contacts=""
analysis=exit
<<<test_output>>>
waitpid02    1  TPASS  :  recieved expected pid
waitpid02    2  TPASS  :  recieved expected signal
waitpid02    3  TPASS  :  recieved expected exit value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid03 stime=1372196379
cmdline="waitpid03"
contacts=""
analysis=exit
<<<test_output>>>
waitpid03    1  TPASS  :  Got correct child PID
waitpid03    2  TPASS  :  Condition 2 test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid04 stime=1372196379
cmdline="waitpid04"
contacts=""
analysis=exit
<<<test_output>>>
waitpid04    1  TPASS  :  condition 1 test passed
waitpid04    2  TPASS  :  condition 2 test passed
waitpid04    3  TPASS  :  condition 3 test passed
waitpid04    1  TPASS  :  condition 1 test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=waitpid05 stime=1372196379
cmdline="waitpid05"
contacts=""
analysis=exit
<<<test_output>>>
waitpid05    1  TPASS  :  received expected pid.
waitpid05    2  TPASS  :  received expected exit number.
waitpid05    3  TPASS  :  received expected pid.
waitpid05    4  TPASS  :  received expected exit number.
waitpid05    5  TPASS  :  received expected pid.
waitpid05    6  TPASS  :  received expected exit number.
waitpid05    7  TPASS  :  received expected pid.
waitpid05    8  TPASS  :  received expected exit number.
waitpid05    9  TPASS  :  received expected pid.
waitpid05   10  TPASS  :  received expected exit number.
waitpid05   11  TPASS  :  received expected pid.
waitpid05   12  TPASS  :  received expected exit number.
waitpid05   13  TPASS  :  received expected pid.
waitpid05   14  TPASS  :  received expected exit number.
waitpid05   15  TPASS  :  received expected pid.
waitpid05   16  TPASS  :  received expected exit number.
waitpid05   17  TPASS  :  received expected pid.
waitpid05   18  TPASS  :  received expected exit number.
waitpid05   19  TPASS  :  received expected pid.
waitpid05   20  TPASS  :  received expected exit number.
waitpid05   21  TPASS  :  received expected pid.
waitpid05   22  TPASS  :  received expected exit number.
waitpid05   23  TPASS  :  received expected pid.
waitpid05   24  TPASS  :  received expected exit number.
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid06 stime=1372196380
cmdline="waitpid06"
contacts=""
analysis=exit
<<<test_output>>>
waitpid06    1  TPASS  :  waitpid06 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=waitpid07 stime=1372196380
cmdline="waitpid07"
contacts=""
analysis=exit
<<<test_output>>>
waitpid07    1  TPASS  :  waitpid07 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid08 stime=1372196380
cmdline="waitpid08"
contacts=""
analysis=exit
<<<test_output>>>
waitpid08    1  TPASS  :  waitpid08 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid09 stime=1372196380
cmdline="waitpid09"
contacts=""
analysis=exit
<<<test_output>>>
waitpid09    1  TPASS  :  case 1 PASSED
waitpid09    2  TPASS  :  case 2 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=waitpid10 stime=1372196382
cmdline="waitpid10 5"
contacts=""
analysis=exit
<<<test_output>>>
waitpid10    1  TPASS  :  Test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=7 termination_type=exited termination_id=0 corefile=no
cutime=1898 cstime=10
<<<test_end>>>
<<<test_start>>>
tag=waitpid11 stime=1372196389
cmdline="waitpid11"
contacts=""
analysis=exit
<<<test_output>>>
waitpid11    1  TPASS  :  Test PASSED
waitpid11    1  TPASS  :  waitpid11 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=waitpid12 stime=1372196389
cmdline="waitpid12"
contacts=""
analysis=exit
<<<test_output>>>
waitpid12    1  TPASS  :  Test PASSED
waitpid12    1  TPASS  :  waitpid12 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitpid13 stime=1372196391
cmdline="waitpid13"
contacts=""
analysis=exit
<<<test_output>>>
waitpid13    1  TPASS  :  Test PASSED
waitpid13    1  TPASS  :  waitpid13 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=waitid01 stime=1372196391
cmdline="waitid01"
contacts=""
analysis=exit
<<<test_output>>>
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24318 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24319 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24318 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24319 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24320 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24318 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24319 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24320 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24321 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24322 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24318 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24319 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24320 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24321 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24322 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24323 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24317 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24318 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24319 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24320 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24321 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24322 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    0  TINFO  :  Process 24323 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 123
waitid01    0  TINFO  :  Process 24324 terminated:
waitid01    0  TINFO  :  code = 1
waitid01    0  TINFO  :  exit value = 0
waitid01    0  TINFO  :  Process 24325 terminated:
waitid01    0  TINFO  :  code = 2
waitid01    0  TINFO  :  signal = 1
waitid01    1  TPASS  :  waitid(): system call passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=waitid02 stime=1372196391
cmdline="waitid02"
contacts=""
analysis=exit
<<<test_output>>>
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 1,my id is 24327,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 3,my id is 24329,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 2,my id is 24328,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 1,my id is 24332,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 3,my id is 24334,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 2,my id is 24333,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 1,my id is 24335,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 3,my id is 24337,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 2,my id is 24336,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02   14  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02   15  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24335 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24336, si_code = 5, si_status = 19
waitid02   16  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24337, si_code = 1, si_status = 6
waitid02   17  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24336, si_code = 6, si_status = 18
waitid02   18  TPASS  :  Success6 ... 0 is returned
waitid02   19  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 1,my id is 24338,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02   14  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02   15  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24335 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24336, si_code = 5, si_status = 19
waitid02   16  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24337, si_code = 1, si_status = 6
waitid02   17  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24336, si_code = 6, si_status = 18
waitid02   18  TPASS  :  Success6 ... 0 is returned
waitid02   19  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 3,my id is 24340,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02   14  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02   15  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24335 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24336, si_code = 5, si_status = 19
waitid02   16  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24337, si_code = 1, si_status = 6
waitid02   17  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24336, si_code = 6, si_status = 18
waitid02   18  TPASS  :  Success6 ... 0 is returned
waitid02   19  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    0  TINFO  :  I'm a child 2,my id is 24339,gpid is 24326
waitid02    1  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    2  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    3  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24327 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24328, si_code = 5, si_status = 19
waitid02    4  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24329, si_code = 1, si_status = 6
waitid02    5  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24328, si_code = 6, si_status = 18
waitid02    6  TPASS  :  Success6 ... 0 is returned
waitid02    7  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02    8  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02    9  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24332 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24333, si_code = 5, si_status = 19
waitid02   10  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24334, si_code = 1, si_status = 6
waitid02   11  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24333, si_code = 6, si_status = 18
waitid02   12  TPASS  :  Success6 ... 0 is returned
waitid02   13  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02   14  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02   15  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24335 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24336, si_code = 5, si_status = 19
waitid02   16  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24337, si_code = 1, si_status = 6
waitid02   17  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24336, si_code = 6, si_status = 18
waitid02   18  TPASS  :  Success6 ... 0 is returned
waitid02   19  TPASS  :  Success1 ... -1 is returned. error is 22.
waitid02   20  TPASS  :  Success 2 ...0 is returned.. error is 0.
waitid02    0  TINFO  :  I'm a Parent,my id is 24326,gpid is 24326
waitid02   21  TPASS  :  Success3 ... 0 is returned.
waitid02    0  TINFO  :  si_pid = 24338 ; si_code = 1 ; si_status = 5
waitid02    0  TINFO  :  si_pid = 24339, si_code = 5, si_status = 19
waitid02   22  TPASS  :  Success4 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24340, si_code = 1, si_status = 6
waitid02   23  TPASS  :  Success5 ... 0 is returned
waitid02    0  TINFO  :  si_pid = 24339, si_code = 6, si_status = 18
waitid02   24  TPASS  :  Success6 ... 0 is returned
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=write01 stime=1372196411
cmdline="write01"
contacts=""
analysis=exit
<<<test_output>>>
write01     1  TPASS  :  write returned 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=write02 stime=1372196411
cmdline="write02"
contacts=""
analysis=exit
<<<test_output>>>
write02     0  TINFO  :  Block 1: test to see write() returns proper write count
write02     1  TPASS  :  write() PASSED
write02     0  TINFO  :  block 1 passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=write03 stime=1372196412
cmdline="write03"
contacts=""
analysis=exit
<<<test_output>>>
write03     0  TINFO  :  Enter Block 1: test to check if write corrupts the file when write fails
write03     1  TPASS  :  failure of write(2) didnot corrupt the file
write03     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=write04 stime=1372196412
cmdline="write04"
contacts=""
analysis=exit
<<<test_output>>>
write04     0  TINFO  :  Enter block 1: test for EAGAIN in write()
write04     0  TINFO  :  read() succeded in setting errno to EAGAIN
write04     1  TPASS  :  Block 1 PASSED
write04     0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=write05 stime=1372196412
cmdline="write05"
contacts=""
analysis=exit
<<<test_output>>>
write05     0  TINFO  :  Enter Block 1: test with bad fd
write05     1  TPASS  :  received EBADF as expected.
write05     0  TINFO  :  Exit Block 1
write05     0  TINFO  :  Enter Block 2: test with a bad address
write05     2  TPASS  :  received EFAULT as expected.
write05     0  TINFO  :  Exit Block 2
write05     0  TINFO  :  Enter Block 3: test with invalid pipe
write05     0  TINFO  :  Enter Block 1: test with bad fd
write05     1  TPASS  :  received EBADF as expected.
write05     0  TINFO  :  Exit Block 1
write05     0  TINFO  :  Enter Block 2: test with a bad address
write05     2  TPASS  :  received EFAULT as expected.
write05     0  TINFO  :  Exit Block 2
write05     0  TINFO  :  Enter Block 3: test with invalid pipe
write05     3  TPASS  :  received EPIPE as expected.
write05     0  TINFO  :  Exit Block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=writev01 stime=1372196412
cmdline="writev01"
contacts=""
analysis=exit
<<<test_output>>>
writev01    1  TPASS  :  Enter Block 1
writev01    2  TPASS  :  Received EINVAL as expected
writev01    0  TINFO  :  Exit block 1
writev01    3  TPASS  :  Enter block 2
writev01    0  TINFO  :  Exit block 2
writev01    4  TPASS  :  Enter block 3
writev01    0  TINFO  :  Exit block 3
writev01    5  TPASS  :  Enter block 4
writev01    6  TPASS  :  Received EBADF as expected
writev01    0  TINFO  :  Exit block 4
writev01    7  TPASS  :  Enter block 5
writev01    8  TPASS  :  Received EINVAL as expected
writev01    0  TINFO  :  Exit block 5
writev01    9  TPASS  :  Enter block 6
writev01   10  TPASS  :  writev wrote 0 iovectors
writev01    0  TINFO  :  Exit block 6
writev01   11  TPASS  :  Enter block 7
writev01   12  TPASS  :  writev passed writing 64 bytes, followed by two NULL vectors
writev01    0  TINFO  :  Exit block 7
writev01   13  TPASS  :  Enter block 8
writev01   14  TPASS  :  Received EPIPE as expected
writev01    0  TINFO  :  Exit block 8
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=writev02 stime=1372196412
cmdline="writev02"
contacts=""
analysis=exit
<<<test_output>>>
writev02    0  TINFO  :  Enter block 1
writev02    1  TPASS  :  Received EFAULT as expected
writev02    0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=writev03 stime=1372196412
cmdline="writev03"
contacts=""
analysis=exit
<<<test_output>>>
writev03    0  TINFO  :  Enter block 1
writev03    0  TINFO  :  Exit block 1
writev03    0  TINFO  :  Enter block 2
writev03    0  TINFO  :  Exit block 2
writev03    0  TINFO  :  Enter block 3
writev03    0  TINFO  :  Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=writev04 stime=1372196412
cmdline="writev04"
contacts=""
analysis=exit
<<<test_output>>>
writev04    0  TINFO  :  Enter block 1
writev04    0  TINFO  :  block 1 PASSED
writev04    0  TINFO  :  Exit block 1
writev04    0  TINFO  :  Enter block 2
writev04    0  TINFO  :  block 2 PASSED
writev04    0  TINFO  :  Exit block 2
writev04    0  TINFO  :  Enter block 3
writev04    0  TINFO  :  block 3 PASSED
writev04    0  TINFO  :  Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=writev05 stime=1372196412
cmdline="writev05"
contacts=""
analysis=exit
<<<test_output>>>
writev05    0  TINFO  :  Enter block 1
writev05    0  TINFO  :  Received EFAULT as expected
writev05    0  TINFO  :  block 1 PASSED
writev05    0  TINFO  :  Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=writev06 stime=1372196412
cmdline="writev06"
contacts=""
analysis=exit
<<<test_output>>>
writev06    0  TINFO  :  Enter block 1
writev06    0  TINFO  :  writev returned 2 as expected
writev06    0  TINFO  :  block 1 PASSED
writev06    0  TINFO  :  Exit block 1
incrementing stop
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
INFO: ltp-pan reported some tests FAIL
LTP Version: 20130503

       ###############################################################

            Done executing testcases.
            LTP Version:  20130503
       ###############################################################

rm: cannot remove `/tmp/ltp-LbqYZRF5cO/umodZtzKH/mnt_22295': Device or resource busy
rm: cannot remove `/tmp/ltp-LbqYZRF5cO/mourcnRbE/mnt_13054': Device or resource busy
rm: cannot remove `/tmp/ltp-LbqYZRF5cO/inoeV99AP/mnt_12846': Device or resource busy

Attachment: 0001-ipc-msg-Test-patch-from-Davidlohr.patch
Description: Binary data

Attachment: build_linux-next.sh
Description: Bourne shell script

Attachment: 3.10.0-rc7-next20130624-3-iniza-small.patch
Description: Binary data

Attachment: config-3.10.0-rc7-next20130624-3-iniza-small
Description: Binary data


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]