summaryrefslogtreecommitdiff
path: root/open_issues/binutils_testsuite.mdwn
blob: acbc48e97d1a3a3518e575ea96c1f4527c73664c (plain)
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
[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]

[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts.  A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]

[[!tag open_issue_binutils]]

Here's a log of a binutils build and testsuite run; this is from
cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24, run on
kepler.SCHWINGE and grubber.

    $ export LC_ALL=C
    $ ../hurd/configure 2>&1 | tee log_build
    [...]
    $ make SHELL=/bin/bash 2>&1 | tee log_build_
    [...]

(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
thus harmonized.)

x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
different|binutils]], thus mask out most of the differences that are due to
GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
(`-DSELECT_VECS='[...],&i386pei_vec[...]`).

    $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils_testsuite/log_build-diff

[[log_build-diff]].

    $ make -k check
    [...]

    $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_linux
    $ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_hurd

Comparing the results files, [[sum_linux]] to [[sum_hurd]]:

    $ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
    --- open_issues/binutils_testsuite/sum_linux	2010-10-24 20:33:04.000000000 +0200
    +++ open_issues/binutils_testsuite/sum_hurd	2010-10-24 20:41:53.000000000 +0200
    @@ -1,5 +1,5 @@
    -Test Run By thomas on Sun Oct 24 20:00:29 2010
    -Native configuration is i686-pc-linux-gnu
    +Test Run By tschwinge on Sun Oct 24 20:01:01 2010
    +Native configuration is i686-unknown-gnu0.3
     
     		=== binutils tests ===
     
    @@ -14,19 +14,12 @@
     PASS: ar thin archive with nested archive
     PASS: ar argument parsing
     PASS: ar deterministic archive
    -PASS: ar unique symbol in archive
     Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
     Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
     Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
     Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
    -UNSUPPORTED: Update ELF header 1
    -PASS: Update ELF header 2
    -PASS: Update ELF header 3
     Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
     Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
    -PASS: objcopy on compressed debug sections
    -PASS: strip on uncompressed debug sections
    -PASS: strip on compressed debug sections
     Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
     Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
     PASS: nm (no arguments)
    @@ -50,35 +43,9 @@
     PASS: run stripped executable with saving a symbol
     PASS: keep only debug data
     PASS: simple objcopy of debug data
    -PASS: objcopy (ELF unknown section type)
    -PASS: objcopy (ELF group)
    -PASS: objcopy (ELF group)
    -PASS: objcopy (ELF group)
    -PASS: objcopy (ELF group)
    -PASS: copy removing group member
    -PASS: copy with setting section flags 1
    -PASS: add notes section
     PASS: copy with setting section flags 2
     PASS: copy with setting section flags 3
     PASS: strip --strip-unneeded on common symbol
    -PASS: strip with section group 1
    -PASS: strip with section group 2
    -PASS: strip empty file
    -PASS: strip with section group 4
    -PASS: strip with section group 5
    -PASS: strip with section group 6
    -PASS: strip with section group 7
    -PASS: strip with section group 8
    -PASS: strip with section group 9
    -PASS: strip on STB_GNU_UNIQUE
    -PASS: objcopy keeps symbols needed by relocs
    -PASS: --localize-hidden test 1
    -PASS: unordered .debug_info references to .debug_ranges
    -UNSUPPORTED: unordered .debug_info references to .debug_ranges
    -PASS: objcopy add-section
    -PASS: objcopy add-empty-section
    -PASS: objcopy on sections with SHF_EXCLUDE
    -PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
     PASS: --localize-hidden test 2
     Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
     PASS: objdump -i
    @@ -87,17 +54,8 @@
     PASS: objdump -t
     PASS: objdump -r
     PASS: objdump -s
    -PASS: objdump -s -j .zdebug_abbrev
    -PASS: objdump -W
    +UNSUPPORTED: objdump compressed debug
     Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
    -PASS: finding out ELF size with readelf -h
    -PASS: readelf -h
    -PASS: readelf -S
    -PASS: readelf -s
    -PASS: readelf -r
    -PASS: readelf -wi
    -PASS: readelf -wa (compressed)
    -PASS: readelf -p
     Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
     PASS: size (no arguments)
     PASS: size -A
    @@ -107,10 +65,10 @@
     
     		=== binutils Summary ===
     
    -# of expected passes		79
    -# of unsupported tests		2
    -Test Run By thomas on Sun Oct 24 20:00:50 2010
    -Native configuration is i686-pc-linux-gnu
    +# of expected passes		38
    +# of unsupported tests		1
    +Test Run By tschwinge on Sun Oct 24 20:06:29 2010
    +Native configuration is i686-unknown-gnu0.3
     
     		=== ld tests ===
     
    @@ -129,8 +87,8 @@
     UNTESTED: bootstrap with --no-keep-memory
     UNTESTED: bootstrap with --relax
     Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
    -PASS: cdtest
    -PASS: cdtest with -Ur
    +FAIL: cdtest
    +FAIL: cdtest with -Ur
     Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
     PASS: check sections 1
     PASS: check sections 2
    @@ -139,428 +97,23 @@
     Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
     Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
     Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
    -PASS: ld-discard/extern
    -PASS: ld-discard/start
    -PASS: ld-discard/static
    -PASS: ld-discard/zero-rel
     Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
    -PASS: Run with -paudit.so
    -PASS: Run with -Paudit.so
    -PASS: Run with --depaudit=audit.so
    -PASS: Run with shared with --audit
    -PASS: Run with shared with --audit
    -PASS: Run with -lusesaudit
    -PASS: Run with -lusesaudit -lusesaudit2
     Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
    -PASS: strip -z max-page-size=0x200000 (maxpage1)
    -PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
    -PASS: strip -z max-page-size=0x100000 (maxpage1)
    -PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
    -PASS: strip  (maxpage1)
    -PASS: strip -shared (maxpage1)
    -PASS: objcopy  (maxpage1)
    -PASS: objcopy -shared (maxpage1)
    -PASS: strip -z relro (relro1)
    -PASS: strip -z relro -shared (relro1)
    -PASS: objcopy -z relro (relro1)
    -PASS: objcopy -z relro -shared (relro1)
    -PASS: strip -z relro -shared (relro2)
    -PASS: objcopy -z relro -shared (relro2)
    -PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
    -PASS: objcopy  (tbss1)
    -PASS: objcopy -z relro (tbss1)
    -PASS: objcopy -shared (tbss1)
    -PASS: objcopy -shared -z relro (tbss1)
    -PASS: objcopy -z max-page-size=0x100000 (tbss1)
    -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
    -PASS: objcopy  (tdata1)
    -PASS: objcopy -z relro (tdata1)
    -PASS: objcopy -shared (tdata1)
    -PASS: objcopy -shared -z relro (tdata1)
    -PASS: objcopy -z max-page-size=0x100000 (tdata1)
    -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
    -PASS: objcopy  (tbss2)
    -PASS: objcopy -z relro (tbss2)
    -PASS: objcopy -shared (tbss2)
    -PASS: objcopy -shared -z relro (tbss2)
    -PASS: objcopy -z max-page-size=0x100000 (tbss2)
    -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
    -PASS: objcopy  (tdata2)
    -PASS: objcopy -z relro (tdata2)
    -PASS: objcopy -shared (tdata2)
    -PASS: objcopy -shared -z relro (tdata2)
    -PASS: objcopy -z max-page-size=0x100000 (tdata2)
    -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
     Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
    -PASS: Build libdwarf1.so
    -PASS: Run with libdwarf1.so first
    -PASS: Run with libdwarf1.so last
    -PASS: Strip -s libdwarf1c.so
     Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
    -PASS: Guess the target size from eh-group1size.o
    -PASS: Build eh-group1.o
    -PASS: Link eh-group.o to eh-group
     Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
    -PASS: ld-elf/commonpage1
    -PASS: ld-elf/discard1
    -PASS: ld-elf/discard2
    -PASS: ld-elf/discard3
    -PASS: ld-elf/dynsym1
    -PASS: ld-elf/eh-frame-hdr
    -PASS: ld-elf/eh5
    -PASS: ld-elf/eh6
    -PASS: ld-elf/empty
    -PASS: ld-elf/empty2
    -PASS: ld-elf/exclude3a
    -PASS: ld-elf/exclude3b
    -PASS: ld-elf/exclude3c
    -PASS: ld-elf/expr1
    -PASS: --extract-symbol test 1 (sections)
    -PASS: --extract-symbol test 1 (symbols)
    -PASS: --set-section-flags test 1 (sections)
    -PASS: ld-elf/group1
    -PASS: ld-elf/group10
    -PASS: ld-elf/group2
    -PASS: ld-elf/group3a
    -PASS: ld-elf/group3b
    -PASS: ld-elf/group4
    -PASS: ld-elf/group5
    -PASS: ld-elf/group6
    -PASS: ld-elf/group7
    -PASS: ld-elf/group8a
    -PASS: ld-elf/group8b
    -PASS: ld-elf/group9a
    -PASS: ld-elf/group9b
    -PASS: ld-elf/hash
    -PASS: ld-elf/header
    -PASS: ld-elf/init-fini-arrays
    -PASS: ld-elf/linkonce1
    -PASS: ld-elf/linkonce2
    -PASS: ld-elf/linkoncerdiff
    -PASS: ld-elf/loadaddr1
    -PASS: ld-elf/loadaddr2
    -PASS: ld-elf/loadaddr3a
    -PASS: ld-elf/loadaddr3b
    -PASS: ld-elf/local1
    -PASS: ld-elf/maxpage1
    -PASS: ld-elf/maxpage2
    -PASS: ld-elf/maxpage3a
    -PASS: ld-elf/merge
    -PASS: ld-elf/merge2
    -PASS: ld-elf/multibss1
    -PASS: ld-elf/nobits-1
    -PASS: ld-elf/noload-1
    -PASS: ld-elf/noload-2
    -PASS: ld-elf/noload-3
    -PASS: ld-elf/note-1
    -PASS: ld-elf/note-2
    -PASS: ld-elf/orphan-region
    -PASS: ld-elf/orphan
    -PASS: ld-elf/orphan2
    -PASS: ld-elf/orphan3
    -PASS: ld-elf/orphan4
    -PASS: ld-elf/overlay
    -PASS: ld-elf/pr11304
    -PASS: ld-elf/pr349
    -PASS: relocatable with script
    -PASS: ld-elf/seg
    -PASS: ld-elf/stab
    -PASS: ld-elf/textaddr1
    -PASS: ld-elf/textaddr2
    -PASS: ld-elf/textaddr3
    -PASS: ld-elf/textaddr4
    -PASS: ld-elf/textaddr5
    -PASS: ld-elf/textaddr6
    -PASS: ld-elf/textaddr7
    -PASS: ld-elf/unknown
    -PASS: ld-elf/unknown2
    -PASS: ld-elf/warn1
    -PASS: ld-elf/warn2
    -PASS: Weak symbols in dynamic objects 1 (support)
    -PASS: Weak symbols in dynamic objects 1 (main test)
    -PASS: --gc-sections on tls variable
    -PASS: preinit array
    -PASS: static preinit array
    -PASS: init array
    -PASS: static init array
    -PASS: fini array
    -PASS: static fini array
     Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
    -PASS: ld link shared library
    -PASS: ld export symbols from archive
    -PASS: ld link shared library with --exclude-libs
    -PASS: ld exclude symbols from archive - --exclude-libs libexclude
    -PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
    -PASS: ld exclude symbols from archive - --exclude-libs ALL
    -PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
    -PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
    -PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
     Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
    -PASS: read-only .eh_frame section
    -PASS: read-only .gcc_except_table section
     Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
    -PASS: assignment of ELF sections to segments (same page)
    -PASS: assignment of ELF sections to segments (adjacent pages)
    -PASS: assignment of ELF sections to segments (disjoint pages)
    +UNSUPPORTED: assignment of ELF sections to segments
     Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
    -PASS: ld-elf/64ksec-r
    -PASS: ld-elf/64ksec
     Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
    -PASS: Build libfoo.so
    -PASS: Build versioned libfoo.so
    -PASS: Build libbar.so
    -PASS: Build warn libbar.so
    -PASS: Build hidden libbar.so
    -PASS: Build protected libbar.so
    -PASS: Build libbar.so with libfoo.so
    -PASS: Build libar.so with versioned libfoo.so
    -PASS: Build hidden libbar.so with libfoo.so
    -PASS: Build hidden libar.so with versioned libfoo.so
    -PASS: Build protected libbar.so with libfoo.so
    -PASS: Build protected libbar.so with versioned libfoo.so
    -PASS: Build libdl1.so
    -PASS: Build libdl2a.so with --dynamic-list=dl2.list
    -PASS: Build libdl2a.so with --dynamic-list=dl2a.list
    -PASS: Build libdl2a.so with --dynamic-list-data
    -PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
    -PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
    -PASS: Build libdl4a.so with --dynamic-list=dl4.list
    -PASS: Build libdl4b.so with --dynamic-list-data
    -PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
    -PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
    -PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
    -PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
    -PASS: Build libdl6a.so
    -PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
    -PASS: Build libdl6c.so with -Bsymbolic
    -PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
    -PASS: Build libdata1.so
    -PASS: Build libcomm1.o
    -PASS: Build libfunc1.so
    -PASS: Build libpr9676-1.a
    -PASS: Build libpr9676-2.a
    -PASS: Build libpr9676-3.so
    -PASS: Build libpr9676-4.so
    -PASS: Build libpr9676-4a.so
    -PASS: Build libpr9679.so
    -PASS: Build libpr11138-1.so
    -PASS: Build libpr11138-2.o
    -PASS: Run normal with libfoo.so
    -PASS: Run protected with libfoo.so
    -PASS: Run hidden with libfoo.so
    -PASS: Run normal with versioned libfoo.so
    -PASS: Run warn with versioned libfoo.so
    -PASS: Run protected with versioned libfoo.so
    -PASS: Run hidden with versioned libfoo.so
    -PASS: Run normal libbar.so with libfoo.so
    -PASS: Run protected libbar.so with libfoo.so
    -PASS: Run hidden libbar.so with libfoo.so
    -PASS: Run normal libbar.so with versioned libfoo.so
    -PASS: Run protected libbar.so with versioned libfoo.so
    -PASS: Run hidden libbar.so with versioned libfoo.so
    -PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
    -PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
    -PASS: Run with libdl2a.so
    -PASS: Run with libdl2b.so
    -PASS: Run with libdl2c.so
    -PASS: Run with libdl4a.so
    -PASS: Run with libdl4b.so
    -PASS: Run with libdl4c.so
    -PASS: Run with libdl4d.so
    -PASS: Run with libdl4e.so
    -PASS: Run with libdl4f.so
    -PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
    -PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
    -PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
    -PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
    -PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
    -PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
    -PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
    -PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
    -PASS: Run dl6b2 with dlopen on libdl6b.so
    -PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
    -PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
    -PASS: Run with libdata1.so
    -PASS: Run with libfunc1.so comm1.o
    -PASS: Run with comm1.o libfunc1.so
    -PASS: Run with pr11138-2.c libpr11138-1.so
    -PASS: Run with libpr11138-1.so pr11138-2.c
    -PASS: Build libdl3a.so with --dynamic-list=dl3.list
    -PASS: Build libdl3b.so with -Bsymbolic
    -PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
    -PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
    -PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
    -PASS: Run with libdl3a.so
    -PASS: Run with libdl3c.so
    -PASS: Run with libnew1a.so
    -PASS: Run with libnew1b.so
     Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
    -PASS: tls_common
     Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
    -PASS: Build libwrap1a.so
    -PASS: Build libwrap1b.so
    -PASS: Run with libwrap1a.so and libwrap1b.so
    -PASS: Run with libwrap1b.so and libwrap1a.so
     Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
    -PASS: --sort-common (descending)
    -PASS: --sort-common (ascending)
    -PASS: size/aligment change of common symbols (warning 1)
    -PASS: size/aligment change of common symbols (change 1)
    -PASS: size/aligment change of common symbols (warning 2)
    -PASS: size/aligment change of common symbols (change 2)
     Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
    -PASS: vers1
    -PASS: vers2
    -PASS: vers3
    -PASS: vers4
    -PASS: vers4a
    -PASS: vers4b
    -PASS: vers5
    -PASS: vers6
    -PASS: vers7a
    -PASS: vers7
    -PASS: vers8
    -PASS: vers9
    -PASS: vers10
    -PASS: vers11
    -PASS: vers12
    -PASS: ar with versioned solib
    -PASS: vers14
    -PASS: vers15
    -PASS: vers16a
    -PASS: vers16
    -PASS: vers17
    -PASS: vers18
    -PASS: vers19
    -PASS: vers20a
    -PASS: vers20
    -PASS: vers21
    -PASS: vers22a
    -PASS: vers22b
    -PASS: vers22
    -PASS: vers23a
    -PASS: vers23b
    -PASS: vers23c
    -PASS: vers23d
    -PASS: vers23
    -PASS: vers24a
    -PASS: vers24b
    -PASS: vers24c
    -PASS: vers25a
    -PASS: vers25b1
    -PASS: vers25b2
    -PASS: vers26a
    -PASS: vers26b1
    -PASS: vers26b2
    -PASS: vers26b3
    -PASS: vers27a
    -PASS: vers27b
    -PASS: vers27c1
    -PASS: vers27c2
    -PASS: vers27d1
    -PASS: vers27d2
    -PASS: vers27d3
    -PASS: vers27d4
    -PASS: vers27d5
    -PASS: vers28a
    -PASS: vers28b
    -PASS: vers28c
    -PASS: vers29
    -PASS: vers30
    -PASS: vers31
    -PASS: vers32a
    -PASS: vers32b
    -PASS: vers32c
    -PASS: vers32d
     Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
    -PASS: ld-elfvsb/hidden0
    -PASS: ld-elfvsb/hidden1
    -PASS: ld-elfvsb/hidden2
    -PASS: ld-elfvsb/internal0
    -PASS: ld-elfvsb/internal1
    -PASS: ld-elfvsb/protected0
    -PASS: ld-elfvsb/protected1
    -PASS: visibility (hidden) (non PIC)
    -PASS: visibility (hidden) (non PIC, load offset)
    -PASS: visibility (hidden)
    -PASS: visibility (hidden) (PIC main, non PIC so)
    -PASS: visibility (hidden) (PIC main)
    -PASS: visibility (hidden_normal) (non PIC)
    -PASS: visibility (hidden_normal) (non PIC, load offset)
    -PASS: visibility (hidden_normal)
    -PASS: visibility (hidden_normal) (PIC main, non PIC so)
    -PASS: visibility (hidden_normal) (PIC main)
    -PASS: visibility (hidden_undef) (non PIC)
    -PASS: visibility (hidden_undef) (non PIC, load offset)
    -PASS: visibility (hidden_undef)
    -PASS: visibility (hidden_undef) (PIC main, non PIC so)
    -PASS: visibility (hidden_undef) (PIC main)
    -PASS: visibility (hidden_undef_def) (non PIC)
    -PASS: visibility (hidden_undef_def) (non PIC, load offset)
    -PASS: visibility (hidden_undef_def)
    -PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
    -PASS: visibility (hidden_undef_def) (PIC main)
    -PASS: visibility (hidden_weak) (non PIC)
    -PASS: visibility (hidden_weak) (non PIC, load offset)
    -PASS: visibility (hidden_weak)
    -PASS: visibility (hidden_weak) (PIC main, non PIC so)
    -PASS: visibility (hidden_weak) (PIC main)
    -PASS: visibility (protected) (non PIC)
    -PASS: visibility (protected) (non PIC, load offset)
    -PASS: visibility (protected)
    -PASS: visibility (protected) (PIC main, non PIC so)
    -PASS: visibility (protected) (PIC main)
    -PASS: visibility (protected_undef) (non PIC)
    -PASS: visibility (protected_undef) (non PIC, load offset)
    -PASS: visibility (protected_undef)
    -PASS: visibility (protected_undef) (PIC main, non PIC so)
    -PASS: visibility (protected_undef) (PIC main)
    -PASS: visibility (protected_undef_def) (non PIC)
    -PASS: visibility (protected_undef_def) (non PIC, load offset)
    -PASS: visibility (protected_undef_def)
    -PASS: visibility (protected_undef_def) (PIC main, non PIC so)
    -PASS: visibility (protected_undef_def) (PIC main)
    -PASS: visibility (protected_weak) (non PIC)
    -PASS: visibility (protected_weak) (non PIC, load offset)
    -PASS: visibility (protected_weak)
    -PASS: visibility (protected_weak) (PIC main, non PIC so)
    -PASS: visibility (protected_weak) (PIC main)
    -PASS: visibility (normal) (non PIC)
    -PASS: visibility (normal) (non PIC, load offset)
    -PASS: visibility (normal)
    -PASS: visibility (normal) (PIC main, non PIC so)
    -PASS: visibility (normal) (PIC main)
    -PASS: common hidden symbol
    -PASS: weak hidden symbol DSO last
    -PASS: weak hidden symbol DSO first
     Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
    -PASS: ELF DSO weak func first
    -PASS: ELF DSO weak func last
    -PASS: ELF DSO weak func first DSO
    -PASS: ELF DSO weak func last DSO
    -PASS: ELF weak func first
    -PASS: ELF weak func last
    -PASS: ELF weak func first DSO
    -PASS: ELF weak func last DSO
    -PASS: ELF DSO weak data first
    -PASS: ELF DSO weak data last
    -PASS: ELF DSO weak data first DSO
    -PASS: ELF DSO weak data last DSO
    -PASS: ELF DSO weak data first DSO common
    -PASS: ELF DSO weak data last DSO common
    -PASS: ELF weak data first
    -PASS: ELF weak data last
    -PASS: ELF weak data first common
    -PASS: ELF weak data last common
    -PASS: ELF weak data first DSO
    -PASS: ELF weak data last DSO
    -PASS: ELF weak data first DSO common
    -PASS: ELF weak data last DSO common
    -PASS: ELF DSO small bar (size)
    -PASS: ELF DSO foo with small bar (size)
    -PASS: ELF DSO big bar (size)
    -PASS: ELF weak size
    -PASS: ld-elfweak/size2
     Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
     Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
     Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
    @@ -571,85 +124,16 @@
     PASS: Check --gc-section/-r/-e
     PASS: Check --gc-section/-r/-u
     PASS: --gc-sections -r without -e
    -PASS: --gc-sections with note section
    -PASS: --gc-sections with __start_
    -PASS: --gc-sections with shared library
     Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
     Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
    -PASS: TLS -fpic -shared transitions
    -PASS: TLS descriptor -fpic -shared transitions
    -PASS: Helper shared library
    -PASS: TLS -fpic and -fno-pic exec transitions
    -PASS: TLS descriptor -fpic and -fno-pic exec transitions
    -PASS: TLS -fno-pic -shared
    -PASS: TLS with global dynamic and descriptors
    -PASS: TLS in debug sections
    -PASS: TLS @indntpoff with %eax
    -PASS: Reloc section order
    -PASS: Basic --emit-relocs support
    -PASS: -z combreloc relocation sections
    -PASS: TLS GD->LE transition
    -PASS: TLS LD->LE transition
    -PASS: TLS IE->LE transition
    -PASS: Absolute non-overflowing relocs
    -PASS: PCREL8 overflow
    -PASS: PCREL16 overflow
    -PASS: PCREL16 absolute reloc
    -PASS: Invalid allocated section
    -PASS: --warn-shared-textrel --fatal-warnings
    -PASS: TLS GD->LE transition check
    -PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
    -PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
    -PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
    -PASS: TLS IE->LE transition check (R_386_TLS_IE)
    -PASS: ld-i386/hidden1
    -PASS: ld-i386/hidden2
    -PASS: ld-i386/hidden3
    -PASS: ld-i386/protected1
    -PASS: ld-i386/protected2
    -PASS: ld-i386/protected3
    -PASS: TLS with PIE
    -PASS: ld-i386/nogot1
    -PASS: ld-i386/nogot2
    -PASS: ld-i386/discarded1
    -PASS: undefined symbol with compressed debug sections
     Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
     Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
     Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
    -PASS: strip  (ifunc-4-x86)
    -PASS: objcopy  (ifunc-4-x86)
    -PASS: strip  (ifunc-4-local-x86)
    -PASS: objcopy  (ifunc-4-local-x86)
     Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
    -PASS: Building ifunc binaries
    -PASS: Checking ifunc binaries
    -PASS: ld-ifunc/ifunc-1-local-x86
    -PASS: ld-ifunc/ifunc-1-x86
    -PASS: ld-ifunc/ifunc-10-i386
    -PASS: ld-ifunc/ifunc-11-i386
    -PASS: ld-ifunc/ifunc-2-i386
    -PASS: ld-ifunc/ifunc-2-local-i386
    -PASS: ld-ifunc/ifunc-3a-x86
    -PASS: ld-ifunc/ifunc-3b-x86
    -PASS: ld-ifunc/ifunc-4-local-x86
    -PASS: ld-ifunc/ifunc-4-x86
    -PASS: ld-ifunc/ifunc-4a-x86
    -PASS: ld-ifunc/ifunc-5a-i386
    -PASS: ld-ifunc/ifunc-5a-local-i386
    -PASS: ld-ifunc/ifunc-5b-i386
    -PASS: ld-ifunc/ifunc-5b-local-i386
    -PASS: ld-ifunc/ifunc-5r-local-i386
    -PASS: ld-ifunc/ifunc-6a-i386
    -PASS: ld-ifunc/ifunc-6b-i386
    -PASS: ld-ifunc/ifunc-7a-i386
    -PASS: ld-ifunc/ifunc-7b-i386
    -PASS: ld-ifunc/ifunc-8-i386
    -PASS: ld-ifunc/ifunc-9-x86
     Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
     PASS: -l: test (preparation)
     PASS: -l: test
     Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
    -PASS: ld-linkonce/zeroehl32
     Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
     Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
     Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
    @@ -663,23 +147,19 @@
     Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
     Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
     Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
    -PASS: weak undefined
    -PASS: weak undefined data
    -PASS: missing entry symbol
     Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
     PASS: plugin API enabled
     PASS: load plugin
     PASS: fail plugin onload
    -PASS: fail plugin allsymbolsread
    -PASS: fail plugin cleanup
    -PASS: plugin all hooks
    -PASS: plugin claimfile lost symbol
    -PASS: plugin claimfile replace symbol
    -PASS: plugin claimfile resolve symbol
    -PASS: plugin claimfile replace file
    -PASS: plugin set symbol visibility
    -PASS: plugin ignore lib
    -PASS: plugin claimfile replace lib
    +FAIL: fail plugin allsymbolsread
    +FAIL: fail plugin cleanup
    +FAIL: plugin all hooks
    +FAIL: plugin claimfile lost symbol
    +FAIL: plugin claimfile replace symbol
    +FAIL: plugin claimfile resolve symbol
    +FAIL: plugin claimfile replace file
    +FAIL: plugin ignore lib
    +FAIL: plugin claimfile replace lib
     Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
     Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
     Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
    @@ -689,7 +169,6 @@
     PASS: ld-scripts/align2b
     PASS: ld-scripts/align2c
     Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
    -PASS: ALIGNOF
     Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
     PASS: ASSERT
     Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
    @@ -708,7 +187,6 @@
     PASS: ld-scripts/defined2
     PASS: ld-scripts/defined3
     Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
    -PASS: dynamic sections
     Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
     PASS: ld-scripts/empty-address-1
     PASS: ld-scripts/empty-address-2a
    @@ -717,9 +195,7 @@
     PASS: ld-scripts/empty-address-3b
     PASS: ld-scripts/empty-address-3c
     Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
    -PASS: ld-scripts/empty-aligned
     Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
    -PASS: ld-scripts/empty-orphan
     Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
     PASS: ld-scripts/expr1
     Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
    @@ -729,87 +205,35 @@
     Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
     PASS: map addresses
     Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
    -PASS: overlay size
    -PASS: overlay size (map check)
     Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
    -PASS: PHDRS
     Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
    -PASS: PHDRS2
     Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
    -PASS: PHDRS headers
    -PASS: PHDRS headers 3a
     Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
     PASS: ld-scripts/provide-1
     PASS: ld-scripts/provide-2
     XFAIL: ld-scripts/provide-3
     Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
    -PASS: rgn-at1
    -PASS: rgn-at2
    -PASS: rgn-at3
    -PASS: rgn-at4
    -PASS: rgn-at5
     Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
    -PASS: rgn-over1
    -PASS: rgn-over1 (map check)
    -PASS: rgn-over2
    -PASS: rgn-over2 (map check)
    -PASS: rgn-over3
    -PASS: rgn-over3 (map check)
    -PASS: rgn-over4
    -PASS: rgn-over4 (map check)
    -PASS: rgn-over5
    -PASS: rgn-over5 (map check)
    -PASS: rgn-over6
    -PASS: rgn-over6 (map check)
    -PASS: rgn-over7
    -PASS: rgn-over7 (map check)
    -PASS: rgn-over8
     Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
     PASS: script
     PASS: MRI script
     PASS: MEMORY
    -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
    -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
     XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
    +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
     XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
    +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
     Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
     PASS: ld-scripts/section-match-1
     Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
     PASS: ld-scripts/size-1
    -PASS: ld-scripts/size-2
    +UNSUPPORTED: size-2
     Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
     PASS: SIZEOF
     Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
    -PASS: --sort-section alignment
    -PASS: SORT_BY_ALIGNMENT
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
    -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
    -PASS: --sort-section name
    -PASS: SORT_BY_NAME
    -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
    -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
    -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
    -PASS: SORT_BY_NAME(SORT_BY_NAME())
    -PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
    -PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
    -PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
    -PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
     Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
    -PASS: weak symbols
    +UNSUPPORTED: weak symbols
     Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
    -PASS: Preserve default . = 0
    -PASS: Preserve explicit . = 0
     Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
    -PASS: selective1
    -PASS: selective2
    -PASS: selective3
    -XFAIL: selective4
    -XFAIL: selective5
    -XFAIL: selective6
     Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
     Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
     Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
    @@ -819,12 +243,6 @@
     Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
     Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
     Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
    -PASS: shared (non PIC)
    -PASS: shared (non PIC, load offset)
    -PASS: shared
    -PASS: shared -Bsymbolic
    -PASS: shared (PIC main, non PIC so)
    -PASS: shared (PIC main)
     Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
     Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
     Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
    @@ -835,8 +253,6 @@
     PASS: Build libentry.a
     PASS: --entry foo archive
     PASS: --entry foo -u foo archive
    -PASS: -shared --entry foo archive
    -PASS: -shared --entry foo -u foo archive
     PASS: --entry foo
     PASS: --entry foo -u foo
     PASS: --entry 0x0
    @@ -845,7 +261,7 @@
     PASS: undefined function
     PASS: undefined line
     Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
    -PASS: weak undefined symbols
    +UNSUPPORTED: weak undefined symbols
     Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
     Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
     Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
    @@ -860,13 +276,15 @@
     
     		=== ld Summary ===
     
    -# of expected passes		611
    -# of expected failures		8
    +# of expected passes		57
    +# of unexpected failures	11
    +# of expected failures		5
     # of untested testcases		6
    +# of unsupported tests		4
     /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
     
    -Test Run By thomas on Sun Oct 24 20:00:34 2010
    -Native configuration is i686-pc-linux-gnu
    +Test Run By tschwinge on Sun Oct 24 20:02:04 2010
    +Native configuration is i686-unknown-gnu0.3
     
     		=== gas tests ===
     
    @@ -940,15 +358,6 @@
     Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
     Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
     Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
    -PASS: CFI on i386
    -PASS: cfi cfi-diag-1
    -PASS: CFI common 1
    -PASS: CFI common 2
    -PASS: CFI common 3
    -PASS: CFI common 4
    -PASS: CFI common 5
    -PASS: CFI common 7
    -PASS: CFI common 6
     Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
     Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
     Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
    @@ -957,36 +366,6 @@
     Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
     Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
     Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
    -PASS: elf ehopt0
    -PASS: .file file names
    -PASS: group section
    -PASS: group section
    -PASS: group section name
    -PASS: group section with multiple sections of same name
    -PASS: group section with multiple sections of same name
    -PASS: automatic section group
    -PASS: automatic section group
    -PASS: .equ redefinitions (ELF)
    -PASS: elf equate relocs
    -PASS: Ill-formed directives
    -PASS: elf section0
    -PASS: elf section1
    -PASS: elf section2 list
    -PASS: note section
    -PASS: label arithmetic with multiple same-name sections
    -PASS: elf section5 list
    -PASS: ELF struct
    -PASS: .set with expression
    -PASS: ELF symbol versioning
    -PASS: .set with IFUNC
    -PASS: elf type list
    -PASS: elf section6
    -PASS: elf section7
    -PASS: section flags
    -PASS: DWARF2 1
    -PASS: DWARF2 2
    -PASS: DWARF2 3
    -PASS: Check bad section flag
     Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
     Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
     Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
    @@ -1165,41 +544,10 @@
     PASS: i386 FSGSBase (Intel disassembly)
     PASS: i386 RdRnd
     PASS: i386 RdRnd (Intel disassembly)
    -PASS: i386 reloc
    -PASS: i386 jump16
    -PASS: i386 white
    -PASS: i386 pcrel reloc
    -PASS: i386 abs reloc
    -PASS: i386 intelpic
    -PASS: i386 relax
    -PASS: i386 relax 1
    -PASS: i386 relax 3
    -PASS: i386 gotpc
    -PASS: i386 dynamic tls
    -PASS: i386 pic tls
    -PASS: i386 non-pic tls
    -PASS: i386 .bss
    -PASS: i386 relocs
    -PASS: i386 reloc32
    -PASS: x86 mixed mode relocs (32-bit object)
    -PASS: i386 AT&T register names
    -PASS: i386 intel-got
    -PASS: i386 Intel register names
    -PASS: i386 inval-equ-1
    -PASS: i386 inval-equ-2
    -PASS: i386 ifunc
    -PASS: i386 l1om-inval
    -PASS: i386 local PIC
    -PASS: DWARF2 debugging information 1
    -XFAIL: DWARF2 debugging information 2
     PASS: x86 Intel expressions
     PASS: string insn operands
     PASS: i386 string-bad
     PASS: i386 space1
    -PASS: i386 list-1
    -PASS: i386 list-2
    -PASS: i386 list-3
    -PASS: DWARF2 debugging information 1
     Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
     Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
     Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
    @@ -1210,9 +558,6 @@
     Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
     Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
     Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
    -PASS: lns lns-diag-1
    -PASS: lns-duplicate
    -PASS: lns-common-1
     Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
     Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
     Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
    @@ -1281,11 +626,6 @@
     Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
     Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
     Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
    -PASS: symver symver0
    -PASS: symver symver1
    -PASS: symver symver2
    -PASS: symver symver3
    -PASS: symver symver6
     Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
     Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
     Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
    @@ -1300,7 +640,6 @@
     
     		=== gas Summary ===
     
    -# of expected passes		315
    -# of expected failures		1
    +# of expected passes		238
     ../as-new 2.20.51.20101024
     

A lot of tests are not being run.  Might be due
to the tests (incorrectly / correctly) being Linux-specific.

A few tests fail.


These tests PASSed when manually configured for `i686-pc-gnu`, but not when
automatically configured for `i686-unknown-gnu0.3`:

    Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
    PASS: ld-discard/extern
    PASS: ld-discard/start
    PASS: ld-discard/static
    PASS: ld-discard/zero-rel