-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult-fj.log
13679 lines (13323 loc) · 405 KB
/
result-fj.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[root@localhost ostestset]# sh ./util/run_rt_postk.sh -p 5 -b
use uid:1000 gid:1050
10+0 records in
10+0 records out
10485760 bytes (10 MB, 10 MiB) copied, 0.0388632 s, 270 MB/s
set 4 4 1 7 => /proc/sys/kernel/printk
set core.host.%p => /proc/sys/kernel/core_pattern
set ulimit -S -c 0
boot McKernel, HOST core is #0-3
use NUMA-preset 5 memory: 4 GiB, numa: 4 separation
[insmod] ihk
[insmod] ihk_smp
use NUMA-preset 5 memory: 4 GiB, numa: 4 separation
----------
image: /opt/ppos/smp-arm64/kernel/mckernel.img
cpu: 4,5,6,7,8,9,10,11,12,13,14,15
mem: 4096M@0,4096M@1,4096M@2,4096M@3
----------
[insmod]mcctrl.ko
[create]
[alloc-cpu]
[ikc_map setting]
[alloc-mem]
[kargs]
[load]
[boot]
get McKernel memory size.
mck_max_mem_size :17179869184
mck_max_node_mem_size:4292870144
insmod test_drv
insmod /opt/ostestset/util/../bin/test_mck.ko
create charcter device /dev/test_mck/mmap_dev(242:0)
create charcter device /dev/test_mck/mmap_dev2(242:1)
create charcter device /dev/test_mck/writecombine(242:2)
## hello_world ##
Hello World
Hello World
## lv07 ##
0:Linux
use default thread_num = 2.
0:Linux
1:Linux
use thread_num = 1.
0:Linux
0a1
> 0:Linux
use thread_num = 2.
0:Linux
1:Linux
1a2
> 1:Linux
use thread_num = 3.
0:Linux
1:Linux
2:Linux
2a3
> 2:Linux
use thread_num = 4.
0:Linux
2:Linux
1:Linux
3:Linux
3a4
> 3:Linux
use thread_num = 5.
1:Linux
2:Linux
0:Linux
3:Linux
4:Linux
4a5
> 4:Linux
use thread_num = 6.
2:Linux
1:Linux
3:Linux
0:Linux
4:Linux
5:Linux
5a6
> 5:Linux
use thread_num = 7.
1:Linux
2:Linux
3:Linux
4:Linux
0:Linux
6:Linux
5:Linux
6a7
> 6:Linux
use thread_num = 8.
1:Linux
2:Linux
3:Linux
4:Linux
6:Linux
5:Linux
0:Linux
7:Linux
7a8
> 7:Linux
use thread_num = 9.
1:Linux
2:Linux
3:Linux
6:Linux
4:Linux
7:Linux
5:Linux
8:Linux
0:Linux
8a9
> 8:Linux
use thread_num = 10.
1:Linux
2:Linux
3:Linux
4:Linux
6:Linux
5:Linux
7:Linux
8:Linux
9:Linux
0:Linux
9a10
> 9:Linux
use thread_num = 11.
1:Linux
2:Linux
3:Linux
4:Linux
5:Linux
7:Linux
6:Linux
8:Linux
9:Linux
::Linux
0:Linux
10a11
> ::Linux
use thread_num = 12.
2:Linux
1:Linux
3:Linux
4:Linux
6:Linux
5:Linux
7:Linux
8:Linux
9:Linux
::Linux
;:Linux
0:Linux
11a12
> ;:Linux
## lv09 ##
aaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\n## lv11 ##
Terminate by signal 11
/opt/ostestset/util/run_testset_postk.sh: line 271: 24015 Segmentation fault ${mcexec} $execve_comm "${app_dir}/lv11" $execve_arg_end w rp $temp
mmap-writeTerminate by signal 11
/opt/ostestset/util/run_testset_postk.sh: line 271: 24045 Segmentation fault ${mcexec} $execve_comm "${app_dir}/lv11" $execve_arg_end w rep $temp
mmap-writemmap-writemmap-writeTerminate by signal 11
/opt/ostestset/util/run_testset_postk.sh: line 271: 24105 Segmentation fault ${mcexec} $execve_comm "${app_dir}/lv11" $execve_arg_end w ep $temp
aaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\naaabbbcccdddeeefffggghhh\n## lv12 ##
sig_num = 1, sig_name:SIGHUP received.
sig_num = 2, sig_name:SIGINT received.
sig_num = 3, sig_name:SIGQUIT received.
sig_num = 4, sig_name:SIGILL received.
sig_num = 5, sig_name:SIGTRAP received.
sig_num = 6, sig_name:SIGABRT / SIGIOT received.
sig_num = 6, sig_name:SIGABRT / SIGIOT received.
sig_num = 7, sig_name:SIGBUS received.
sig_num = 8, sig_name:SIGFPE received.
signal function set failed. sig_num = 9, sig_name:SIGKILL
sig_num = 10, sig_name:SIGUSR1 received.
sig_num = 11, sig_name:SIGSEGV received.
sig_num = 12, sig_name:SIGUSR2 received.
sig_num = 13, sig_name:SIGPIPE received.
sig_num = 14, sig_name:SIGALRM received.
sig_num = 15, sig_name:SIGTERM received.
sig_num = 16, sig_name:SIGSTKFLT received.
sig_num = 17, sig_name:SIGCHLD received.
sig_num = 18, sig_name:SIGCONT received.
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 20, sig_name:SIGTSTP received.
sig_num = 21, sig_name:SIGTTIN received.
sig_num = 22, sig_name:SIGTTOU received.
sig_num = 23, sig_name:SIGURG received.
sig_num = 24, sig_name:SIGXCPU received.
sig_num = 25, sig_name:SIGXFSZ received.
sig_num = 26, sig_name:SIGVTALRM received.
sig_num = 27, sig_name:SIGPROF received.
sig_num = 28, sig_name:SIGWINCH received.
sig_num = 29, sig_name:SIGIO received.
sig_num = 30, sig_name:SIGPWR received.
sig_num = 31, sig_name:SIGSYS received.
end of user program.
sig_num = 4 received.
end of user program.
sig_num = 11 received.
Terminate by signal 11
/opt/ostestset/util/run_testset_postk.sh: line 271: 24255 Segmentation fault ${mcexec} $execve_comm "${app_dir}/lv12-segv"
## lv14 ##
Run test00.
mmap-0[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
success
Run test01.
mmap-0[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x5a
success
Run test02.
mmap-0[0x1000001f0000-0x1000101f0000] 0x1000101efff8=0x0
success
Run test03.
mmap-0[0x100020000000-0x100060000000] 0x10005ffffff8=0x0
success
Run test04.
mmap-0[0x100020000000-0x100060000000] 0x10005ffffff8=0x0
mmap-1[0x100060000000-0x1000a0000000] 0x10009ffffff8=0x0
success
Run test05.
mmap-0[0x100020000000-0x100060000000] 0x10005ffffff8=0x0
mmap-1[0x100060000000-0x1000a0000000] 0x10009ffffff8=0x0
mmap-2[0x1000a0000000-0x1000e0000000] 0x1000dffffff8=0x0
mmap-3[0x1000e0000000-0x100120000000] 0x10011ffffff8=0x0
mmap-4[0x100120000000-0x100160000000] 0x10015ffffff8=0x0
success
## lv15 ##
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
signal function set failed. sig_num = 9, sig_name:SIGKILL
signal function set failed. sig_num = 19, sig_name:SIGSTOP
sig_num = 7, sig_name:SIGBUS received.
end of user program.
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
mmap[0x1000001f0000-0x1000005f0000] 0x1000005efff8=0x0
## socket ##
[client] Connect to 127.0.0.1
[server] Waiting for connection ...
[client] Trying to connect to 127.0.0.1:
[client] sending...[0]
[server] Connected from 127.0.0.1
[server] received[0]: This is a test
[client] sending...[1]
[server] received[1]: This is a test
[client] sending...[2]
[server] received[2]: This is a test
[client] sending...[3]
[server] received[3]: This is a test
[client] sending...[4]
[server] received[4]: This is a test
[client] sending...[5]
[server] received[5]: This is a test
[client] sending...[6]
[server] received[6]: This is a test
[client] sending...[7]
[server] received[7]: This is a test
[client] sending...[8]
[server] received[8]: This is a test
[client] sending...[9]
[server] received[9]: This is a test
## siginfo ##
TEST_SUITE: siginfo
TEST_NUMBER: 0
ARGS:
=== raise signal #1 ===
Catch signal #1
siginfo->si_signo = 1
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00000002
=== raise signal #2 ===
Catch signal #2
siginfo->si_signo = 2
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00000006
=== raise signal #3 ===
Catch signal #3
siginfo->si_signo = 3
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0000000e
=== raise signal #4 ===
Catch signal #4
siginfo->si_signo = 4
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0000001e
=== raise signal #5 ===
Catch signal #5
siginfo->si_signo = 5
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0000003e
=== raise signal #6 ===
Catch signal #6
siginfo->si_signo = 6
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0000007e
=== raise signal #7 ===
Catch signal #7
siginfo->si_signo = 7
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x000000fe
=== raise signal #8 ===
Catch signal #8
siginfo->si_signo = 8
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x000001fe
=== raise signal #10 ===
Catch signal #10
siginfo->si_signo = 10
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x000005fe
=== raise signal #11 ===
Catch signal #11
siginfo->si_signo = 11
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00000dfe
=== raise signal #12 ===
Catch signal #12
siginfo->si_signo = 12
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00001dfe
=== raise signal #13 ===
Catch signal #13
siginfo->si_signo = 13
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00003dfe
=== raise signal #14 ===
Catch signal #14
siginfo->si_signo = 14
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00007dfe
=== raise signal #15 ===
Catch signal #15
siginfo->si_signo = 15
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0000fdfe
=== raise signal #16 ===
Catch signal #16
siginfo->si_signo = 16
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0001fdfe
=== raise signal #17 ===
Catch signal #17
siginfo->si_signo = 17
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0003fdfe
=== raise signal #18 ===
Catch signal #18
siginfo->si_signo = 18
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0007fdfe
=== raise signal #20 ===
Catch signal #20
siginfo->si_signo = 20
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0017fdfe
=== raise signal #21 ===
Catch signal #21
siginfo->si_signo = 21
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0037fdfe
=== raise signal #22 ===
Catch signal #22
siginfo->si_signo = 22
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0077fdfe
=== raise signal #23 ===
Catch signal #23
siginfo->si_signo = 23
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x00f7fdfe
=== raise signal #24 ===
Catch signal #24
siginfo->si_signo = 24
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x01f7fdfe
=== raise signal #25 ===
Catch signal #25
siginfo->si_signo = 25
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x03f7fdfe
=== raise signal #26 ===
Catch signal #26
siginfo->si_signo = 26
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x07f7fdfe
=== raise signal #27 ===
Catch signal #27
siginfo->si_signo = 27
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x0ff7fdfe
=== raise signal #28 ===
Catch signal #28
siginfo->si_signo = 28
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x1ff7fdfe
=== raise signal #29 ===
Catch signal #29
siginfo->si_signo = 29
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x3ff7fdfe
=== raise signal #30 ===
Catch signal #30
siginfo->si_signo = 30
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0x7ff7fdfe
=== raise signal #31 ===
Catch signal #31
siginfo->si_signo = 31
siginfo->si_errno = 0
siginfo->si_code = 0xfffffffa
delivered_signal=0xfff7fdfe
RESULT: ok
TEST_SUITE: siginfo
TEST_NUMBER: 1
ARGS:
==================================================
Please send signal to mcexec(pid=24918) from console.
Exit Once you throw twice the same signal.
==================================================
SIGNAL_EXPECT_TO_DELIVER : 0xff80fdfe
send SIGHUP to 24918
Catch signal #1
siginfo->si_signo = 1
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x00000002
send SIGINT to 24918
Catch signal #2
siginfo->si_signo = 2
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x00000006
send SIGQUIT to 24918
Catch signal #3
siginfo->si_signo = 3
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x0000000e
send SIGILL to 24918
Catch signal #4
siginfo->si_signo = 4
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x0000001e
send SIGTRAP to 24918
Catch signal #5
siginfo->si_signo = 5
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x0000003e
send SIGABRT to 24918
Catch signal #6
siginfo->si_signo = 6
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x0000007e
send SIGEMT to 24918
/opt/ostestset/util/run_testset_postk.sh: line 48: kill: EMT: invalid signal specification
send SIGFPE to 24918
Catch signal #8
siginfo->si_signo = 8
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x0000017e
send SIGBUS to 24918
Catch signal #7
siginfo->si_signo = 7
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x000001fe
send SIGSEGV to 24918
Catch signal #11
siginfo->si_signo = 11
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x000009fe
send SIGSYS to 24918
Catch signal #31
siginfo->si_signo = 31
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x800009fe
send SIGPIPE to 24918
Catch signal #13
siginfo->si_signo = 13
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x800029fe
send SIGALRM to 24918
Catch signal #14
siginfo->si_signo = 14
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x800069fe
send SIGTERM to 24918
Catch signal #15
siginfo->si_signo = 15
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x8000e9fe
send SIGURG to 24918
Catch signal #23
siginfo->si_signo = 23
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0x8080e9fe
send SIGIO to 24918
Catch signal #29
siginfo->si_signo = 29
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xa080e9fe
send SIGXCPU to 24918
Catch signal #24
siginfo->si_signo = 24
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xa180e9fe
send SIGXFSZ to 24918
Catch signal #25
siginfo->si_signo = 25
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xa380e9fe
send SIGVTALRM to 24918
Catch signal #26
siginfo->si_signo = 26
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xa780e9fe
send SIGPROF to 24918
Catch signal #27
siginfo->si_signo = 27
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xaf80e9fe
send SIGWINCH to 24918
Catch signal #28
siginfo->si_signo = 28
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xbf80e9fe
send SIGPWR to 24918
Catch signal #30
siginfo->si_signo = 30
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xff80e9fe
send SIGUSR1 to 24918
Catch signal #10
siginfo->si_signo = 10
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xff80edfe
send SIGUSR2 to 24918
Catch signal #12
siginfo->si_signo = 12
siginfo->si_errno = 0
siginfo->si_code = 0x0
delivered_signal=0xff80fdfe
RESULT: ok
## wait4 ##
TEST_SUITE: wait4
TEST_NUMBER: 0
ARGS:
wait4()=24976, errno=0
RESULT: ok
TEST_SUITE: wait4
TEST_NUMBER: 1
ARGS: -f /opt/ostestset/util/pid_max
wait4()=-1, errno=10
RESULT: ok
TEST_SUITE: wait4
TEST_NUMBER: 2
ARGS:
(sig_handler)sig_num=17
wait4()=25020, errno=0
RESULT: ok
TEST_SUITE: wait4
TEST_NUMBER: 3
ARGS:
[child]pid=25049
[child]send signal success.
(sig_handler)sig_num=12, pid=25034
wait()=25049, errno=0
RESULT: ok
## env ##
"AAA" is not env value.
"a" is not env value.
"b" is not env value.
TEST_SUITE: env
TEST_NUMBER: 0
ARGS:
_=/opt/ppos/bin/mcexec
BASH_FUNC__moduleraw%%=() { unset _mlre _mlIFS _mlshdbg;
if [ "${MODULES_SILENT_SHELL_DEBUG:-0}" = '1' ]; then
case "$-" in
*v*x*)
set +vx;
_mlshdbg='vx'
;;
*v*)
set +v;
_mlshdbg='v'
;;
*x*)
set +x;
_mlshdbg='x'
;;
*)
_mlshdbg=''
;;
esac;
fi;
if [ -n "${IFS+x}" ]; then
_mlIFS=$IFS;
fi;
IFS=' ';
for _mlv in ${MODULES_RUN_QUARANTINE:-};
do
if [ "${_mlv}" = "${_mlv##*[!A-Za-z0-9_]}" -a "${_mlv}" = "${_mlv#[0-9]}" ]; then
if [ -n "`eval 'echo ${'$_mlv'+x}'`" ]; then
_mlre="${_mlre:-}${_mlv}_modquar='`eval 'echo ${'$_mlv'}'`' ";
fi;
_mlrv="MODULES_RUNENV_${_mlv}";
_mlre="${_mlre:-}${_mlv}='`eval 'echo ${'$_mlrv':-}'`' ";
fi;
done;
if [ -n "${_mlre:-}" ]; then
eval `eval ${_mlre}/usr/bin/tclsh /usr/share/Modules/libexec/modulecmd.tcl bash '"$@"'`;
else
eval `/usr/bin/tclsh /usr/share/Modules/libexec/modulecmd.tcl bash "$@"`;
fi;
_mlstatus=$?;
if [ -n "${_mlIFS+x}" ]; then
IFS=$_mlIFS;
else
unset IFS;
fi;
if [ -n "${_mlshdbg:-}" ]; then
set -$_mlshdbg;
fi;
unset _mlre _mlv _mlrv _mlIFS _mlshdbg;
return $_mlstatus
}
BASH_FUNC_scl%%=() { if [ "$1" = "load" -o "$1" = "unload" ]; then
eval "module $@";
else
/usr/bin/scl "$@";
fi
}
BASH_FUNC_switchml%%=() { typeset swfound=1;
if [ "${MODULES_USE_COMPAT_VERSION:-0}" = '1' ]; then
typeset swname='main';
if [ -e /usr/share/Modules/libexec/modulecmd.tcl ]; then
typeset swfound=0;
unset MODULES_USE_COMPAT_VERSION;
fi;
else
typeset swname='compatibility';
if [ -e /usr/share/Modules/libexec/modulecmd-compat ]; then
typeset swfound=0;
MODULES_USE_COMPAT_VERSION=1;
export MODULES_USE_COMPAT_VERSION;
fi;
fi;
if [ $swfound -eq 0 ]; then
echo "Switching to Modules $swname version";
source /usr/share/Modules/init/bash;
else
echo "Cannot switch to Modules $swname version, command not found";
return 1;
fi
}
BASH_FUNC_module%%=() { _moduleraw "$@" 2>&1
}
LESSOPEN=||/usr/bin/lesspipe.sh %s
HISTSIZE=1000
MODULESHOME=/usr/share/Modules
PATH=/usr/share/Modules/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
MODULEPATH_modshare=/usr/share/modulefiles:1:/etc/modulefiles:1:/usr/share/Modules/modulefiles:1
XDG_RUNTIME_DIR=/run/user/0
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/0/bus
LOGNAME=root
MODULEPATH=/etc/scl/modulefiles:/usr/share/Modules/modulefiles:/etc/modulefiles:/usr/share/modulefiles
SHLVL=3
SHELL=/bin/bash
TERM=screen
MAIL=/var/spool/mail/root
SSH_TTY=/dev/pts/0
LOADEDMODULES=
BASH_ENV=/usr/share/Modules/init/bash
SSH_CLIENT=10.0.2.2 38768 22
HOME=/root
PWD=/opt/ostestset
ENV=/usr/share/Modules/init/profile.sh
MODULES_CMD=/usr/share/Modules/libexec/modulecmd.tcl
XDG_SESSION_ID=4
S_COLORS=auto
OLDPWD=/opt/ostestset/bin
HOSTNAME=localhost.localdomain
HISTCONTROL=ignoredups
LANG=ja_JP.UTF-8
MODULES_RUN_QUARANTINE=LD_LIBRARY_PATH
SSH_CONNECTION=10.0.2.2 38768 10.0.2.15 22
LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.m4a=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.oga=01;36:*.opus=01;36:*.spx=01;36:*.xspf=01;36:
ARCH=x86
USER=
RESULT: ok
## rt_sigsuspend ##
TEST_SUITE: rt_sigsuspend
TEST_NUMBER: 0
ARGS:
(sig_handler)sig_num=14
sys_rt_sigsuspend()=-1, errno=4
RESULT: ok
## cpu_thread_limits ##
TEST_SUITE: cpu_thread_limits
TEST_NUMBER: 0
ARGS: -t 11
[tid=25101] from child thread.(local_id=7)
[tid=25102] from child thread.(local_id=6)
[tid=25103] from child thread.(local_id=5)
[tid=25100] from child thread.(local_id=8)
[tid=25099] from child thread.(local_id=9)
[tid=25106] from child thread.(local_id=2)
[tid=25097] from child thread.(local_id=11)
[tid=25107] from child thread.(local_id=1)
[tid=25105] from child thread.(local_id=3)
[tid=25098] from child thread.(local_id=10)
[tid=25104] from child thread.(local_id=4)
RESULT: ok
TEST_SUITE: cpu_thread_limits
TEST_NUMBER: 1
ARGS: -t 11
PI = 3.14159265358983
RESULT: ok
## gettid ##
TEST_SUITE: gettid
TEST_NUMBER: 0
ARGS:
PID=25123, TID=25123
RESULT: ok
TEST_SUITE: gettid
TEST_NUMBER: 1
ARGS:
[parent] pid=25138, tid=25138
[child ] pid=25138, tid=25152
RESULT: ok
## mprotect ##
TEST_SUITE: mprotect
TEST_NUMBER: 0
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 1
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 2
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 3
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 4
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 5
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 6
ARGS:
mapped=0x100000260000
RESULT: ok
TEST_SUITE: mprotect
TEST_NUMBER: 7
ARGS:
mapped=0x100000260000
RESULT: ok
## mem_stack_limits ##
MCKERNEL_RLIMIT_STACK=10MiB(10240 KiB),10MiB(10240 KiB)
TEST_SUITE: mem_stack_limits
TEST_NUMBER: 0
ARGS: -s 9961472
call: 0 GiB + 9 MiB + 512 KiB
used_stack size: 9986480 (0 GiB + 9 MiB + 536 KiB)
RESULT: ok
MCKERNEL_RLIMIT_STACK=2GiB(2097152 KiB),2GiB(2097152 KiB)
TEST_SUITE: mem_stack_limits
TEST_NUMBER: 0
ARGS: -s 2040109466
call: 1 GiB + 921 MiB + 614 KiB
used_stack size: 2040182784 (1 GiB + 921 MiB + 686 KiB)
RESULT: ok
MCKERNEL_RLIMIT_STACK=mckernel_max_memory_size x 110%
TEST_SUITE: mem_stack_limits
TEST_NUMBER: 0
ARGS: -s 16320875721
call: 15 GiB + 204 MiB + 819 KiB
used_stack size: 16320925344 (15 GiB + 204 MiB + 867 KiB)
RESULT: ok
TEST_SUITE: mem_stack_limits
TEST_NUMBER: 0
ARGS: -s 18897856098
call: 17 GiB + 614 MiB + 409 KiB
Terminate by signal 11
/opt/ostestset/util/run_testset_postk.sh: line 391: 25319 Segmentation fault ${mcexec} $execve_comm "${app_dir}/test_mck" $execve_arg_end -s mem_stack_limits -n 0 -- -s $mck_max_mem_size_110p
unset MCKERNEL_RLIMIT_STACK
## munlock ##
TEST_SUITE: munlock
TEST_NUMBER: 0