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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294 | adt-run: DBG: Parsed options: Namespace(apt_pocket=[], auto_control=True, copy=[], env=[], gainroot=None, logfile=None, output_dir='/home/ubuntu/tmp/adt-tmp/', set_lang=None, setup_commands=['(apt-get update || (sleep 15; apt-get update) || (sleep 60; apt-get update)) && $(which eatmydata || true) apt-get dist-upgrade -y -o Dpkg::Options::="--force-confnew"'], shell=False, shell_fail=False, summary=None, timeout_build=None, timeout_copy=None, timeout_factor=1.0, timeout_install=None, timeout_short=None, timeout_test=None, user=None, verbosity=2)
adt-run: DBG: Remaining arguments: ['--built-binaries', '--unbuilt-tree', 'open-iscsi/']
adt-run: DBG: Interpreted actions: ['--built-binaries', '--unbuilt-tree', 'open-iscsi/']
adt-run: DBG: Virt runner arguments: ['adt-virt-qemu', '--ram-size=2048', '-d', 'adt-xenial-amd64-cloud.img']
adt-run: DBG: testbed init
adt-run [13:20:21]: version 3.20.1
adt-run [13:20:21]: host kearney; command line: /usr/bin/adt-run -dd --apt-upgrade --built-binaries --unbuilt-tree open-iscsi/ -o /home/ubuntu/tmp/adt-tmp/ --- adt-virt-qemu --ram-size=2048 -d adt-xenial-amd64-cloud.img
adt-run: DBG: got reply from testbed: ok
adt-run: DBG: testbed open, scratch=None
adt-run: DBG: sending command to testbed: open
adt-virt-qemu: DBG: executing open
adt-virt-qemu: DBG: Creating temporary overlay image in /tmp/adt-virt-qemu.b_yppj5y/overlay.img
adt-virt-qemu: DBG: execute-timeout: qemu-img create -f qcow2 -b /home/ubuntu/open-iscsi/adt-xenial-amd64-cloud.img /tmp/adt-virt-qemu.b_yppj5y/overlay.img
adt-virt-qemu: DBG: Detected KVM capable AMD host CPU, enabling nested KVM
adt-virt-qemu: DBG: find_free_port: trying 10022
adt-virt-qemu: DBG: find_free_port: 10022 is free
adt-virt-qemu: DBG: Forwarding local port 10022 to VM ssh port 22
adt-virt-qemu: DBG: expect: " login: "
adt-virt-qemu: DBG: expect: found ""login prompt on ttyS0""
adt-virt-qemu: DBG: expect: "ok"
adt-virt-qemu: DBG: expect: found ""b'ok'""
adt-virt-qemu: DBG: setup_shell(): there already is a shell on ttyS1
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "(qemu)"
adt-virt-qemu: DBG: expect: found ""b'(qemu)'""
adt-virt-qemu: DBG: expect: "(qemu)"
adt-virt-qemu: DBG: expect: found ""b'(qemu)'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: Copying host timezone Etc/UTC to VM
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "/python"
adt-virt-qemu: DBG: expect: found ""b'/python'""
adt-virt-qemu: DBG: expect: "# "
adt-virt-qemu: DBG: expect: found ""b'# '""
adt-virt-qemu: DBG: expect: "# "
adt-virt-qemu: DBG: expect: found ""b'# '""
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd true
adt-virt-qemu: DBG: can connect to autopkgtest sh in VM
adt-virt-qemu: DBG: determine_normal_user: got user "ubuntu"
adt-virt-qemu: DBG: auxverb = ['/tmp/adt-virt-qemu.b_yppj5y/runcmd'], downtmp = None
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd mktemp --directory --tmpdir adt-run.XXXXXX
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd chmod 1777 /tmp/adt-run.W1UzG0
adt-run: DBG: got reply from testbed: ok /tmp/adt-run.W1UzG0
adt-run: DBG: sending command to testbed: print-execute-command
adt-virt-qemu: DBG: executing print-execute-command
adt-run: DBG: got reply from testbed: ok /tmp/adt-virt-qemu.b_yppj5y/runcmd
adt-run: DBG: sending command to testbed: capabilities
adt-virt-qemu: DBG: executing capabilities
adt-run: DBG: got reply from testbed: ok revert revert-full-system root-on-testbed isolation-machine reboot suggested-normal-user=ubuntu
adt-run: DBG: testbed capabilities: ['revert', 'revert-full-system', 'root-on-testbed', 'isolation-machine', 'reboot', 'suggested-normal-user=ubuntu']
adt-run [13:20:45]: @@@@@@@@@@@@@@@@@@@@ test bed setup
adt-run: DBG: testbed command ['bash', '-ec', 'for d in /boot /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/adt-run.W1UzG0/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ec', '(apt-get update || (sleep 15; apt-get update) || (sleep 60; apt-get update)) && $(which eatmydata || true) apt-get dist-upgrade -y -o Dpkg::Options::="--force-confnew"'], kind install, sout raw, serr raw, env ['ADT_IS_SETUP_COMMAND=1', 'ADT_NORMAL_USER=ubuntu', 'DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none']
Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [95.6 kB]
Hit:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease
Get:3 http://archive.ubuntu.com/ubuntu xenial/main Sources [1,107 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/universe Sources [7,515 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1,435 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7,242 kB]
Fetched 17.4 MB in 4s (3,532 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
apt apt-transport-https apt-utils cron gcc-5-base gcc-6-base
libaccountsservice0 libapt-inst2.0 libapt-pkg5.0 libgcc1 libstdc++6
11 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,605 kB of archives.
After this operation, 25.6 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc-6-base amd64 6-20160405-0ubuntu1 [14.2 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgcc1 amd64 1:6-20160405-0ubuntu1 [38.6 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc-5-base amd64 5.3.1-13ubuntu4 [16.9 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libstdc++6 amd64 5.3.1-13ubuntu4 [392 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapt-pkg5.0 amd64 1.2.10 [695 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapt-inst2.0 amd64 1.2.10 [55.7 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 apt amd64 1.2.10 [1,034 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 apt-utils amd64 1.2.10 [196 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 cron amd64 3.0pl1-128ubuntu2 [68.4 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 apt-transport-https amd64 1.2.10 [25.7 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libaccountsservice0 amd64 0.6.40-2ubuntu9 [67.7 kB]
Fetched 2,605 kB in 0s (11.2 MB/s)
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../gcc-6-base_6-20160405-0ubuntu1_amd64.deb ...
Unpacking gcc-6-base:amd64 (6-20160405-0ubuntu1) over (6-20160319-0ubuntu1) ...
Setting up gcc-6-base:amd64 (6-20160405-0ubuntu1) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../libgcc1_1%3a6-20160405-0ubuntu1_amd64.deb ...
Unpacking libgcc1:amd64 (1:6-20160405-0ubuntu1) over (1:6-20160319-0ubuntu1) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Setting up libgcc1:amd64 (1:6-20160405-0ubuntu1) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../gcc-5-base_5.3.1-13ubuntu4_amd64.deb ...
Unpacking gcc-5-base:amd64 (5.3.1-13ubuntu4) over (5.3.1-13ubuntu3) ...
Setting up gcc-5-base:amd64 (5.3.1-13ubuntu4) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../libstdc++6_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libstdc++6:amd64 (5.3.1-13ubuntu4) over (5.3.1-13ubuntu3) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Setting up libstdc++6:amd64 (5.3.1-13ubuntu4) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../libapt-pkg5.0_1.2.10_amd64.deb ...
Unpacking libapt-pkg5.0:amd64 (1.2.10) over (1.2.9) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Setting up libapt-pkg5.0:amd64 (1.2.10) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82315 files and directories currently installed.)
Preparing to unpack .../libapt-inst2.0_1.2.10_amd64.deb ...
Unpacking libapt-inst2.0:amd64 (1.2.10) over (1.2.9) ...
Preparing to unpack .../archives/apt_1.2.10_amd64.deb ...
Unpacking apt (1.2.10) over (1.2.9) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up apt (1.2.10) ...
Removing obsolete conffile /etc/cron.daily/apt ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82318 files and directories currently installed.)
Preparing to unpack .../apt-utils_1.2.10_amd64.deb ...
Unpacking apt-utils (1.2.10) over (1.2.9) ...
Preparing to unpack .../cron_3.0pl1-128ubuntu2_amd64.deb ...
Unpacking cron (3.0pl1-128ubuntu2) over (3.0pl1-128ubuntu1) ...
Preparing to unpack .../apt-transport-https_1.2.10_amd64.deb ...
Unpacking apt-transport-https (1.2.10) over (1.2.9) ...
Preparing to unpack .../libaccountsservice0_0.6.40-2ubuntu9_amd64.deb ...
Unpacking libaccountsservice0:amd64 (0.6.40-2ubuntu9) over (0.6.40-2ubuntu8) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for systemd (229-3ubuntu2) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Setting up libapt-inst2.0:amd64 (1.2.10) ...
Setting up apt-utils (1.2.10) ...
Setting up cron (3.0pl1-128ubuntu2) ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-rc.d: warning: stop runlevel arguments (1) do not match cron Default-Stop values (none)
Setting up apt-transport-https (1.2.10) ...
Setting up libaccountsservice0:amd64 (0.6.40-2ubuntu9) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/adt-run.W1UzG0/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 1
adt-run [13:21:03]: rebooting testbed after setup commands that affected boot
adt-run: DBG: sending command to testbed: reboot
adt-virt-qemu: DBG: executing reboot
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec for d in /var/cache /home; do if [ -w $d ]; then tar --warning=none --create --absolute-names -f $d/autopkgtest-tmpdir.tar '/tmp/adt-run.W1UzG0'; rm -f /run/autopkgtest-reboot-prepare-mark; exit 0; fi; done; exit 1
adt-virt-qemu: DBG: cmd_reboot: saved current downtmp, rebooting
adt-virt-qemu: DBG: expect: "(qemu)"
adt-virt-qemu: DBG: expect: found ""b'(qemu)'""
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -c pkill -9 dhclient >/dev/null 2>&1; (sleep 3; reboot) >/dev/null 2>&1 &
adt-virt-qemu: DBG: expect: " login: "
adt-virt-qemu: DBG: expect: found ""login prompt on ttyS0""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: expect: "(qemu)"
adt-virt-qemu: DBG: expect: found ""b'(qemu)'""
adt-virt-qemu: DBG: expect: "(qemu)"
adt-virt-qemu: DBG: expect: found ""b'(qemu)'""
adt-virt-qemu: DBG: expect: "#"
adt-virt-qemu: DBG: expect: found ""b'#'""
adt-virt-qemu: DBG: execute-timeout: /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec for d in /var/cache /home; do if [ -e $d/autopkgtest-tmpdir.tar ]; then tar --warning=none --extract --absolute-names -f $d/autopkgtest-tmpdir.tar; rm $d/autopkgtest-tmpdir.tar; exit 0; fi; done; exit 1
adt-virt-qemu: DBG: cmd_reboot: restored downtmp after reboot
adt-run: DBG: got reply from testbed: ok
adt-run: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
adt-run: DBG: testbed command ['sh', '-ecC', '[ ! -e /tmp/autopkgtest-reboot ] || exit 0; /bin/echo -e \'#!/bin/sh -e\\n[ -n "$1" ] || { echo "Usage: $0 <mark>" >&2; exit 1; }\\necho "$1" > /run/autopkgtest-reboot-mark\\ntest_script_pid=$(cat /tmp/adt_test_script_pid)\\np=$PPID; while true; do read _ c _ pp _ < /proc/$p/stat; [ $pp -ne $test_script_pid ] || break; p=$pp; done\\nkill -KILL $p\\n\' > /tmp/autopkgtest-reboot;chmod 755 /tmp/autopkgtest-reboot;[ -L /sbin/autopkgtest-reboot ] || ln -s /tmp/autopkgtest-reboot /sbin/autopkgtest-reboot 2>/dev/null || true'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ecC', '[ ! -e /tmp/autopkgtest-reboot-prepare ] || exit 0; /bin/echo -e \'#!/bin/sh -e\\n[ -n "$1" ] || { echo "Usage: $0 <mark>" >&2; exit 1; }\\necho "$1" > /run/autopkgtest-reboot-prepare-mark\\ntest_script_pid=$(cat /tmp/adt_test_script_pid)\\nkill -KILL $test_script_pid\\nwhile [ -e /run/autopkgtest-reboot-prepare-mark ]; do sleep 0.5; done\\n \'> /tmp/autopkgtest-reboot-prepare;chmod 755 /tmp/autopkgtest-reboot-prepare;'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run [13:21:32]: testbed running kernel: Linux 4.4.0-17-generic #33-Ubuntu SMP Tue Mar 29 17:17:28 UTC 2016
adt-run: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run [13:21:33]: testbed dpkg architecture: amd64
adt-run: DBG: testbed command ['which', 'eatmydata'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed has eatmydata
adt-run: DBG: testbed command ['which', 'dpkg-query'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/adt-run.W1UzG0/testbed-packages"], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: sending command to testbed: copyup /tmp/adt-run.W1UzG0/testbed-packages /home/ubuntu/tmp/adt-tmp/testbed-packages
adt-virt-qemu: DBG: executing copyup /tmp/adt-run.W1UzG0/testbed-packages /home/ubuntu/tmp/adt-tmp/testbed-packages
adt-virt-qemu: DBG: ['cmdls', "(['/tmp/adt-virt-qemu.b_yppj5y/runcmd', 'sh', '-ec', 'cat </tmp/adt-run.W1UzG0/testbed-packages'], ['cat'])"]
adt-virt-qemu: DBG: ['srcstdin', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'deststdout', "<_io.TextIOWrapper name='/home/ubuntu/tmp/adt-tmp/testbed-packages' mode='w' encoding='UTF-8'>", 'devnull_read', <_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>]
adt-virt-qemu: DBG: +< /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec cat </tmp/adt-run.W1UzG0/testbed-packages
adt-virt-qemu: DBG: +> cat
adt-virt-qemu: DBG: +>?
adt-virt-qemu: DBG: +<?
adt-run: DBG: got reply from testbed: ok
adt-run: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
adt-run: DBG: testbed command ['sh', '-ecC', '[ ! -e /tmp/autopkgtest-reboot ] || exit 0; /bin/echo -e \'#!/bin/sh -e\\n[ -n "$1" ] || { echo "Usage: $0 <mark>" >&2; exit 1; }\\necho "$1" > /run/autopkgtest-reboot-mark\\ntest_script_pid=$(cat /tmp/adt_test_script_pid)\\np=$PPID; while true; do read _ c _ pp _ < /proc/$p/stat; [ $pp -ne $test_script_pid ] || break; p=$pp; done\\nkill -KILL $p\\n\' > /tmp/autopkgtest-reboot;chmod 755 /tmp/autopkgtest-reboot;[ -L /sbin/autopkgtest-reboot ] || ln -s /tmp/autopkgtest-reboot /sbin/autopkgtest-reboot 2>/dev/null || true'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ecC', '[ ! -e /tmp/autopkgtest-reboot-prepare ] || exit 0; /bin/echo -e \'#!/bin/sh -e\\n[ -n "$1" ] || { echo "Usage: $0 <mark>" >&2; exit 1; }\\necho "$1" > /run/autopkgtest-reboot-prepare-mark\\ntest_script_pid=$(cat /tmp/adt_test_script_pid)\\nkill -KILL $test_script_pid\\nwhile [ -e /run/autopkgtest-reboot-prepare-mark ]; do sleep 0.5; done\\n \'> /tmp/autopkgtest-reboot-prepare;chmod 755 /tmp/autopkgtest-reboot-prepare;'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: Binaries: initialising
adt-run [13:21:35]: @@@@@@@@@@@@@@@@@@@@ unbuilt-tree open-iscsi/
adt-run: DBG: blame += open-iscsi/
adt-run: DBG: testbed reset: modified=False, deps_installed=[](r: False), deps_new=[](r: False)
adt-run: DBG: testbed command ['mkdir', '-p', '/tmp/adt-run.W1UzG0'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: sending command to testbed: copydown open-iscsi// /tmp/adt-run.W1UzG0/ubtree-/
adt-virt-qemu: DBG: executing copydown open-iscsi// /tmp/adt-run.W1UzG0/ubtree-/
adt-virt-qemu: DBG: ['cmdls', "(['tar', '--directory', 'open-iscsi//', '--warning=none', '-c', '.', '-f', '-'], ['/tmp/adt-virt-qemu.b_yppj5y/runcmd', 'sh', '-ec', 'if ! test -d /tmp/adt-run.W1UzG0/ubtree-/; then mkdir -- /tmp/adt-run.W1UzG0/ubtree-/; fi; cd /tmp/adt-run.W1UzG0/ubtree-/; tar --warning=none --preserve-permissions --extract --no-same-owner -f -'])"]
adt-virt-qemu: DBG: ['srcstdin', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'deststdout', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'devnull_read', <_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>]
adt-virt-qemu: DBG: +< tar --directory open-iscsi// --warning=none -c . -f -
adt-virt-qemu: DBG: +> /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec if ! test -d /tmp/adt-run.W1UzG0/ubtree-/; then mkdir -- /tmp/adt-run.W1UzG0/ubtree-/; fi; cd /tmp/adt-run.W1UzG0/ubtree-/; tar --warning=none --preserve-permissions --extract --no-same-owner -f -
adt-virt-qemu: DBG: +>?
adt-virt-qemu: DBG: +<?
adt-run: DBG: got reply from testbed: ok
adt-run: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/adt-run.W1UzG0/ubtree-'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/adt-run.W1UzG0/build.XXX); cd $builddir; cp -rd --preserve=timestamps -- "/tmp/adt-run.W1UzG0/ubtree-" real-tree; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3; set +e; grep -q "^Restrictions:.*\\bbuild-needed\\b" debian/tests/control 2>/dev/null; echo $? >&3\''], kind build, sout pipe, serr raw, env []
+ cd /
+ mktemp -d /tmp/adt-run.W1UzG0/build.XXX
+ builddir=/tmp/adt-run.W1UzG0/build.6ms
+ cd /tmp/adt-run.W1UzG0/build.6ms
+ cp -rd --preserve=timestamps -- /tmp/adt-run.W1UzG0/ubtree- real-tree
+ chmod -R a+rX .
+ cd real-tree/.
+ pwd
+ sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog
+ set +e
+ grep -q ^Restrictions:.*\bbuild-needed\b debian/tests/control
+ echo 1
adt-run: DBG: testbed command exited with code 0
adt-run [13:21:37]: testing package open-iscsi version 2.0.873+git0.3b4b4500-14ubuntu3
adt-run [13:21:37]: build needed for binaries
adt-run: DBG: needs_reset, previously=False, requested by build_source() line 430
adt-run: DBG: install_deps: deps_new=[], recommends=False
adt-run: DBG: open-iscsi/: satisfying debhelper (>= 9), bzip2, bison, flex, autotools-dev, dh-autoreconf, dh-exec, dpkg-dev (>= 1.16.1~), po-debconf, dh-systemd, , build-essential, fakeroot
adt-run: DBG: open-iscsi/: architecture resolved: debhelper (>= 9), bzip2, bison, flex, autotools-dev, dh-autoreconf, dh-exec, dpkg-dev (>= 1.16.1~), po-debconf, dh-systemd, build-essential, fakeroot
adt-run: DBG: testbed command ['test', '-w', '/var/lib/dpkg/status'], kind short, sout raw, serr raw, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: can use apt-get on testbed: True
adt-run: DBG: testbed command ['mkdir', '-p', '/tmp/adt-run.W1UzG0'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: sending command to testbed: copydown /home/ubuntu/tmp/adt-tmp/adt-satdep.deb /tmp/adt-run.W1UzG0/adt-satdep.deb
adt-virt-qemu: DBG: executing copydown /home/ubuntu/tmp/adt-tmp/adt-satdep.deb /tmp/adt-run.W1UzG0/adt-satdep.deb
adt-virt-qemu: DBG: ['cmdls', "(['cat'], ['/tmp/adt-virt-qemu.b_yppj5y/runcmd', 'sh', '-ec', 'cat >/tmp/adt-run.W1UzG0/adt-satdep.deb'])"]
adt-virt-qemu: DBG: ['srcstdin', "<_io.TextIOWrapper name='/home/ubuntu/tmp/adt-tmp/adt-satdep.deb' mode='r' encoding='UTF-8'>", 'deststdout', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'devnull_read', <_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>]
adt-virt-qemu: DBG: +< cat
adt-virt-qemu: DBG: +> /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec cat >/tmp/adt-run.W1UzG0/adt-satdep.deb
adt-virt-qemu: DBG: +>?
adt-virt-qemu: DBG: +<?
adt-run: DBG: got reply from testbed: ok
adt-run: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/adt-run.W1UzG0/adt-satdep.deb'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['dpkg', '--unpack', '/tmp/adt-run.W1UzG0/adt-satdep.deb'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['/bin/sh', '-ec', '/usr/bin/eatmydata apt-get install --assume-yes --fix-broken -o APT::Status-Fd=3 -o APT::Install-Recommends=False -o Debug::pkgProblemResolver=true 3>&2 2>&1'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none']
Reading package lists...
Building dependency tree...
Reading state information...
Correcting dependencies...Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
Done
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
The following additional packages will be installed:
autoconf automake autopoint autotools-dev binutils bison build-essential cpp
cpp-5 debhelper dh-autoreconf dh-exec dh-strip-nondeterminism dh-systemd
dpkg-dev fakeroot flex g++ g++-5 gcc gcc-5 gettext intltool-debian
libarchive-zip-perl libasan2 libatomic1 libbison-dev libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libcroco3 libdpkg-perl libfakeroot
libfile-stripnondeterminism-perl libfl-dev libgcc-5-dev libgomp1 libisl15
libitm1 liblsan0 libmpc3 libmpx0 libquadmath0 libstdc++-5-dev
libtimedate-perl libtool libtsan0 libubsan0 libunistring0 linux-libc-dev m4
make po-debconf
Suggested packages:
autoconf-archive gnu-standards autoconf-doc binutils-doc bison-doc cpp-doc
gcc-5-locales dh-make augeas-tools debian-keyring g++-multilib
g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-multilib manpages-dev gdb
gcc-doc gcc-5-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg
libasan2-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg
libmpx0-dbg libquadmath0-dbg gettext-doc glibc-doc libstdc++-5-doc
libtool-doc gfortran | fortran95-compiler gcj-jdk make-doc libmail-box-perl
Recommended packages:
libalgorithm-merge-perl libasprintf-dev libgettextpo-dev manpages
manpages-dev libfile-fcntllock-perl libltdl-dev libmail-sendmail-perl
The following NEW packages will be installed:
autoconf automake autopoint autotools-dev binutils bison build-essential cpp
cpp-5 debhelper dh-autoreconf dh-exec dh-strip-nondeterminism dh-systemd
dpkg-dev fakeroot flex g++ g++-5 gcc gcc-5 gettext intltool-debian
libarchive-zip-perl libasan2 libatomic1 libbison-dev libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libcroco3 libdpkg-perl libfakeroot
libfile-stripnondeterminism-perl libfl-dev libgcc-5-dev libgomp1 libisl15
libitm1 liblsan0 libmpc3 libmpx0 libquadmath0 libstdc++-5-dev
libtimedate-perl libtool libtsan0 libubsan0 libunistring0 linux-libc-dev m4
make po-debconf
0 upgraded, 54 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 41.5 MB of archives.
After this operation, 156 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libdpkg-perl all 1.18.4ubuntu1 [195 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 binutils amd64 2.26-8ubuntu2 [2,303 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 dpkg-dev all 1.18.4ubuntu1 [584 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcroco3 amd64 0.6.11-1 [81.6 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgomp1 amd64 5.3.1-13ubuntu4 [55.0 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 libunistring0 amd64 0.9.3-5.2ubuntu1 [279 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 gettext amd64 0.19.7-2ubuntu3 [1,076 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 po-debconf all 1.0.19 [234 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libarchive-zip-perl all 1.56-2 [84.1 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-stripnondeterminism-perl all 0.015-1 [10.3 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-strip-nondeterminism all 0.015-1 [4,864 B]
Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 autotools-dev all 20150820.1 [39.8 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial/main amd64 debhelper all 9.20160115ubuntu3 [739 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial/main amd64 m4 amd64 1.4.17-5 [195 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial/main amd64 libbison-dev amd64 2:3.0.4.dfsg-1 [338 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 bison amd64 2:3.0.4.dfsg-1 [259 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfl-dev amd64 2.6.0-11 [12.5 kB]
Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 flex amd64 2.6.0-11 [290 kB]
Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 autoconf all 2.69-9 [321 kB]
Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 automake all 1:1.15-4ubuntu1 [510 kB]
Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 autopoint all 0.19.7-2ubuntu3 [406 kB]
Get:25 http://archive.ubuntu.com/ubuntu xenial/main amd64 libisl15 amd64 0.16.1-1 [524 kB]
Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpc3 amd64 1.0.3-1 [39.7 kB]
Get:27 http://archive.ubuntu.com/ubuntu xenial/main amd64 cpp-5 amd64 5.3.1-13ubuntu4 [7,779 kB]
Get:28 http://archive.ubuntu.com/ubuntu xenial/main amd64 cpp amd64 4:5.3.1-1ubuntu1 [27.7 kB]
Get:29 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcc1-0 amd64 5.3.1-13ubuntu4 [38.9 kB]
Get:30 http://archive.ubuntu.com/ubuntu xenial/main amd64 libitm1 amd64 5.3.1-13ubuntu4 [27.4 kB]
Get:31 http://archive.ubuntu.com/ubuntu xenial/main amd64 libatomic1 amd64 5.3.1-13ubuntu4 [8,882 B]
Get:32 http://archive.ubuntu.com/ubuntu xenial/main amd64 libasan2 amd64 5.3.1-13ubuntu4 [269 kB]
Get:33 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblsan0 amd64 5.3.1-13ubuntu4 [110 kB]
Get:34 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtsan0 amd64 5.3.1-13ubuntu4 [249 kB]
Get:35 http://archive.ubuntu.com/ubuntu xenial/main amd64 libubsan0 amd64 5.3.1-13ubuntu4 [100 kB]
Get:36 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcilkrts5 amd64 5.3.1-13ubuntu4 [40.0 kB]
Get:37 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpx0 amd64 5.3.1-13ubuntu4 [9,750 B]
Get:38 http://archive.ubuntu.com/ubuntu xenial/main amd64 libquadmath0 amd64 5.3.1-13ubuntu4 [131 kB]
Get:39 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgcc-5-dev amd64 5.3.1-13ubuntu4 [2,233 kB]
Get:40 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc-5 amd64 5.3.1-13ubuntu4 [8,539 kB]
Get:41 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc amd64 4:5.3.1-1ubuntu1 [5,244 B]
Get:42 http://archive.ubuntu.com/ubuntu xenial/main amd64 libc-dev-bin amd64 2.23-0ubuntu2 [68.6 kB]
Get:43 http://archive.ubuntu.com/ubuntu xenial/main amd64 linux-libc-dev amd64 4.4.0-17.33 [841 kB]
Get:44 http://archive.ubuntu.com/ubuntu xenial/main amd64 libc6-dev amd64 2.23-0ubuntu2 [2,083 kB]
Get:45 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtool all 2.4.6-0.1 [193 kB]
Get:46 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-autoreconf all 11 [15.8 kB]
Get:47 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-exec amd64 0.23 [24.5 kB]
Get:48 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-systemd all 1.29ubuntu1 [17.9 kB]
Get:49 http://archive.ubuntu.com/ubuntu xenial/main amd64 libstdc++-5-dev amd64 5.3.1-13ubuntu4 [1,427 kB]
Get:50 http://archive.ubuntu.com/ubuntu xenial/main amd64 g++-5 amd64 5.3.1-13ubuntu4 [8,422 kB]
Get:51 http://archive.ubuntu.com/ubuntu xenial/main amd64 g++ amd64 4:5.3.1-1ubuntu1 [1,504 B]
Get:52 http://archive.ubuntu.com/ubuntu xenial/main amd64 build-essential amd64 12.1ubuntu2 [4,758 B]
Get:53 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfakeroot amd64 1.20.2-1ubuntu1 [25.5 kB]
Get:54 http://archive.ubuntu.com/ubuntu xenial/main amd64 fakeroot amd64 1.20.2-1ubuntu1 [61.8 kB]
Extracting templates from packages: 55%
Extracting templates from packages: 100%
Fetched 41.5 MB in 3s (11.7 MB/s)
Selecting previously unselected package libdpkg-perl.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 82318 files and directories currently installed.)
Preparing to unpack .../libdpkg-perl_1.18.4ubuntu1_all.deb ...
Unpacking libdpkg-perl (1.18.4ubuntu1) ...
Selecting previously unselected package make.
Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Unpacking make (4.1-6) ...
Selecting previously unselected package binutils.
Preparing to unpack .../binutils_2.26-8ubuntu2_amd64.deb ...
Unpacking binutils (2.26-8ubuntu2) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../dpkg-dev_1.18.4ubuntu1_all.deb ...
Unpacking dpkg-dev (1.18.4ubuntu1) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../libcroco3_0.6.11-1_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.11-1) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../libgomp1_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libgomp1:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libunistring0:amd64.
Preparing to unpack .../libunistring0_0.9.3-5.2ubuntu1_amd64.deb ...
Unpacking libunistring0:amd64 (0.9.3-5.2ubuntu1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../gettext_0.19.7-2ubuntu3_amd64.deb ...
Unpacking gettext (0.19.7-2ubuntu3) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../intltool-debian_0.35.0+20060710.4_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.4) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../po-debconf_1.0.19_all.deb ...
Unpacking po-debconf (1.0.19) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../libarchive-zip-perl_1.56-2_all.deb ...
Unpacking libarchive-zip-perl (1.56-2) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../libfile-stripnondeterminism-perl_0.015-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.015-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../dh-strip-nondeterminism_0.015-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.015-1) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../autotools-dev_20150820.1_all.deb ...
Unpacking autotools-dev (20150820.1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../debhelper_9.20160115ubuntu3_all.deb ...
Unpacking debhelper (9.20160115ubuntu3) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-5_amd64.deb ...
Unpacking m4 (1.4.17-5) ...
Selecting previously unselected package libbison-dev:amd64.
Preparing to unpack .../libbison-dev_2%3a3.0.4.dfsg-1_amd64.deb ...
Unpacking libbison-dev:amd64 (2:3.0.4.dfsg-1) ...
Selecting previously unselected package bison.
Preparing to unpack .../bison_2%3a3.0.4.dfsg-1_amd64.deb ...
Unpacking bison (2:3.0.4.dfsg-1) ...
Selecting previously unselected package libfl-dev:amd64.
Preparing to unpack .../libfl-dev_2.6.0-11_amd64.deb ...
Unpacking libfl-dev:amd64 (2.6.0-11) ...
Selecting previously unselected package flex.
Preparing to unpack .../flex_2.6.0-11_amd64.deb ...
Unpacking flex (2.6.0-11) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../autoconf_2.69-9_all.deb ...
Unpacking autoconf (2.69-9) ...
Selecting previously unselected package automake.
Preparing to unpack .../automake_1%3a1.15-4ubuntu1_all.deb ...
Unpacking automake (1:1.15-4ubuntu1) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../autopoint_0.19.7-2ubuntu3_all.deb ...
Unpacking autopoint (0.19.7-2ubuntu3) ...
Selecting previously unselected package libisl15:amd64.
Preparing to unpack .../libisl15_0.16.1-1_amd64.deb ...
Unpacking libisl15:amd64 (0.16.1-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../libmpc3_1.0.3-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.0.3-1) ...
Selecting previously unselected package cpp-5.
Preparing to unpack .../cpp-5_5.3.1-13ubuntu4_amd64.deb ...
Unpacking cpp-5 (5.3.1-13ubuntu4) ...
Selecting previously unselected package cpp.
Preparing to unpack .../cpp_4%3a5.3.1-1ubuntu1_amd64.deb ...
Unpacking cpp (4:5.3.1-1ubuntu1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../libcc1-0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libcc1-0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../libitm1_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libitm1:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../libatomic1_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libatomic1:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libasan2:amd64.
Preparing to unpack .../libasan2_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libasan2:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../liblsan0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking liblsan0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../libtsan0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libtsan0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libubsan0:amd64.
Preparing to unpack .../libubsan0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libubsan0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libcilkrts5:amd64.
Preparing to unpack .../libcilkrts5_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libcilkrts5:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libmpx0:amd64.
Preparing to unpack .../libmpx0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libmpx0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../libquadmath0_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libquadmath0:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package libgcc-5-dev:amd64.
Preparing to unpack .../libgcc-5-dev_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libgcc-5-dev:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package gcc-5.
Preparing to unpack .../gcc-5_5.3.1-13ubuntu4_amd64.deb ...
Unpacking gcc-5 (5.3.1-13ubuntu4) ...
Selecting previously unselected package gcc.
Preparing to unpack .../gcc_4%3a5.3.1-1ubuntu1_amd64.deb ...
Unpacking gcc (4:5.3.1-1ubuntu1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../libc-dev-bin_2.23-0ubuntu2_amd64.deb ...
Unpacking libc-dev-bin (2.23-0ubuntu2) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../linux-libc-dev_4.4.0-17.33_amd64.deb ...
Unpacking linux-libc-dev:amd64 (4.4.0-17.33) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../libc6-dev_2.23-0ubuntu2_amd64.deb ...
Unpacking libc6-dev:amd64 (2.23-0ubuntu2) ...
Selecting previously unselected package libtool.
Preparing to unpack .../libtool_2.4.6-0.1_all.deb ...
Unpacking libtool (2.4.6-0.1) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../dh-autoreconf_11_all.deb ...
Unpacking dh-autoreconf (11) ...
Selecting previously unselected package dh-exec.
Preparing to unpack .../dh-exec_0.23_amd64.deb ...
Unpacking dh-exec (0.23) ...
Selecting previously unselected package dh-systemd.
Preparing to unpack .../dh-systemd_1.29ubuntu1_all.deb ...
Unpacking dh-systemd (1.29ubuntu1) ...
Selecting previously unselected package libstdc++-5-dev:amd64.
Preparing to unpack .../libstdc++-5-dev_5.3.1-13ubuntu4_amd64.deb ...
Unpacking libstdc++-5-dev:amd64 (5.3.1-13ubuntu4) ...
Selecting previously unselected package g++-5.
Preparing to unpack .../g++-5_5.3.1-13ubuntu4_amd64.deb ...
Unpacking g++-5 (5.3.1-13ubuntu4) ...
Selecting previously unselected package g++.
Preparing to unpack .../g++_4%3a5.3.1-1ubuntu1_amd64.deb ...
Unpacking g++ (4:5.3.1-1ubuntu1) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../build-essential_12.1ubuntu2_amd64.deb ...
Unpacking build-essential (12.1ubuntu2) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../libfakeroot_1.20.2-1ubuntu1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.20.2-1ubuntu1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../fakeroot_1.20.2-1ubuntu1_amd64.deb ...
Unpacking fakeroot (1.20.2-1ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
Processing triggers for install-info (6.1.0.dfsg.1-5) ...
Setting up libdpkg-perl (1.18.4ubuntu1) ...
Setting up make (4.1-6) ...
Setting up binutils (2.26-8ubuntu2) ...
Setting up dpkg-dev (1.18.4ubuntu1) ...
Setting up libcroco3:amd64 (0.6.11-1) ...
Setting up libgomp1:amd64 (5.3.1-13ubuntu4) ...
Setting up libunistring0:amd64 (0.9.3-5.2ubuntu1) ...
Setting up gettext (0.19.7-2ubuntu3) ...
Setting up intltool-debian (0.35.0+20060710.4) ...
Setting up po-debconf (1.0.19) ...
Setting up libarchive-zip-perl (1.56-2) ...
Setting up libfile-stripnondeterminism-perl (0.015-1) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up autotools-dev (20150820.1) ...
Setting up m4 (1.4.17-5) ...
Setting up libbison-dev:amd64 (2:3.0.4.dfsg-1) ...
Setting up bison (2:3.0.4.dfsg-1) ...
update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
Setting up libfl-dev:amd64 (2.6.0-11) ...
Setting up flex (2.6.0-11) ...
Setting up autoconf (2.69-9) ...
Setting up automake (1:1.15-4ubuntu1) ...
update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode
Setting up autopoint (0.19.7-2ubuntu3) ...
Setting up libisl15:amd64 (0.16.1-1) ...
Setting up libmpc3:amd64 (1.0.3-1) ...
Setting up cpp-5 (5.3.1-13ubuntu4) ...
Setting up cpp (4:5.3.1-1ubuntu1) ...
Setting up libcc1-0:amd64 (5.3.1-13ubuntu4) ...
Setting up libitm1:amd64 (5.3.1-13ubuntu4) ...
Setting up libatomic1:amd64 (5.3.1-13ubuntu4) ...
Setting up libasan2:amd64 (5.3.1-13ubuntu4) ...
Setting up liblsan0:amd64 (5.3.1-13ubuntu4) ...
Setting up libtsan0:amd64 (5.3.1-13ubuntu4) ...
Setting up libubsan0:amd64 (5.3.1-13ubuntu4) ...
Setting up libcilkrts5:amd64 (5.3.1-13ubuntu4) ...
Setting up libmpx0:amd64 (5.3.1-13ubuntu4) ...
Setting up libquadmath0:amd64 (5.3.1-13ubuntu4) ...
Setting up libgcc-5-dev:amd64 (5.3.1-13ubuntu4) ...
Setting up gcc-5 (5.3.1-13ubuntu4) ...
Setting up gcc (4:5.3.1-1ubuntu1) ...
Setting up libc-dev-bin (2.23-0ubuntu2) ...
Setting up linux-libc-dev:amd64 (4.4.0-17.33) ...
Setting up libc6-dev:amd64 (2.23-0ubuntu2) ...
Setting up libtool (2.4.6-0.1) ...
Setting up libstdc++-5-dev:amd64 (5.3.1-13ubuntu4) ...
Setting up g++-5 (5.3.1-13ubuntu4) ...
Setting up g++ (4:5.3.1-1ubuntu1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up build-essential (12.1ubuntu2) ...
Setting up libfakeroot:amd64 (1.20.2-1ubuntu1) ...
Setting up fakeroot (1.20.2-1ubuntu1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up debhelper (9.20160115ubuntu3) ...
Setting up dh-autoreconf (11) ...
Setting up dh-exec (0.23) ...
Setting up dh-systemd (1.29ubuntu1) ...
Setting up adt-satdep (0) ...
Setting up dh-strip-nondeterminism (0.015-1) ...
Processing triggers for libc-bin (2.23-0ubuntu2) ...
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['dpkg', '--status', 'adt-satdep'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['apt-get', '--simulate', '--quiet', '-o', 'APT::Get::Show-User-Simulation-Note=False', '--auto-remove', 'purge', 'adt-satdep'], kind short, sout pipe, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: Marking test dependencies as manually installed: dh-systemd dh-strip-nondeterminism debhelper dh-autoreconf dh-exec libfile-stripnondeterminism-perl libarchive-zip-perl libtimedate-perl
adt-run: DBG: testbed command ['apt-mark', 'manual', '-qq', 'dh-systemd', 'dh-strip-nondeterminism', 'debhelper', 'dh-autoreconf', 'dh-exec', 'libfile-stripnondeterminism-perl', 'libarchive-zip-perl', 'libtimedate-perl'], kind short, sout raw, serr pipe, env []
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['dpkg', '--purge', 'adt-satdep'], kind short, sout raw, serr raw, env []
(Reading database ... 86677 files and directories currently installed.)
Removing adt-satdep (0) ...
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /tmp/adt-run.W1UzG0/build.6ms/real-tree; DEB_BUILD_OPTIONS="parallel=$(grep -c ^processor /proc/cpuinfo | sed \'s/^0$/1/\') $DEB_BUILD_OPTIONS" dpkg-buildpackage -us -uc -b\''], kind build, sout pipe, serr raw, env []
+ cd /tmp/adt-run.W1UzG0/build.6ms/real-tree
+ sed s/^0$/1/
+ grep -c ^processor /proc/cpuinfo
+ DEB_BUILD_OPTIONS=parallel=1 dpkg-buildpackage -us -uc -b
dpkg-buildpackage: source package open-iscsi
dpkg-buildpackage: source version 2.0.873+git0.3b4b4500-14ubuntu3
dpkg-buildpackage: source distribution UNRELEASED
dpkg-buildpackage: source changed by Diogo Matsubara <diogo.matsubara@gmail.com>
dpkg-source --before-build real-tree
dpkg-buildpackage: host architecture amd64
dpkg-source: info: applying 01_spelling-errors-and-manpage-hyphen-fixes.patch
dpkg-source: info: applying 02_make-iscsistart-a-dynamic-binary.patch
dpkg-source: info: applying 03_respect-build-flags.patch
dpkg-source: info: applying 04_fix_iscsi_path.patch
dpkg-source: info: applying 05-disable-iscsiuio.patch
dpkg-source: info: applying 06_var-lock_var-run_transition
dpkg-source: info: applying 07_makefile_reproducibility_issues.patch
fakeroot debian/rules clean
dh clean --with autotools_dev,autoreconf,systemd
dh_testdir
debian/rules override_dh_auto_clean
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
/usr/bin/make -C utils/fwparam_ibft clean
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
rm -f *.o fw_entry.o fwparam_sysfs.o ../../usr/iscsi_net_util.o prom_lex.o prom_parse.tab.o fwparam_ppc.o *.output *~ .depend
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
/usr/bin/make -C usr clean
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/usr'
rm -f *.o iscsid iscsiadm iscsistart .depend
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/usr'
/usr/bin/make -C utils clean
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
rm -f *.o iscsi-iname .depend
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
rm -rf modules
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_autotools-dev_restoreconfig
dh_autoreconf_clean
dh_clean
debian/rules build
dh build --with autotools_dev,autoreconf,systemd
dh_testdir
dh_update_autotools_config
dh_autotools-dev_updateconfig
dh_autoreconf
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
libtoolize: 'AC_PROG_RANLIB' is rendered obsolete by 'LT_INIT'
configure.ac:18: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:18: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
configure.ac:22: installing './compile'
configure.ac:18: installing './missing'
src/apps/brcm-iscsi/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/apps/brcm-iscsi/Makefile.am: installing './depcomp'
src/apps/dhcpc/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/uip/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/unix/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/unix/libs/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/unix/libs/Makefile.am:10: warning: source file '../build_date.c' is in a subdirectory,
src/unix/libs/Makefile.am:10: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
dh_auto_configure
debian/rules override_dh_auto_build
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
/usr/bin/make -C utils/fwparam_ibft
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o fw_entry.o fw_entry.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o fwparam_sysfs.o fwparam_sysfs.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o ../../usr/iscsi_net_util.o ../../usr/iscsi_net_util.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o prom_lex.o prom_lex.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o prom_parse.tab.o prom_parse.tab.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../../include -I../../usr -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o fwparam_ppc.o fwparam_ppc.c
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
/usr/bin/make user
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
cd utils/open-isns; ./configure CFLAGS="-Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall" --with-security=no
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking whether make sets $(MAKE)... yes
checking for sh... /bin/sh
checking for inline... inline
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking for socket in -lsocket... no
checking for getopt_long... yes
checking slp.h usability... no
checking slp.h presence... no
checking for slp.h... no
checking for SLPOpen in -lslp... no
configure: creating ./config.status
config.status: creating Makefile
config.status: WARNING: 'Makefile.in' seems to ignore the --datarootdir setting
config.status: creating config.h
cd iscsiuio; ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for bash... /bin/bash
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for ranlib... ranlib
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether gcc needs -traditional... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for int8_t... yes
checking for uint8_t... yes
checking for int16_t... yes
checking for uint16_t... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for int64_t... yes
checking for uint64_t... yes
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking whether byte ordering is bigendian... no
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/apps/Makefile
config.status: creating src/apps/dhcpc/Makefile
config.status: creating src/apps/brcm-iscsi/Makefile
config.status: creating src/uip/Makefile
config.status: creating src/unix/Makefile
config.status: creating src/unix/libs/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default commands
/usr/bin/make -C utils/open-isns
make[3]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/open-isns'
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o server.o server.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o client.o client.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o objects.o objects.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o callback.o callback.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o timer.o timer.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o vendor.o vendor.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o db.o db.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o db-file.o db-file.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o db-policy.o db-policy.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o relation.o relation.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o scope.o scope.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o message.o message.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o security.o security.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o authblock.o authblock.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o policy.o policy.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o register.o register.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o query.o query.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o getnext.o getnext.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o deregister.o deregister.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o esi.o esi.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o scn.o scn.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o dd.o dd.c
dd.c: In function ‘isns_dd_list_resize’:
dd.c:602:25: warning: variable ‘cur_size’ set but not used [-Wunused-but-set-variable]
unsigned int new_size, cur_size;
^
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o entity.o entity.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o portal-group.o portal-group.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o storage-node.o storage-node.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o domain.o domain.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o simple.o simple.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o tags.o tags.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o attrs.o attrs.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o export.o export.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o socket.o socket.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o slp.o slp.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o error.o error.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o logging.o logging.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o config.o config.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o parser.o parser.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o buffer.o buffer.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o pidfile.o pidfile.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o sysdep-unix.o sysdep-unix.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o util.o util.c
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o bitvector.o bitvector.c
bitvector.c: In function ‘isns_bitvector_is_empty’:
bitvector.c:330:16: warning: variable ‘base’ set but not used [-Wunused-but-set-variable]
unsigned int base, rlen;
^
bitvector.c: In function ‘isns_bitvector_foreach’:
bitvector.c:465:28: warning: variable ‘bits’ set but not used [-Wunused-but-set-variable]
unsigned int base, rlen, bits;
^
bitvector.c: In function ‘isns_bitvector_dump’:
bitvector.c:495:28: warning: variable ‘bits’ set but not used [-Wunused-but-set-variable]
unsigned int base, rlen, bits;
^
bitvector.c: In function ‘isns_bitvector_print’:
bitvector.c:541:28: warning: variable ‘bits’ set but not used [-Wunused-but-set-variable]
unsigned int base, rlen, bits;
^
gcc -Wall -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -I. -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -c -o mdebug.o mdebug.c
ar cr libisns.a server.o client.o objects.o callback.o timer.o vendor.o db.o db-file.o db-policy.o relation.o scope.o message.o security.o authblock.o policy.o register.o query.o getnext.o deregister.o esi.o scn.o dd.o entity.o portal-group.o storage-node.o domain.o simple.o tags.o attrs.o export.o socket.o slp.o error.o logging.o config.o parser.o buffer.o pidfile.o sysdep-unix.o util.o bitvector.o mdebug.o
make[3]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/open-isns'
/usr/bin/make -C utils/sysdeps
make[3]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/sysdeps'
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -O2 -fno-inline -Wall -Wstrict-prototypes -g -Wdate-time -D_FORTIFY_SOURCE=2 -c -o sysdeps.o sysdeps.c
make[3]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/sysdeps'
/usr/bin/make -C utils/fwparam_ibft
make[3]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils/fwparam_ibft'
/usr/bin/make -C usr
make[3]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/usr'
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsi_util.o iscsi_util.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o io.o io.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o auth.o auth.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsi_timer.o iscsi_timer.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o login.o login.c
login.c: In function ‘iscsi_add_text’:
login.c:53:8: warning: variable ‘pdu_text’ set but not used [-Wunused-but-set-variable]
char *pdu_text;
^
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o log.o log.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o md5.o md5.c
md5.c: In function ‘MD5Final’:
md5.c:130:23: warning: argument to ‘sizeof’ in ‘memset’ call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
^
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o sha1.o sha1.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iface.o iface.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o idbm.o idbm.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o sysfs.o sysfs.c
sysfs.c: In function ‘sysfs_set_param’:
sysfs.c:674:14: warning: variable ‘path’ set but not used [-Wunused-but-set-variable]
const char *path;
^
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o host.o host.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o session_info.o session_info.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsi_sysfs.o iscsi_sysfs.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsid_req.o iscsid_req.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o transport.o transport.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iser.o iser.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o cxgbi.o cxgbi.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o be2iscsi.o be2iscsi.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o initiator_common.o initiator_common.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsi_err.o iscsi_err.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o flashnode.o flashnode.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o uip_mgmt_ipc.o uip_mgmt_ipc.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o netlink.o netlink.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o initiator.o initiator.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o scsi.o scsi.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o actor.o actor.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o event_poll.o event_poll.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o mgmt_ipc.o mgmt_ipc.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o kern_err_table.o kern_err_table.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o strings.o strings.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o discovery.o discovery.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsid.o iscsid.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o session_mgmt.o session_mgmt.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o discoveryd.o discoveryd.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now iscsi_util.o io.o auth.o iscsi_timer.o login.o log.o md5.o sha1.o iface.o idbm.o sysfs.o host.o session_info.o iscsi_sysfs.o iscsi_net_util.o iscsid_req.o transport.o iser.o cxgbi.o be2iscsi.o initiator_common.o iscsi_err.o flashnode.o uip_mgmt_ipc.o netlink.o ../utils/sysdeps/sysdeps.o initiator.o scsi.o actor.o event_poll.o mgmt_ipc.o kern_err_table.o ../utils/fwparam_ibft/fw_entry.o ../utils/fwparam_ibft/fwparam_ppc.o ../utils/fwparam_ibft/fwparam_sysfs.o ../utils/fwparam_ibft/prom_lex.o ../utils/fwparam_ibft/prom_parse.tab.o strings.o discovery.o iscsid.o session_mgmt.o discoveryd.o -o iscsid -L../utils/open-isns -lisns
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsiadm.o iscsiadm.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now iscsi_util.o io.o auth.o iscsi_timer.o login.o log.o md5.o sha1.o iface.o idbm.o sysfs.o host.o session_info.o iscsi_sysfs.o iscsi_net_util.o iscsid_req.o transport.o iser.o cxgbi.o be2iscsi.o initiator_common.o iscsi_err.o flashnode.o uip_mgmt_ipc.o netlink.o ../utils/sysdeps/sysdeps.o ../utils/fwparam_ibft/fw_entry.o ../utils/fwparam_ibft/fwparam_ppc.o ../utils/fwparam_ibft/fwparam_sysfs.o ../utils/fwparam_ibft/prom_lex.o ../utils/fwparam_ibft/prom_parse.tab.o strings.o discovery.o iscsiadm.o session_mgmt.o -o iscsiadm -L../utils/open-isns -lisns
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsistart.o iscsistart.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -c -o statics.o statics.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -I../include -I. -I../utils/open-isns -DLinux -DNETLINK_ISCSI=8 -D_GNU_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now iscsi_util.o io.o auth.o iscsi_timer.o login.o log.o md5.o sha1.o iface.o idbm.o sysfs.o host.o session_info.o iscsi_sysfs.o iscsi_net_util.o iscsid_req.o transport.o iser.o cxgbi.o be2iscsi.o initiator_common.o iscsi_err.o flashnode.o uip_mgmt_ipc.o netlink.o ../utils/sysdeps/sysdeps.o initiator.o scsi.o actor.o event_poll.o mgmt_ipc.o kern_err_table.o ../utils/fwparam_ibft/fw_entry.o ../utils/fwparam_ibft/fwparam_ppc.o ../utils/fwparam_ibft/fwparam_sysfs.o ../utils/fwparam_ibft/prom_lex.o ../utils/fwparam_ibft/prom_parse.tab.o iscsistart.o statics.o -o iscsistart
make[3]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/usr'
/usr/bin/make -C utils
make[3]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -c -o md5.o md5.c
md5.c: In function ‘MD5Final’:
md5.c:136:24: warning: argument to ‘sizeof’ in ‘memset’ call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
memset(ctx, 0, sizeof (ctx)); /* In case it's sensitive */
^
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -c -o iscsi-iname.o iscsi-iname.c
cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wall -Wstrict-prototypes -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now md5.o iscsi-iname.o -o iscsi-iname
make[3]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
#/usr/bin/make -C iscsiuio
Compilation complete Output file
----------------------------------- ----------------
Built iSCSI daemon: usr/iscsid
Built management application: usr/iscsiadm
Built boot tool: usr/iscsistart
Built iscsiuio daemon: iscsiuio/src/unix/iscsiuio
Read README file for detailed information.
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
/usr/bin/make -C utils
make[2]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree/utils'
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_auto_test
fakeroot debian/rules binary
dh binary --with autotools_dev,autoreconf,systemd
dh_testroot
dh_prep
dh_installdirs
debian/rules override_dh_auto_install
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_install
dh_installdocs
dh_installchangelogs
dh_installman
dh_installdebconf
debian/rules override_dh_systemd_enable
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_systemd_enable --name=iscsid
dh_systemd_enable
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
debian/rules override_dh_installinit
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_installinit --no-start --name=iscsid
dh_installinit --no-start
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
debian/rules override_dh_systemd_start
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_systemd_start -popen-iscsi --no-restart-on-upgrade --no-start iscsid.service open-iscsi.service
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_lintian
dh_perl
dh_link
dh_strip_nondeterminism
dh_compress
debian/rules override_dh_fixperms
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_fixperms
chmod 0600 /tmp/adt-run.W1UzG0/build.6ms/real-tree/debian/open-iscsi/etc/iscsi/iscsid.conf
if [ -f /tmp/adt-run.W1UzG0/build.6ms/real-tree/debian/open-iscsi-udeb/etc/iscsi/iscsid.conf ] ; then \
chmod 0600 /tmp/adt-run.W1UzG0/build.6ms/real-tree/debian/open-iscsi-udeb/etc/iscsi/iscsid.conf ; \
fi
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_strip
dh_makeshlibs
dh_shlibdeps
dh_installdeb
debian/rules override_dh_gencontrol
make[1]: Entering directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
echo >> debian/open-iscsi.substvars "busybox:Recommends=busybox-initramfs"
dh_gencontrol
dpkg-gencontrol: warning: File::FcntlLock not available; using flock which is not NFS-safe
dpkg-gencontrol: warning: File::FcntlLock not available; using flock which is not NFS-safe
make[1]: Leaving directory '/tmp/adt-run.W1UzG0/build.6ms/real-tree'
dh_md5sums
dh_builddeb
dpkg-deb: building package 'open-iscsi' in '../open-iscsi_2.0.873+git0.3b4b4500-14ubuntu3_amd64.deb'.
dpkg-deb: building package 'open-iscsi-udeb' in 'debian/.debhelper/scratch-space/build-open-iscsi-udeb/open-iscsi-udeb_2.0.873+git0.3b4b4500-14ubuntu3_amd64.deb'.
Renaming open-iscsi-udeb_2.0.873+git0.3b4b4500-14ubuntu3_amd64.deb to open-iscsi-udeb_2.0.873+git0.3b4b4500-14ubuntu3_amd64.udeb
dpkg-genchanges -b >../open-iscsi_2.0.873+git0.3b4b4500-14ubuntu3_amd64.changes
dpkg-genchanges: binary-only upload (no source code included)
dpkg-source --after-build real-tree
dpkg-source: info: unapplying 07_makefile_reproducibility_issues.patch
dpkg-source: info: unapplying 06_var-lock_var-run_transition
dpkg-source: info: unapplying 05-disable-iscsiuio.patch
dpkg-source: info: unapplying 04_fix_iscsi_path.patch
dpkg-source: info: unapplying 03_respect-build-flags.patch
dpkg-source: info: unapplying 02_make-iscsistart-a-dynamic-binary.patch
dpkg-source: info: unapplying 01_spelling-errors-and-manpage-hyphen-fixes.patch
dpkg-buildpackage: binary-only upload (no source included)
adt-run: DBG: testbed command exited with code 0
adt-run: DBG: sending command to testbed: copyup /tmp/adt-run.W1UzG0/build.6ms/real-tree/ /home/ubuntu/tmp/adt-tmp/tests-tree/
adt-virt-qemu: DBG: executing copyup /tmp/adt-run.W1UzG0/build.6ms/real-tree/ /home/ubuntu/tmp/adt-tmp/tests-tree/
adt-virt-qemu: DBG: ['cmdls', "(['/tmp/adt-virt-qemu.b_yppj5y/runcmd', 'sh', '-ec', 'cd /tmp/adt-run.W1UzG0/build.6ms/real-tree/; tar --warning=none -c . -f -'], ['tar', '--directory', '/home/ubuntu/tmp/adt-tmp/tests-tree/', '--warning=none', '--preserve-permissions', '--extract', '--no-same-owner', '-f', '-'])"]
adt-virt-qemu: DBG: ['srcstdin', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'deststdout', "<_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>", 'devnull_read', <_io.TextIOWrapper name='/dev/null' mode='r' encoding='UTF-8'>]
adt-virt-qemu: DBG: +< /tmp/adt-virt-qemu.b_yppj5y/runcmd sh -ec cd /tmp/adt-run.W1UzG0/build.6ms/real-tree/; tar --warning=none -c . -f -
adt-virt-qemu: DBG: +> tar --directory /home/ubuntu/tmp/adt-tmp/tests-tree/ --warning=none --preserve-permissions --extract --no-same-owner -f -
adt-virt-qemu: DBG: +>?
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now
adt-virt-qemu: DBG: cleanup...
qemu-system-x86_64: terminating on signal 15 from pid 23591
<VirtSubproc>: failure: copyup destination failed, status 2
adt-run: DBG: TestbedFailure unexpected eof from the testbed
adt-run: DBG: testbed stop
adt-run: DBG: testbed close, scratch=/tmp/adt-run.W1UzG0
adt-run: DBG: sending command to testbed: close
adt-run: DBG: TestbedFailure cannot send to testbed: ['BrokenPipeError: [Errno 32] Broken pipe\n']
adt-run: DBG: testbed stop
adt-run [13:23:39]: ERROR: testbed failure: cannot send to testbed: ['BrokenPipeError: [Errno 32] Broken pipe\n']
adt-run: DBG: testbed stop
|