summaryrefslogtreecommitdiff
path: root/05-build_abe-check_gdb/baseline.xfail
blob: 52880c8658df3a2a74724156f3fd9f4048f1367b (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
		=== gdb tests ===

Running gdb:gdb.ada/convvar_comp.exp ...
FAIL: gdb.ada/convvar_comp.exp: print $item.started
FAIL: gdb.ada/convvar_comp.exp: print item.started
FAIL: gdb.ada/convvar_comp.exp: set variable $item := item

Running gdb:gdb.ada/enum_idx_packed.exp ...
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print multi
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print multi'first
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print multi_multi
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print multi_multi(1,3)
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print multi_multi(2)
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print small
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: print small'first
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: ptype multi
FAIL: gdb.ada/enum_idx_packed.exp: scenario=minimal: ptype small

Running gdb:gdb.ada/mi_task_arg.exp ...
FAIL: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1 (unexpected output)

Running gdb:gdb.ada/mod_from_name.exp ...
FAIL: gdb.ada/mod_from_name.exp: scenario=minimal: print xp

Running gdb:gdb.ada/pckd_arr_ren.exp ...
FAIL: gdb.ada/pckd_arr_ren.exp: scenario=minimal: print var

Running gdb:gdb.ada/variant_record_packed_array.exp ...
FAIL: gdb.ada/variant_record_packed_array.exp: scenario=minimal: print my_buffer
FAIL: gdb.ada/variant_record_packed_array.exp: scenario=minimal: print {foo.octal_buffer}($)

Running gdb:gdb.arch/thumb2-it.exp ...
FAIL: gdb.arch/thumb2-it.exp: it_3, stepi 3
FAIL: gdb.arch/thumb2-it.exp: it_4, stepi 4
FAIL: gdb.arch/thumb2-it.exp: it_6, stepi 3
FAIL: gdb.arch/thumb2-it.exp: it_8, stepi 3

Running gdb:gdb.base/annota1.exp ...
FAIL: gdb.base/annota1.exp: run until main breakpoint (timeout)

Running gdb:gdb.base/annota3.exp ...
FAIL: gdb.base/annota3.exp: annotate ignore count change (pattern 8)
FAIL: gdb.base/annota3.exp: breakpoint ignore count (pattern 4)
FAIL: gdb.base/annota3.exp: next to exit loop (pattern 4)

Running gdb:gdb.base/argv0-symlink.exp ...
FAIL: gdb.base/argv0-symlink.exp: dir symlink: kept name for info inferiors
FAIL: gdb.base/argv0-symlink.exp: file symlink: kept name
FAIL: gdb.base/argv0-symlink.exp: file symlink: kept name for info inferiors

Running gdb:gdb.base/breakpoint-in-ro-region.exp ...
FAIL: gdb.base/breakpoint-in-ro-region.exp: get lo address of main (timeout)
FAIL: gdb.base/breakpoint-in-ro-region.exp: probe target hardware step (timeout)
FAIL: gdb.base/breakpoint-in-ro-region.exp: set debug target 0 (timeout)

Running gdb:gdb.base/complex-parts.exp ...
FAIL: gdb.base/complex-parts.exp: long double imaginary: ptype $
FAIL: gdb.base/complex-parts.exp: long double real: ptype $

Running gdb:gdb.base/decl-before-def.exp ...
FAIL: gdb.base/decl-before-def.exp: running process: p a

Running gdb:gdb.base/fork-print-inferior-events.exp ...
FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=on: follow_fork_mode=child: detach_on_fork=off: run (the program exited)
FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=on: follow_fork_mode=parent: detach_on_fork=off: run (the program exited)

Running gdb:gdb.base/func-ptrs.exp ...
FAIL: gdb.base/func-ptrs.exp: continue to decr
FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
FAIL: gdb.base/func-ptrs.exp: move up to decr
FAIL: gdb.base/func-ptrs.exp: set calc to incr
FAIL: gdb.base/func-ptrs.exp: stop in sentinel

Running gdb:gdb.base/gdb-sigterm.exp ...
ERROR: Could not resync from internal error (eof)
UNRESOLVED: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
FAIL: gdb.base/gdb-sigterm.exp: pass=0: expect eof (GDB internal error)

Running gdb:gdb.base/gnu-debugdata.exp ...
ERROR: Couldn't load gnu-debugdata.test into GDB (eof).
UNRESOLVED: gdb.base/gnu-debugdata.exp: file
UNRESOLVED: gdb.base/gnu-debugdata.exp: have symtab

Running gdb:gdb.base/gold-gdb-index.exp ...
FAIL: gdb.base/gold-gdb-index.exp: runto: run to main

Running gdb:gdb.base/hbreak.exp ...
FAIL: gdb.base/hbreak.exp: continue to break-at-exit after hbreak

Running gdb:gdb.base/info-types-c++.exp ...
FAIL: gdb.base/info-types-c++.exp: runto: run to main

Running gdb:gdb.base/info-types-c.exp ...
FAIL: gdb.base/info-types-c.exp: runto: run to main

Running gdb:gdb.base/inline-frame-cycle-unwind.exp ...
FAIL: gdb.base/inline-frame-cycle-unwind.exp: cycle at level 1: backtrace when the unwind is broken at frame 1
FAIL: gdb.base/inline-frame-cycle-unwind.exp: cycle at level 3: backtrace when the unwind is broken at frame 3
FAIL: gdb.base/inline-frame-cycle-unwind.exp: cycle at level 5: backtrace when the unwind is broken at frame 5

Running gdb:gdb.base/jit-bfd-name.exp ...
ERROR: GDB process no longer exists
UNRESOLVED: gdb.base/jit-bfd-name.exp: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-bfd-name.exp: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-bfd-name.exp: gdb_breakpoint: set breakpoint at 143
UNRESOLVED: gdb.base/jit-bfd-name.exp: info function ^jit_function
UNRESOLVED: gdb.base/jit-bfd-name.exp: info function jit_function
UNRESOLVED: gdb.base/jit-bfd-name.exp: maint info jit
UNRESOLVED: gdb.base/jit-bfd-name.exp: maint info symtabs

Running gdb:gdb.base/jit-elf-fork.exp ...
ERROR: GDB process no longer exists
ERROR: breakpoints not deleted
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: continue to breakpoint: continue to after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: continue to breakpoint: continue to before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: continue to breakpoint: continue to before return - child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: continue to breakpoint: continue to before return - parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: current inferior is child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: delete all breakpoints in delete_breakpoints
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: gdb_breakpoint: set breakpoint at 103
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: gdb_breakpoint: set breakpoint at 128
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: inferior 1
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: inferior 2
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: jit-ed objfile in child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: jit-ed objfile in parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: jit-ed objfiles after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: jit-ed objfiles before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: no more jit-ed objfiles in child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_child: no more jit-ed objfiles in parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: continue to breakpoint: continue to after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: continue to breakpoint: continue to before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: continue to breakpoint: continue to before return - child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: continue to breakpoint: continue to before return - parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: current inferior is parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: delete all breakpoints in delete_breakpoints
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: gdb_breakpoint: set breakpoint at 103
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: gdb_breakpoint: set breakpoint at 128
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: inferior 1
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: inferior 2
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: jit-ed objfile in child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: jit-ed objfile in parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: jit-ed objfiles after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: jit-ed objfiles before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: no more jit-ed objfiles in child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_off_follow_fork_mode_parent: no more jit-ed objfiles in parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: continue to breakpoint: continue to after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: continue to breakpoint: continue to before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: continue to breakpoint: continue to before return
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: current inferior is child
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: delete all breakpoints in delete_breakpoints
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: gdb_breakpoint: set breakpoint at 103
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: gdb_breakpoint: set breakpoint at 128
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: inferior 1
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: inferior 2
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: jit-ed objfiles after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: jit-ed objfiles before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_child: no more jit-ed objfiles
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: continue to breakpoint: continue to after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: continue to breakpoint: continue to before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: continue to breakpoint: continue to before return
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: current inferior is parent
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: delete all breakpoints in delete_breakpoints
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: gdb_breakpoint: set breakpoint at 103
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: gdb_breakpoint: set breakpoint at 128
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: jit-ed objfiles after fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: jit-ed objfiles before fork
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: no inferior 2
UNRESOLVED: gdb.base/jit-elf-fork.exp: test_detach_on_fork_on_follow_fork_mode_parent: no more jit-ed objfiles

Running gdb:gdb.base/jit-elf-so.exp ...
ERROR: GDB process no longer exists
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-1: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-1: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-1: gdb_breakpoint: set breakpoint at gdb.base/jit-elf-main.c:143
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-1: info function jit_function
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-1: info function jit_function after unregistration
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-2: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-2: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-2: gdb_breakpoint: set breakpoint at gdb.base/jit-elf-main.c:143
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-2: info function jit_function
UNRESOLVED: gdb.base/jit-elf-so.exp: one_jit_test-2: info function jit_function after unregistration
UNRESOLVED: gdb.base/jit-elf-so.exp: test jit-reader-load filename completion jit-elf-solib.1.so
UNRESOLVED: gdb.base/jit-elf-so.exp: test jit-reader-load filename completion jit-elf-solib.2.so

Running gdb:gdb.base/jit-elf.exp ...
ERROR: GDB process no longer exists
UNRESOLVED: gdb.base/jit-elf.exp: PIE: one_jit_test-1: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf.exp: PIE: one_jit_test-1: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-elf.exp: PIE: one_jit_test-1: gdb_breakpoint: set breakpoint at 143
UNRESOLVED: gdb.base/jit-elf.exp: PIE: one_jit_test-1: info function ^jit_function
UNRESOLVED: gdb.base/jit-elf.exp: PIE: one_jit_test-1: info function jit_function
FAIL: gdb.base/jit-elf.exp: attach: one_jit_test-2: break here 1: attach
UNRESOLVED: gdb.base/jit-elf.exp: attach: one_jit_test-2: break here 1: detach
UNRESOLVED: gdb.base/jit-elf.exp: attach: one_jit_test-2: break here 1: get inferior process ID
UNRESOLVED: gdb.base/jit-elf.exp: attach: one_jit_test-2: break here 1: set var wait_for_gdb = 1
UNRESOLVED: gdb.base/jit-elf.exp: attach: one_jit_test-2: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-1: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-1: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-1: gdb_breakpoint: set breakpoint at 143
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-1: info function ^jit_function
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-1: info function jit_function
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-2: continue to breakpoint: break here 1
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-2: continue to breakpoint: break here 2
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-2: gdb_breakpoint: set breakpoint at 143
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-2: info function ^jit_function
UNRESOLVED: gdb.base/jit-elf.exp: one_jit_test-2: info function jit_function

Running gdb:gdb.base/kill-during-detach.exp ...
FAIL: gdb.base/kill-during-detach.exp: exit_p=false: checkpoint_p=true: python kill_and_detach()
FAIL: gdb.base/kill-during-detach.exp: exit_p=true: checkpoint_p=true: python kill_and_detach()

Running gdb:gdb.base/nextoverexit.exp ...
FAIL: gdb.base/nextoverexit.exp: next over exit

Running gdb:gdb.base/premature-dummy-frame-removal.exp ...
FAIL: gdb.base/premature-dummy-frame-removal.exp: p 1 + 2 + 3
FAIL: gdb.base/premature-dummy-frame-removal.exp: repeat p some_func () with frame debug on (timeout)
FAIL: gdb.base/premature-dummy-frame-removal.exp: set debug frame off

Running gdb:gdb.base/print-symbol-loading.exp ...
FAIL: gdb.base/print-symbol-loading.exp: shlib brief: runto: run to main
FAIL: gdb.base/print-symbol-loading.exp: shlib full: runto: run to main
FAIL: gdb.base/print-symbol-loading.exp: shlib off: runto: run to main

Running gdb:gdb.base/sigbpt.exp ...
FAIL: gdb.base/sigbpt.exp: cont bp after segv; continue to breakpoint at fault
FAIL: gdb.base/sigbpt.exp: cont bp after segv; stepi fault
FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; continue to breakpoint at fault
FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; stepi fault
FAIL: gdb.base/sigbpt.exp: cont; continue to breakpoint at fault
FAIL: gdb.base/sigbpt.exp: cont; stepi fault
FAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler

Running gdb:gdb.base/sigstep.exp ...
FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: si in handler
FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: si in handler
FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: si in handler

Running gdb:gdb.base/solib-display.exp ...
FAIL: gdb.base/solib-display.exp: IN: after rerun
FAIL: gdb.base/solib-display.exp: IN: after rerun (2)
FAIL: gdb.base/solib-display.exp: IN: continue two
FAIL: gdb.base/solib-display.exp: NO: after rerun
FAIL: gdb.base/solib-display.exp: NO: after rerun (2)
FAIL: gdb.base/solib-display.exp: NO: continue two
FAIL: gdb.base/solib-display.exp: SEP: after rerun
FAIL: gdb.base/solib-display.exp: SEP: after rerun (2)
FAIL: gdb.base/solib-display.exp: SEP: continue two

Running gdb:gdb.base/solib-probes-nosharedlibrary.exp ...
FAIL: gdb.base/solib-probes-nosharedlibrary.exp: continue to breakpoint: main

Running gdb:gdb.base/sss-bp-on-user-bp-2.exp ...
ERROR: breakpoints not deleted
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: b test:label (timeout)
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: before/after disassembly matches
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: before: capture_command_output for disassemble test (got interactive prompt)
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: continue to breakpoint: run past setup
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: probe target hardware step (timeout)
UNRESOLVED: gdb.base/sss-bp-on-user-bp-2.exp: set breakpoint always-inserted on
FAIL: gdb.base/sss-bp-on-user-bp-2.exp: set debug target 0 (timeout)

Running gdb:gdb.base/startup-with-shell.exp ...
FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = off; run_args = *.unique-extension: first argument not expanded
FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded

Running gdb:gdb.base/step-over-syscall.exp ...
FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: pc after stepi matches insn addr after syscall
FAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: pc after stepi matches insn addr after syscall
FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall

Running gdb:gdb.base/unwind-on-each-insn.exp ...
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: $fba_value == $::main_fba
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: $fba_value == $fn_fba
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: $sp_value == $::main_sp
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: [string equal $fid $::main_fid]
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: bt 2
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: check frame-id matches
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 10: up
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: $fba_value == $::main_fba
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: $fba_value == $fn_fba
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: $sp_value == $::main_sp
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: [string equal $fid $::main_fid]
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: bt 2
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: check frame-id matches
FAIL: gdb.base/unwind-on-each-insn.exp: bar: instruction 9: up
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 8: $fba_value == $::main_fba
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 8: $fba_value == $fn_fba
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 8: $sp_value == $::main_sp
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 8: [string equal $fid $::main_fid]
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 8: check frame-id matches
FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 9: check frame-id matches

Running gdb:gdb.base/watch-bitfields.exp ...
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: print expression after
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before

Running gdb:gdb.base/watchpoint-unaligned.exp ...
FAIL: gdb.base/watchpoint-unaligned.exp: continue
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=1) rd(size=2 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=1) rd(size=4 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=1) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=2) rd(size=4 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=2) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=3) rd(size=2 offset=1) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=3) rd(size=4 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=3) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=4) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=5) rd(size=2 offset=2) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=5) rd(size=4 offset=1) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=5) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=6) rd(size=4 offset=1) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=6) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=7) rd(size=2 offset=3) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=7) rd(size=4 offset=1) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=1 offset=7) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=2 offset=1) rd(size=4 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=2 offset=1) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=2 offset=2) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=2 offset=3) rd(size=4 offset=1) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=2 offset=3) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wp(size=4 offset=1) rd(size=8 offset=0) expect=1
FAIL: gdb.base/watchpoint-unaligned.exp: wpcount(4)

Running gdb:gdb.cp/m-static.exp ...
FAIL: gdb.cp/m-static.exp: simple object class, ptype constructor
FAIL: gdb.cp/m-static.exp: simple object instance, ptype constructor

Running gdb:gdb.cp/mb-inline.exp ...
FAIL: gdb.cp/mb-inline.exp: disabled breakpoint 1.2

Running gdb:gdb.cp/namespace.exp ...
FAIL: gdb.cp/namespace.exp: br malformed ')'
FAIL: gdb.cp/namespace.exp: br malformed '>' (got interactive prompt)

Running gdb:gdb.cp/typeid.exp ...
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))

Running gdb:gdb.dwarf2/dw2-fixed-point.exp ...
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print -pck.fp1_var
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var + 0.25
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var /= 0.25
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var <= 0.25
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var = 0.25
FAIL: gdb.dwarf2/dw2-fixed-point.exp: print pck.fp1_var > 0.25

Running gdb:gdb.dwarf2/dw2-line-number-zero.exp ...
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: bar1, 1st next
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: bar1, 2nd next
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: bar2, 1st next
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: bar2, 2nd next
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: continue to breakpoint: bar1
FAIL: gdb.dwarf2/dw2-line-number-zero.exp: continue to breakpoint: bar2

Running gdb:gdb.dwarf2/dw2-lines.exp ...
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=2: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=2: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=2: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=3: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=3: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=3: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=4: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=4: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=4: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=2: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=2: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=2: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=3: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=3: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=3: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=4: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=4: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=3: cdw=32: lv=4: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=2: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=2: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=2: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=3: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=3: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=3: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=4: ldw=32: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=4: ldw=32: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=4: cdw=32: lv=4: ldw=32: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=line_strp: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=line_strp: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=line_strp: next to foo (4)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=string: next to foo (2)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=string: next to foo (3)
FAIL: gdb.dwarf2/dw2-lines.exp: cv=5: cdw=32: lv=5: ldw=32: string_form=string: next to foo (4)

Running gdb:gdb.dwarf2/dw2-zero-range.exp ...
FAIL: gdb.dwarf2/dw2-zero-range.exp: ranges_sect=ranges: runto: run to main

Running gdb:gdb.dwarf2/dwzbuildid.exp ...
FAIL: gdb.dwarf2/dwzbuildid.exp: testname=fallback: print the_int
FAIL: gdb.dwarf2/dwzbuildid.exp: testname=ok: print the_int

Running gdb:gdb.fortran/allocated.exp ...
FAIL: gdb.fortran/allocated.exp: runto: run to MAIN__

Running gdb:gdb.fortran/array-bounds.exp ...
FAIL: gdb.fortran/array-bounds.exp: print &bar
FAIL: gdb.fortran/array-bounds.exp: print &foo

Running gdb:gdb.fortran/array-slices-sub-slices.exp ...
FAIL: gdb.fortran/array-slices-sub-slices.exp: runto: run to MAIN__

Running gdb:gdb.fortran/array-slices.exp ...
FAIL: gdb.fortran/array-slices.exp: repack=off: runto: run to MAIN__
FAIL: gdb.fortran/array-slices.exp: repack=on: runto: run to MAIN__

Running gdb:gdb.fortran/info-modules.exp ...
ERROR: Could not run to main.
FAIL: gdb.fortran/info-modules.exp: runto: run to MAIN__

Running gdb:gdb.fortran/intrinsics.exp ...
FAIL: gdb.fortran/intrinsics.exp: p cmplx (4,4,16) (GDB internal error)
FAIL: gdb.fortran/intrinsics.exp: ptype cmplx (4,4,16) (GDB internal error)

Running gdb:gdb.fortran/lbound-ubound.exp ...
FAIL: gdb.fortran/lbound-ubound.exp: runto: run to MAIN__

Running gdb:gdb.fortran/module.exp ...
FAIL: gdb.fortran/module.exp: runto: run to MAIN__

Running gdb:gdb.fortran/subarray.exp ...
FAIL: gdb.fortran/subarray.exp: runto: run to MAIN__

Running gdb:gdb.fortran/type-kinds.exp ...
FAIL: gdb.fortran/type-kinds.exp: p ((complex (kind=16)) 1)
FAIL: gdb.fortran/type-kinds.exp: p ((complex*16) 1)
FAIL: gdb.fortran/type-kinds.exp: p ((real (kind=16)) 1)
FAIL: gdb.fortran/type-kinds.exp: p ((real*16) 1)
FAIL: gdb.fortran/type-kinds.exp: p sizeof ((complex (kind=16)) 1)
FAIL: gdb.fortran/type-kinds.exp: p sizeof ((real (kind=16)) 1)

Running gdb:gdb.guile/scm-disasm.exp ...
FAIL: gdb.guile/scm-disasm.exp: disassemble bytevector

Running gdb:gdb.mi/mi-break-qualified.exp ...
FAIL: gdb.mi/mi-break-qualified.exp: delete temp breakpoints (unexpected output)
FAIL: gdb.mi/mi-break-qualified.exp: list of breakpoints (timeout)

Running gdb:gdb.mi/mi-break.exp ...
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: insert explicit conditional breakpoint in callee2 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: insert temp explicit breakpoint at "basics.c":25 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: insert temp explicit breakpoint at basics.c:34 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: insert temp explicit breakpoint at basics.c:callee2 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: insert temp explicit breakpoint in main (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=main: test_explicit_breakpoints: list of explicit breakpoints (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: insert explicit conditional breakpoint in callee2 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: insert temp explicit breakpoint at "basics.c":25 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: insert temp explicit breakpoint at basics.c:34 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: insert temp explicit breakpoint at basics.c:callee2 (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: insert temp explicit breakpoint in main (unexpected output)
FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test_explicit_breakpoints: list of explicit breakpoints (unexpected output)

Running gdb:gdb.mi/mi-dprintf.exp ...
FAIL: gdb.mi/mi-dprintf.exp: stderr symbol check

Running gdb:gdb.mi/mi-fortran-modules.exp ...
FAIL: gdb.mi/mi-fortran-modules.exp: mi runto main (unknown output after running)

Running gdb:gdb.mi/mi-var-child-f.exp ...
FAIL: gdb.mi/mi-var-child-f.exp: create local variable array (unexpected output)
FAIL: gdb.mi/mi-var-child-f.exp: get children of array (unexpected output)
FAIL: gdb.mi/mi-var-child-f.exp: get grandchildren of array (children of first element of second index) (unexpected output)
FAIL: gdb.mi/mi-var-child-f.exp: mi runto prog_array (unknown output after running)

Running gdb:gdb.mi/mi-var-cmd.exp ...
ERROR: : spawn id exp8 not open
ERROR: Couldn't send -break-insert -t var-cmd.c:368 to GDB.
ERROR: Couldn't send -file-exec-and-symbols outputs/gdb.mi/mi-var-cmd/mi-var-cmd to GDB.
ERROR: Couldn't send -var-assign  lsimple->integer 222 to GDB.
ERROR: Couldn't send -var-assign array_ptr array2 to GDB.
ERROR: Couldn't send -var-assign func do_block_tests to GDB.
ERROR: Couldn't send -var-assign global_simple 0 to GDB.
ERROR: Couldn't send -var-assign lcharacter 'z' to GDB.
ERROR: Couldn't send -var-assign ldouble 5.333318284590435 to GDB.
ERROR: Couldn't send -var-assign lfloat 1.2345 to GDB.
ERROR: Couldn't send -var-assign lfloat 3.4567 to GDB.
ERROR: Couldn't send -var-assign linteger 3333 to GDB.
ERROR: Couldn't send -var-assign linteger 4321 to GDB.
ERROR: Couldn't send -var-assign llong 1212L to GDB.
ERROR: Couldn't send -var-assign llong 1313L to GDB.
ERROR: Couldn't send -var-assign lpfloat &lfloat+4 to GDB.
ERROR: Couldn't send -var-assign lpinteger "&linteger + 3" to GDB.
ERROR: Couldn't send -var-assign lpinteger &linteger to GDB.
ERROR: Couldn't send -var-assign lplong &llong to GDB.
ERROR: Couldn't send -var-assign lplong &llong+4 to GDB.
ERROR: Couldn't send -var-assign lsimple.character 'd' to GDB.
ERROR: Couldn't send -var-assign lsimple.integer 333 to GDB.
ERROR: Couldn't send -var-create array_ptr * array_ptr to GDB.
ERROR: Couldn't send -var-create i * i to GDB.
ERROR: Couldn't send -var-create l * l to GDB.
ERROR: Couldn't send -var-create linteger * linteger to GDB.
ERROR: Couldn't send -var-create selected_a @ a to GDB.
ERROR: Couldn't send -var-delete  lsimple->integer to GDB.
ERROR: Couldn't send -var-delete array_ptr to GDB.
ERROR: Couldn't send -var-delete func to GDB.
ERROR: Couldn't send -var-delete global_simple to GDB.
ERROR: Couldn't send -var-delete i to GDB.
ERROR: Couldn't send -var-delete l to GDB.
ERROR: Couldn't send -var-delete lcharacter to GDB.
ERROR: Couldn't send -var-delete ldouble to GDB.
ERROR: Couldn't send -var-delete lfloat to GDB.
ERROR: Couldn't send -var-delete linteger to GDB.
ERROR: Couldn't send -var-delete llong to GDB.
ERROR: Couldn't send -var-delete lpcharacter to GDB.
ERROR: Couldn't send -var-delete lpdouble to GDB.
ERROR: Couldn't send -var-delete lpfloat to GDB.
ERROR: Couldn't send -var-delete lpinteger to GDB.
ERROR: Couldn't send -var-delete lplong to GDB.
ERROR: Couldn't send -var-delete lpsimple to GDB.
ERROR: Couldn't send -var-delete lsimple to GDB.
ERROR: Couldn't send -var-delete lsimple.character to GDB.
ERROR: Couldn't send -var-delete lsimple.integer to GDB.
ERROR: Couldn't send -var-delete selected_a to GDB.
ERROR: Couldn't send -var-evaluate-expression lcharacter to GDB.
ERROR: Couldn't send -var-evaluate-expression lfloat to GDB.
ERROR: Couldn't send -var-evaluate-expression linteger to GDB.
ERROR: Couldn't send -var-evaluate-expression llong to GDB.
ERROR: Couldn't send -var-evaluate-expression lpinteger to GDB.
ERROR: Couldn't send -var-evaluate-expression lplong to GDB.
ERROR: Couldn't send -var-update * to GDB.
ERROR: Couldn't send -var-update selected_a to GDB.
ERROR: Couldn't send 200-break-insert  -t do_special_tests to GDB.
ERROR: Couldn't send 200-break-insert  -t incr_a to GDB.
ERROR: Couldn't send 200-break-insert  -t subroutine1 to GDB.
ERROR: Process no longer exists
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign array to pointer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign array to pointer (update)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same array to pointer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same array to pointer (update)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same value to func
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same value to func (update)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to func
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to global_simple
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lcharacter
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to ldouble
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lfloat, 1st
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lfloat, 2nd
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to linteger again, same value
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to linteger, 1st
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to linteger, 2nd
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to llong, 1st
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to llong, 2nd
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lpfloat
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lpinteger, 1st
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lpinteger, 2nd
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lplong, 1st
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lplong, 2nd
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple->integer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple.character
UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple.integer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at do_special_tests
UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at incr_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at subroutine1
UNRESOLVED: gdb.mi/mi-var-cmd.exp: create global variable array_ptr
UNRESOLVED: gdb.mi/mi-var-cmd.exp: create i
UNRESOLVED: gdb.mi/mi-var-cmd.exp: create l
UNRESOLVED: gdb.mi/mi-var-cmd.exp: create linteger
UNRESOLVED: gdb.mi/mi-var-cmd.exp: create selected_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete array_ptr
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete selected_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var  lsimple->integer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var func
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var i
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var l
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lcharacter
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var ldouble
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lfloat
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var linteger
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var llong
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpcharacter
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpdouble
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpfloat
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpinteger
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lplong
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpsimple
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple.character
UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple.integer
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lcharacter
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lfloat
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval linteger
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval llong
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lpinteger
UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lplong
UNRESOLVED: gdb.mi/mi-var-cmd.exp: floating varobj invalidation
UNRESOLVED: gdb.mi/mi-var-cmd.exp: inline_test=frozen: set temporary breakpoint
UNRESOLVED: gdb.mi/mi-var-cmd.exp: inline_test=frozen: unable to start target
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto incr_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto incr_a (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto subroutine1
UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto subroutine1 (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: next out of subroutine1
UNRESOLVED: gdb.mi/mi-var-cmd.exp: next out of subroutine1 (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests
UNRESOLVED: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step a line in incr_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step a line in incr_a (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_test
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_test (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (2)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (2) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (3)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (3) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (4)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (4) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (5)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (5) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (6)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (6) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (7)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (7) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1 (2)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1 (2) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1 (3)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1 (3) (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1 (timeout)
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: all now out of scope
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: changed FIXME
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: func and lpsimple changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: i changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lcharacter changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed after assign
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger not changed after same assign
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: llong changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpcharacter changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed after assign
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lsimple and others changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: many changed
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: no changes on second update
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update selected_a in do_special_tests
UNRESOLVED: gdb.mi/mi-var-cmd.exp: update selected_a in incr_a
UNRESOLVED: gdb.mi/mi-var-cmd.exp: var update

Running gdb:gdb.mi/mi-var-invalidate.exp ...
ERROR: : spawn id exp8 not open
ERROR: Couldn't send -var-info-type global_simple to GDB.
ERROR: Couldn't send -var-info-type linteger to GDB.
ERROR: Couldn't send -var-update global_simple to GDB.
ERROR: Couldn't send -var-update linteger to GDB.
ERROR: Delete all breakpoints in mi_delete_breakpoints (timeout)
ERROR: Process no longer exists
ERROR: couldn't load outputs/gdb.mi/mi-var-invalidate/basics into ../../gdb/gdb (end of file).
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple not anymore in scope due to binary changes
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple still alive
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: linteger not valid anymore due to binary changes
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable global_simple
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger (2)
UNRESOLVED: gdb.mi/mi-var-invalidate.exp: type simpleton for valid variable global_simple

Running gdb:gdb.mi/mi-vla-fortran.exp ...
ERROR: : spawn id exp8 not open
ERROR: Couldn't send -var-create pvla2_associated * pvla2 to GDB.
ERROR: Couldn't send 222-break-insert -t vla.f90:30 to GDB.
ERROR: Couldn't send 222-break-insert -t vla.f90:31 to GDB.
ERROR: Couldn't send 222-break-insert -t vla.f90:36 to GDB.
ERROR: Couldn't send 222-break-insert -t vla.f90:37 to GDB.
ERROR: Couldn't send 222-break-insert -t vla.f90:42 to GDB.
ERROR: Couldn't send 520-data-evaluate-expression vla1 to GDB.
ERROR: Couldn't send 530-data-evaluate-expression vla1 to GDB.
ERROR: Couldn't send 540-data-evaluate-expression vla1(1) to GDB.
ERROR: Couldn't send 550-data-evaluate-expression vla1(2) to GDB.
ERROR: Couldn't send 560-data-evaluate-expression vla1(4) to GDB.
ERROR: Couldn't send 570-data-evaluate-expression vla1 to GDB.
ERROR: Couldn't send 590-data-evaluate-expression pvla2 to GDB.
ERROR: Couldn't send 591-var-info-type pvla2_associated to GDB.
ERROR: Couldn't send 592-var-show-format pvla2_associated to GDB.
ERROR: Couldn't send 593-var-evaluate-expression pvla2_associated to GDB.
ERROR: Couldn't send 600-data-evaluate-expression pvla2 to GDB.
ERROR: Process no longer exists
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: create local variable pvla2_associated
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: eval variable pvla2_associated
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate associated vla
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate filled vla(1)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate filled vla(2)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate filled vla(4)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate filled vla, contents modified
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate filled vla, filled all 1s
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate not allocated vla, after deallocation
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate not associated vla (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: evaluate vla pointer set to null
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: info type variable pvla2_associated
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: insert breakpoint at line 30
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: insert breakpoint at line 31
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: insert breakpoint at line 36
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: insert breakpoint at line 37
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: insert breakpoint at line 42
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 27 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 30 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 31 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 36 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 37 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 42 (timeout)
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: show format variable pvla2_associated
UNRESOLVED: gdb.mi/mi-vla-fortran.exp: unable to start target

Running gdb:gdb.multi/multi-re-run.exp ...
FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=1: print re_run_var_1
FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: print re_run_var_1
FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=1: print re_run_var_2
FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: print re_run_var_2

Running gdb:gdb.python/py-disasm.exp ...
FAIL: gdb.python/py-disasm.exp: DisassembleInfo becomes invalid: disassemble test
FAIL: gdb.python/py-disasm.exp: GLOBAL tagging disassembler again: disassemble test
FAIL: gdb.python/py-disasm.exp: GLOBAL tagging disassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: LOCAL tagging disassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=All_Text_Part_Styles: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=Build_Result_Using_All_Parts: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=GdbErrorLateDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=GlobalAddrDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=GlobalPostInfoDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=GlobalPreInfoDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=GlobalReadDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=MemoryErrorEarlyDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=MemoryErrorLateDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=RuntimeErrorLateDisassembler: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=ShowInfoRepr: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=ShowInfoSubClassRepr: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=ShowResultRepr: disassemble test
FAIL: gdb.python/py-disasm.exp: global_disassembler=ShowResultStr: disassemble test
FAIL: gdb.python/py-disasm.exp: memory source api: disassemble test
FAIL: gdb.python/py-disasm.exp: memory source api: python analyzing_disassembler.find_replacement_candidate()
FAIL: gdb.python/py-disasm.exp: memory source api: second disassembler pass

Running gdb:gdb.python/py-exec-file.exp ...
FAIL: gdb.python/py-exec-file.exp: exec changes on disk: check executable_changed state after exec changed on disk

Running gdb:gdb.python/py-format-address.exp ...
FAIL: gdb.python/py-format-address.exp: symbol_filename=off: gdb.format_address, result should have an offset
FAIL: gdb.python/py-format-address.exp: symbol_filename=on: gdb.format_address, result should have an offset

Running gdb:gdb.reverse/fstatat-reverse.exp ...
FAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2

Running gdb:gdb.reverse/insn-reverse.exp ...
FAIL: gdb.reverse/insn-reverse.exp: ext_reg_load: compare registers on insn 11:ldr.w	r7, [sp], #4
FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 27:ldr.w	r7, [sp], #4
FAIL: gdb.reverse/insn-reverse.exp: ext_reg_push_pop: compare registers on insn 7:ldr.w	r7, [sp], #4

Running gdb:gdb.reverse/machinestate-precsave.exp ...
FAIL: gdb.reverse/machinestate-precsave.exp: auto variable, forward: auto var forward step-to
FAIL: gdb.reverse/machinestate-precsave.exp: auto variable, forward: auto var step post-change
FAIL: gdb.reverse/machinestate-precsave.exp: auto variable, forward: step, 1
FAIL: gdb.reverse/machinestate-precsave.exp: auto variable, forward: step, 2
FAIL: gdb.reverse/machinestate-precsave.exp: function static variable, forward: function static forward step-to
FAIL: gdb.reverse/machinestate-precsave.exp: function static variable, forward: function static step post-change
FAIL: gdb.reverse/machinestate-precsave.exp: function static variable, forward: step, 1
FAIL: gdb.reverse/machinestate-precsave.exp: function static variable, forward: step, 2
FAIL: gdb.reverse/machinestate-precsave.exp: module global variable, forward: module global step post-change
FAIL: gdb.reverse/machinestate-precsave.exp: module global variable, forward: step, 1
FAIL: gdb.reverse/machinestate-precsave.exp: module global variable, forward: step, 2
FAIL: gdb.reverse/machinestate-precsave.exp: module static variable, forward: module static step post-change
FAIL: gdb.reverse/machinestate-precsave.exp: module static variable, forward: step, 1
FAIL: gdb.reverse/machinestate-precsave.exp: module static variable, forward: step, 2
FAIL: gdb.reverse/machinestate-precsave.exp: register variable, forward: register var forward step-to
FAIL: gdb.reverse/machinestate-precsave.exp: register variable, forward: register var step post-change, second time
FAIL: gdb.reverse/machinestate-precsave.exp: register variable, forward: step, 1
FAIL: gdb.reverse/machinestate-precsave.exp: register variable, forward: step, 2

Running gdb:gdb.reverse/machinestate.exp ...
FAIL: gdb.reverse/machinestate.exp: auto variable, forward: auto var forward step-to
FAIL: gdb.reverse/machinestate.exp: auto variable, forward: auto var step post-change
FAIL: gdb.reverse/machinestate.exp: auto variable, forward: step, 1
FAIL: gdb.reverse/machinestate.exp: auto variable, forward: step, 2
FAIL: gdb.reverse/machinestate.exp: function static variable, forward: function static forward step-to
FAIL: gdb.reverse/machinestate.exp: function static variable, forward: function static step post-change
FAIL: gdb.reverse/machinestate.exp: function static variable, forward: step, 1
FAIL: gdb.reverse/machinestate.exp: function static variable, forward: step, 2
FAIL: gdb.reverse/machinestate.exp: module global variable, forward: module global step post-change
FAIL: gdb.reverse/machinestate.exp: module global variable, forward: step, 1
FAIL: gdb.reverse/machinestate.exp: module global variable, forward: step, 2
FAIL: gdb.reverse/machinestate.exp: module static variable, forward: module static step post-change
FAIL: gdb.reverse/machinestate.exp: module static variable, forward: step, 1
FAIL: gdb.reverse/machinestate.exp: module static variable, forward: step, 2
FAIL: gdb.reverse/machinestate.exp: register variable, forward: register var forward step-to
FAIL: gdb.reverse/machinestate.exp: register variable, forward: register var step post-change, second time
FAIL: gdb.reverse/machinestate.exp: register variable, forward: step, 1
FAIL: gdb.reverse/machinestate.exp: register variable, forward: step, 2

Running gdb:gdb.reverse/recursion.exp ...
FAIL: gdb.reverse/recursion.exp: print frame when stepping out
FAIL: gdb.reverse/recursion.exp: stepping into a different function

Running gdb:gdb.reverse/solib-precsave.exp ...
FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
FAIL: gdb.reverse/solib-precsave.exp: run until end part two

Running gdb:gdb.reverse/solib-reverse.exp ...
FAIL: gdb.reverse/solib-reverse.exp: reverse-next first shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-next generic
FAIL: gdb.reverse/solib-reverse.exp: reverse-next second shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-next third shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two

Running gdb:gdb.reverse/time-reverse.exp ...
FAIL: gdb.reverse/time-reverse.exp: mode=c: continue to breakpoint: marker2

Running gdb:gdb.stabs/gdb11479.exp ...
FAIL: gdb.stabs/gdb11479.exp: Inspect t in test forced_stabs
FAIL: gdb.stabs/gdb11479.exp: Inspect t in test2 forced_stabs

Running gdb:gdb.threads/attach-many-short-lived-threads.exp ...
ERROR: breakpoints not deleted
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)

Running gdb:gdb.threads/create-fail.exp ...
FAIL: gdb.threads/create-fail.exp: iteration 10: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 1: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 2: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 3: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 4: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 5: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 6: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 7: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 8: run till end (timeout)
FAIL: gdb.threads/create-fail.exp: iteration 9: run till end (timeout)

Running gdb:gdb.threads/detach-step-over.exp ...
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 1: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 1: continue &
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 1: print seconds_left
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 1: reset timer in the inferior
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 1: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=auto: test_detach_command: iter 2: attach (got interactive prompt)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 1: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 1: continue &
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 1: print seconds_left
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 1: reset timer in the inferior
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 1: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=off: displaced=off: test_detach_command: iter 2: attach (got interactive prompt)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 1: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 1: continue -a &
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 1: print seconds_left
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 1: reset timer in the inferior
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 1: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 2: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 2: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 3: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=auto: test_detach_command: iter 3: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 1: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 1: continue -a &
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 1: print seconds_left
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 1: reset timer in the inferior
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 1: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 2: all threads running
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 2: stop with SIGUSR1 (timeout)
FAIL: gdb.threads/detach-step-over.exp: breakpoint-condition-evaluation=host: target-non-stop=on: non-stop=on: displaced=off: test_detach_command: iter 3: attach

Running gdb:gdb.threads/interrupt-while-step-over.exp ...
FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=17: wait for stops (timeout)
FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops (timeout)
FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=9: wait for stops (timeout)

Running gdb:gdb.threads/next-fork-exec-other-thread.exp ...
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=auto: i=3: next to for loop (timeout)
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=off: i=7: next to for loop (timeout)
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=on: i=4: next to other line (timeout)
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=vfork: target-non-stop=off: non-stop=off: displaced-stepping=auto: i=2: next to for loop (timeout)
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=vfork: target-non-stop=off: non-stop=off: displaced-stepping=off: i=14: next to for loop (timeout)
FAIL: gdb.threads/next-fork-exec-other-thread.exp: fork_func=vfork: target-non-stop=off: non-stop=off: displaced-stepping=on: i=7: next to for loop (timeout)

Running gdb:gdb.threads/next-fork-other-thread.exp ...
FAIL: gdb.threads/next-fork-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=auto: i=2: next to for loop (timeout)
FAIL: gdb.threads/next-fork-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=off: i=1: next to other line (timeout)
FAIL: gdb.threads/next-fork-other-thread.exp: fork_func=fork: target-non-stop=off: non-stop=off: displaced-stepping=on: i=0: next to break here

Running gdb:gdb.tui/corefile-run.exp ...
FAIL: gdb.tui/corefile-run.exp: run until the end

		=== Results Summary ===