jjb: binutils-gdb: don't run tests in parallel
[lttng-ci.git] / scripts / binutils-gdb / build.sh
CommitLineData
91ba8aa1
MJ
1#!/bin/bash
2#
3# Copyright (C) 2021 Michael Jeanson <mjeanson@efficios.com>
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18set -exu
19
20failed_configure() {
21 # Assume we are in the configured build directory
22 echo "#################### BEGIN config.log ####################"
23 cat config.log
24 echo "#################### END config.log ####################"
25 exit 1
26}
27
28sum2junit() {
29 local infile="$1"
30 local outfile="$2"
31
bcd0bdf1
SM
32cat <<EOF > sum2junit.py
33import sys
34from datetime import datetime
35import re
36from xml.etree.ElementTree import ElementTree, Element, SubElement
37
38line_re = re.compile(
39 r"^(PASS|XPASS|FAIL|XFAIL|KFAIL|DUPLICATE|UNTESTED|UNSUPPORTED|UNRESOLVED): (.*?\.exp): (.*)"
40)
e9ba7f91
SM
41running_re = re.compile(r"^Running .*/(gdb\.[^/]+/.*\.exp)")
42error_re = re.compile(r"^ERROR: (.*)")
bcd0bdf1
SM
43
44pass_count = 0
45fail_count = 0
46skip_count = 0
47error_count = 0
48now = datetime.now().isoformat(timespec="seconds")
49
50testsuites = Element(
51 "testsuites",
52 {
53 "xmlns": "https://raw.githubusercontent.com/windyroad/JUnit-Schema/master/JUnit.xsd"
54 },
55)
56testsuite = SubElement(
57 testsuites,
58 "testsuite",
59 {
60 "name": "GDB",
61 "package": "package",
62 "id": "0",
63 "time": "1",
64 "timestamp": now,
65 "hostname": "hostname",
66 },
67)
68SubElement(testsuite, "properties")
69
e9ba7f91
SM
70cur_test = None
71
bcd0bdf1 72for line in sys.stdin:
e9ba7f91
SM
73 m = running_re.match(line)
74 if m:
75 cur_test = m.group(1)
76 continue
77
78 m = error_re.match(line)
79 if m:
80 test = cur_test if cur_test else "<unknown test>"
81 msg = m.group(1)
82 print("ERROR: {} - {}".format(test, msg), file=sys.stderr)
83 error_count += 1
84
85 testcase_name = test
86 testcase = SubElement(
87 testsuite,
88 "testcase",
89 {"name": testcase_name, "classname": "classname", "time": "0"},
90 )
91 SubElement(testcase, "error", {"type": "ERROR"})
92
bcd0bdf1
SM
93 m = line_re.match(line)
94 if not m:
95 continue
96
97 state, exp_filename, test_name = m.groups()
98
99 testcase_name = "{} - {}".format(exp_filename, test_name)
100
101 testcase = SubElement(
102 testsuite,
103 "testcase",
104 {"name": testcase_name, "classname": "classname", "time": "0"},
105 )
106
107 if state in ("PASS", "XFAIL", "KFAIL"):
108 pass_count += 1
109 elif state in ("FAIL", "XPASS"):
6e30c08a 110 print("{}: {}".format(state, testcase_name), file=sys.stderr)
bcd0bdf1
SM
111 fail_count += 1
112 SubElement(testcase, "failure", {"type": state})
113 elif state in ("UNRESOLVED", "DUPLICATE"):
6e30c08a 114 print("{}: {}".format(state, testcase_name), file=sys.stderr)
bcd0bdf1
SM
115 error_count += 1
116 SubElement(testcase, "error", {"type": state})
117 elif state in ("UNTESTED", "UNSUPPORTED"):
118 skip_count += 1
119 SubElement(testcase, "skipped")
120 else:
121 assert False
122
e9ba7f91 123testsuite.attrib["tests"] = str(pass_count + fail_count + skip_count + error_count)
bcd0bdf1
SM
124testsuite.attrib["failures"] = str(fail_count)
125testsuite.attrib["skipped"] = str(skip_count)
126testsuite.attrib["errors"] = str(error_count)
127
128SubElement(testsuite, "system-out")
129SubElement(testsuite, "system-err")
130
131et = ElementTree(testsuites)
132et.write(sys.stdout, encoding="unicode")
133
134sys.exit(1 if fail_count > 0 or error_count > 0 else 0)
91ba8aa1
MJ
135EOF
136
bcd0bdf1 137 python3 sum2junit.py < "$infile" > "$outfile"
91ba8aa1
MJ
138}
139
140# Required variables
141WORKSPACE=${WORKSPACE:-}
142
e901a9db 143platform=${platform:-}
91ba8aa1
MJ
144conf=${conf:-}
145build=${build:-}
748dd275 146target_board=${target_board:-unix}
91ba8aa1
MJ
147
148
149SRCDIR="$WORKSPACE/src/binutils-gdb"
150TMPDIR="$WORKSPACE/tmp"
151PREFIX="/build"
152
f0f8dde0
SM
153function use_ccache()
154{
155 case "$platform" in
156 macos-*)
157 return 1
158 ;;
159 *)
160 return 0
161 ;;
162 esac
163}
164
91ba8aa1
MJ
165# Create tmp directory
166rm -rf "$TMPDIR"
167mkdir -p "$TMPDIR"
168
169export TMPDIR
f561bfa0
SM
170export CFLAGS="-O2 -g -fsanitize=address"
171export CXXFLAGS="-O2 -g -fsanitize=address -D_GLIBCXX_DEBUG=1"
91ba8aa1 172export LDFLAGS="-fsanitize=address"
f0f8dde0
SM
173export CC="cc"
174export CXX="c++"
175
176if use_ccache; then
177 CC="ccache $CC"
178 CXX="ccache $CXX"
179fi
180
181# To make GDB find libcc1.so
182export LD_LIBRARY_PATH="/usr/lib/gcc/x86_64-linux-gnu/11:${LD_LIBRARY_PATH:-}"
91ba8aa1
MJ
183
184# Set platform variables
f0f8dde0
SM
185export TAR=tar
186export MAKE=make
187
e901a9db 188case "$platform" in
f0f8dde0
SM
189macos-*)
190 export NPROC="getconf _NPROCESSORS_ONLN"
191 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
192 export CPPFLAGS="-I/opt/local/include"
193 export LDFLAGS="-L/opt/local/lib"
194 export PYTHON="python3.9"
195 export PYTHON_CONFIG="python3.9-config"
196 ;;
91ba8aa1 197*)
91ba8aa1
MJ
198 export NPROC=nproc
199 ;;
200esac
201
202# Print build env details
203print_os || true
204print_tooling || true
205
83068918
SM
206if use_ccache; then
207 ccache -c
208fi
209
da3d3606
SM
210# This job has been seen generating cores in /tmp, filling and and causing
211# problems. Remove any leftover core from a previous job.
212rm /tmp/core.* || true
213
91ba8aa1
MJ
214# Enter the source directory
215cd "$SRCDIR"
216
217# Run bootstrap in the source directory prior to configure
218#./bootstrap
219
220# Get source version from configure script
221#eval "$(grep '^PACKAGE_VERSION=' ./configure)"
222#PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
223
224# Set configure options and environment variables for each build
225# configuration.
226CONF_OPTS=("--prefix=$PREFIX")
227
228case "$conf" in
229*)
230 echo "Standard configuration"
231
232 # Use system tools
1c76805c 233 CONF_OPTS+=("--disable-binutils" "--disable-ld" "--disable-gold" "--disable-gas" "--disable-sim" "--disable-gprof" "--disable-gprofng")
91ba8aa1
MJ
234
235 # Use system libs
236 CONF_OPTS+=("--with-system-readline" "--with-system-zlib")
237
238 # Enable optional features
6549901d 239 CONF_OPTS+=("--enable-targets=all" "--with-expat=yes" "--with-python=python3" "--with-guile" "--enable-libctf")
91ba8aa1 240
b91b655f 241 CONF_OPTS+=("--enable-build-warnings" "--enable-gdb-build-warnings" "--enable-unit-tests" "--enable-ubsan")
91ba8aa1
MJ
242
243 ;;
244esac
245
f0f8dde0
SM
246case "$platform" in
247macos-*)
248 CONF_OPTS+=("--disable-werror")
249 ;;
250esac
251
91ba8aa1
MJ
252# Build type
253# oot : out-of-tree build
254# dist : build via make dist
255# oot-dist: build via make dist out-of-tree
256# * : normal tree build
257#
258# Make sure to move to the build directory and run configure
259# before continuing.
260case "$build" in
261*)
262 echo "Out of tree build"
263
264 # Create and enter a temporary build directory
265 builddir=$(mktemp -d)
266 cd "$builddir"
267
268 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
269 ;;
270esac
271
272# We are now inside a configured build directory
273
274# BUILD!
f0f8dde0 275$MAKE -j "$($NPROC)" V=1 MAKEINFO=true
91ba8aa1
MJ
276
277# Install in the workspace
593cd35e 278$MAKE install DESTDIR="$WORKSPACE" MAKEINFO=true
91ba8aa1 279
f0f8dde0
SM
280case "$platform" in
281macos-*)
282 # Stop there, don't run tests on macOS.
283 exit 0
284 ;;
285esac
286
748dd275
SM
287case "$target_board" in
288unix | native-gdbserver | native-extended-gdbserver)
289 RUNTESTFLAGS="--target_board=$target_board"
290 ;;
291
292*)
293 echo "Unknown \$target_board value: $target_board"
294 exit 1
295 ;;
296esac
297
bcd0bdf1
SM
298# Run tests, don't fail now, we know that "make check" is going to fail,
299# since some tests don't pass.
d0568940
SM
300$MAKE -C gdb/testsuite site.exp
301# shellcheck disable=SC2016
302echo 'set gdb_test_timeout [expr 5 * $timeout]' >> gdb/testsuite/site.exp
f8743131 303$MAKE -C gdb --keep-going check RUNTESTFLAGS="$RUNTESTFLAGS" || true
91ba8aa1
MJ
304
305# Copy the dejagnu test results for archiving before cleaning the build dir
306mkdir "${WORKSPACE}/results"
f5dbc8e5 307cp gdb/testsuite/gdb.log "${WORKSPACE}/results/"
91ba8aa1 308cp gdb/testsuite/gdb.sum "${WORKSPACE}/results/"
bcd0bdf1 309
748dd275
SM
310# Filter out some known failures. There is one file per target board.
311cat <<'EOF' > known-failures-unix
d05fa6f1
SM
312FAIL: gdb.ada/mi_var_access.exp: Create varobj (unexpected output)
313FAIL: gdb.ada/mi_var_access.exp: update at stop 2 (unexpected output)
314FAIL: gdb.ada/packed_array_assign.exp: value of pra
795db243
SM
315FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_end
316FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_start
317FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_fatal_msg
318FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: [expr $internal_error_msg_count == 2]
319FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_end
320FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_start
321FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_fatal_msg
322FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: [expr $internal_error_msg_count == 2]
323FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_end
324FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_start
325FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_fatal_msg
326FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: [expr $internal_error_msg_count == 2]
d05fa6f1
SM
327FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: disassemble function with corefile and without a binary
328FAIL: gdb.base/ending-run.exp: step out of main
329FAIL: gdb.base/ending-run.exp: step to end of run
330FAIL: gdb.base/gdb-sigterm.exp: pass=16: expect eof (GDB internal error)
795db243 331FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
d05fa6f1
SM
332FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
333FAIL: gdb.compile/compile-cplus.exp: bt
334FAIL: gdb.compile/compile-cplus.exp: compile code extern int globalshadow; globalshadow += 5;
335FAIL: gdb.compile/compile-cplus.exp: print 'compile-cplus.c'::globalshadow
336FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var ()
337FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var ()
338FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<unsigned long> (1))
339FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<unsigned long> (1))
340FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<int> (1))
341FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<int> (1))
342FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<float> (1))
343FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<float> (1))
344FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<void *> (a))
345FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<void *> (a))
346FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*a)
347FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*a)
348FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*ac)
349FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*ac)
350FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (1)
351FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (1)
352FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (1, 2)
353FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (1, 2)
354FAIL: gdb.compile/compile-cplus-method.exp: compile code A::get_1 (a->get_var ())
355FAIL: gdb.compile/compile-cplus-method.exp: result of compile code A::get_1 (a->get_var ())
356FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (a->get_var () - 16)
357FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (a->get_var () - 16)
358FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (a->get_var (), A::get_1 (2))
359FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (a->get_var (), A::get_1 (2))
360FAIL: gdb.compile/compile-cplus-method.exp: compile code get_value (a)
361FAIL: gdb.compile/compile-cplus-method.exp: result of compile code get_value (a)
362FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->*pmf) (1)
363FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->*pmf) (1)
364FAIL: gdb.compile/compile-cplus-method.exp: compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
365FAIL: gdb.compile/compile-cplus-method.exp: result of compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
366FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->**pmf_p) (1)
367FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->**pmf_p) (1)
368FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit ()
369FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit2 ()
812328f9 370FAIL: gdb.cp/no-dmgl-verbose.exp: gdb_breakpoint: set breakpoint at 'f(std::string)'
d05fa6f1
SM
371FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1
372FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
373FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3
374FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
795db243 375FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
d05fa6f1
SM
376FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter (unexpected output)
377FAIL: gdb.threads/attach-stopped.exp: threaded: attach2 to stopped bt
378FAIL: gdb.threads/clone-attach-detach.exp: bg attach 2: attach (timeout)
379FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
380FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
381FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint:hw: continue
382FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: signal SIGUSR1
383FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: signal SIGUSR1
384FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: signal SIGTRAP reaches handler
385FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
386UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40
387UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: runto: run to foo.adb:40 (eof)
388UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40 (eof)
389UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40
390UNRESOLVED: gdb.ada/exprs.exp: runto: run to p.adb:40 (eof)
391UNRESOLVED: gdb.ada/exprs.exp: Long_Long_Integer ** Y
392UNRESOLVED: gdb.ada/exprs.exp: long_float'min
393UNRESOLVED: gdb.ada/exprs.exp: long_float'max
394UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40 (eof)
395UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test
396UNRESOLVED: gdb.ada/packed_array_assign.exp: runto: run to aggregates.run_test (eof)
397UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test (eof)
398UNRESOLVED: gdb.ada/packed_array_assign.exp: value of pra
399UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1) := pr
400UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1)
401UNRESOLVED: gdb.ada/packed_array_assign.exp: value of npr
402UNRESOLVED: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
795db243 403UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
d05fa6f1
SM
404UNRESOLVED: gdb.python/py-disasm.exp: global_disassembler=GlobalPreInfoDisassembler: disassemble main
405EOF
406
407cat <<'EOF' > known-failures-re-unix
408FAIL: gdb.base/gdb-sigterm.exp: pass=[0-9]+: expect eof \(GDB internal error\)
409FAIL: gdb.threads/step-N-all-progress.exp: non-stop=on: target-non-stop=on: next .*
795db243
SM
410EOF
411
748dd275 412cat <<'EOF' > known-failures-native-gdbserver
748dd275
SM
413DUPLICATE: gdb.base/cond-eval-mode.exp: awatch: awatch global
414DUPLICATE: gdb.base/cond-eval-mode.exp: awatch: continue
415DUPLICATE: gdb.base/cond-eval-mode.exp: break: break foo
416DUPLICATE: gdb.base/cond-eval-mode.exp: break: continue
417DUPLICATE: gdb.base/cond-eval-mode.exp: hbreak: continue
418DUPLICATE: gdb.base/cond-eval-mode.exp: hbreak: hbreak foo
419DUPLICATE: gdb.base/cond-eval-mode.exp: rwatch: continue
420DUPLICATE: gdb.base/cond-eval-mode.exp: rwatch: rwatch global
421DUPLICATE: gdb.base/cond-eval-mode.exp: watch: continue
422DUPLICATE: gdb.base/cond-eval-mode.exp: watch: watch global
748dd275
SM
423DUPLICATE: gdb.trace/circ.exp: check whether setting trace buffer size is supported
424DUPLICATE: gdb.trace/ftrace-lock.exp: successfully compiled posix threads test case
425DUPLICATE: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
426DUPLICATE: gdb.trace/signal.exp: get integer valueof "counter"
427DUPLICATE: gdb.trace/status-stop.exp: buffer_full_tstart: tstart
428DUPLICATE: gdb.trace/status-stop.exp: tstart_tstop_tstart: tstart
429DUPLICATE: gdb.trace/tfind.exp: 8.17: tfind none
430DUPLICATE: gdb.trace/trace-buffer-size.exp: set tracepoint at test_function
431DUPLICATE: gdb.trace/trace-buffer-size.exp: tstart
432DUPLICATE: gdb.trace/trace-mt.exp: successfully compiled posix threads test case
d05fa6f1
SM
433FAIL: gdb.ada/mi_var_access.exp: Create varobj (unexpected output)
434FAIL: gdb.ada/mi_var_access.exp: update at stop 2 (unexpected output)
435FAIL: gdb.ada/packed_array_assign.exp: value of pra
436FAIL: gdb.arch/ftrace-insn-reloc.exp: runto: run to main
748dd275
SM
437FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_end
438FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_start
439FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_fatal_msg
440FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: [expr $internal_error_msg_count == 2]
441FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_end
442FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_start
443FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_fatal_msg
444FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: [expr $internal_error_msg_count == 2]
445FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_end
446FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_start
447FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_fatal_msg
448FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: [expr $internal_error_msg_count == 2]
449FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
450FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
451FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
452FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
453FAIL: gdb.base/compare-sections.exp: compare-sections .text
454FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
d05fa6f1
SM
455FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: disassemble function with corefile and without a binary
456FAIL: gdb.base/ending-run.exp: step out of main
457FAIL: gdb.base/ending-run.exp: step to end of run
748dd275
SM
458FAIL: gdb.base/interrupt-daemon.exp: bg: continue& (timeout)
459FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process (timeout)
460FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt (timeout)
461FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process (timeout)
d05fa6f1
SM
462FAIL: gdb.base/options.exp: test-backtrace: cmd complete "backtrace "
463FAIL: gdb.base/options.exp: test-backtrace: tab complete "backtrace " (clearing input line) (timeout)
464FAIL: gdb.base/range-stepping.exp: step over func: next: vCont;r=2
465FAIL: gdb.compile/compile-cplus.exp: bt
466FAIL: gdb.compile/compile-cplus.exp: compile code extern int globalshadow; globalshadow += 5;
467FAIL: gdb.compile/compile-cplus.exp: print 'compile-cplus.c'::globalshadow
468FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var ()
469FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var ()
470FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<unsigned long> (1))
471FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<unsigned long> (1))
472FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<int> (1))
473FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<int> (1))
474FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<float> (1))
475FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<float> (1))
476FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<void *> (a))
477FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<void *> (a))
478FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*a)
479FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*a)
480FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*ac)
481FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*ac)
482FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (1)
483FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (1)
484FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (1, 2)
485FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (1, 2)
486FAIL: gdb.compile/compile-cplus-method.exp: compile code A::get_1 (a->get_var ())
487FAIL: gdb.compile/compile-cplus-method.exp: result of compile code A::get_1 (a->get_var ())
488FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (a->get_var () - 16)
489FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (a->get_var () - 16)
490FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (a->get_var (), A::get_1 (2))
491FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (a->get_var (), A::get_1 (2))
492FAIL: gdb.compile/compile-cplus-method.exp: compile code get_value (a)
493FAIL: gdb.compile/compile-cplus-method.exp: result of compile code get_value (a)
494FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->*pmf) (1)
495FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->*pmf) (1)
496FAIL: gdb.compile/compile-cplus-method.exp: compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
497FAIL: gdb.compile/compile-cplus-method.exp: result of compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
498FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->**pmf_p) (1)
499FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->**pmf_p) (1)
500FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit ()
501FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit2 ()
812328f9 502FAIL: gdb.cp/no-dmgl-verbose.exp: gdb_breakpoint: set breakpoint at 'f(std::string)'
d05fa6f1
SM
503FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1
504FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
505FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3
506FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
507FAIL: gdb.dwarf2/clztest.exp: runto: run to main
748dd275
SM
508FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
509FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
510FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
748dd275 511FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
d05fa6f1
SM
512FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: signal SIGUSR1
513FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: signal SIGUSR1
514FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: signal SIGTRAP reaches handler
748dd275
SM
515FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to end (timeout)
516FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
517FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
518FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
519FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
d05fa6f1 520FAIL: gdb.trace/change-loc.exp: 1 ftrace: runto: run to main
748dd275
SM
521FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
522FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
523FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
524FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed (unload)
525FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending (unload)
526FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 1 (the program is no longer running)
527FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 2 (the program is no longer running)
528FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 3 (the program is no longer running)
529FAIL: gdb.trace/change-loc.exp: 2 ftrace: run to main (the program exited)
530FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
531FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
532FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
533FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with three locations
534FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - installed (unload)
535FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - pending (unload)
536FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstart
537FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
538FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
539FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
540FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
541FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed (unload)
542FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending (unload)
d05fa6f1 543FAIL: gdb.trace/change-loc.exp: InstallInTrace disabled: ftrace: runto: run to main
748dd275
SM
544FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
545FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
546FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
547FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
548FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
549FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
550FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
551FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
552FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
553FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
554FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
555FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
d05fa6f1
SM
556FAIL: gdb.trace/collection.exp: collect register locals collectively: run trace experiment: start trace experiment
557FAIL: gdb.trace/collection.exp: collect register locals collectively: run trace experiment: tfind test frame
748dd275
SM
558FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
559FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
560FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
561FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
562FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
563FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
564FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
565FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
566FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
567FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
568FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
569FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
570FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
571FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
572FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
d05fa6f1
SM
573FAIL: gdb.trace/ftrace.exp: runto: run to main
574FAIL: gdb.trace/ftrace-lock.exp: runto: run to main
748dd275
SM
575FAIL: gdb.trace/mi-trace-frame-collected.exp: tfile: -trace-frame-collected (unexpected output)
576FAIL: gdb.trace/mi-trace-frame-collected.exp: tfile: -trace-frame-collected --var-print-values 2 --comp-print-values --simple-values --registers-format x --memory-contents (unexpected output)
d05fa6f1
SM
577FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified (unexpected output)
578FAIL: gdb.trace/pending.exp: ftrace action_resolved: runto: run to main
579FAIL: gdb.trace/pending.exp: ftrace disconn_resolved: runto: run to main
580FAIL: gdb.trace/pending.exp: ftrace disconn: runto: run to main
581FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: runto: run to main
582FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: runto: run to main
748dd275
SM
583FAIL: gdb.trace/pending.exp: ftrace resolved: (the program exited)
584FAIL: gdb.trace/pending.exp: ftrace works: continue to marker (the program is no longer running)
585FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
586FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
587FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
588FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
589FAIL: gdb.trace/pending.exp: ftrace works: (the program exited)
590FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
591FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
d05fa6f1
SM
592FAIL: gdb.trace/range-stepping.exp: runto: run to main
593FAIL: gdb.trace/trace-break.exp: runto: run to main
594FAIL: gdb.trace/trace-condition.exp: runto: run to main
595FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: runto: run to main
596FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable trace: runto: run to main
597FAIL: gdb.trace/trace-mt.exp: runto: run to main
598FAIL: gdb.trace/tspeed.exp: runto: run to main
748dd275
SM
599FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
600FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
601FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
602FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
d05fa6f1
SM
603FAIL: gdb.trace/unavailable.exp: collect globals: tfile: <unavailable> is not the same as 0 in array element repetitions
604FAIL: gdb.trace/unavailable.exp: collect globals: <unavailable> is not the same as 0 in array element repetitions
748dd275
SM
605FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
606FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
607FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
608FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: print locd
609FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: print locf
610FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
611FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: print locd
612FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: print locf
613FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
614FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
748dd275 615KPASS: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint:sw: continue (PRMS gdb/28375)
d05fa6f1
SM
616UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40
617UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: runto: run to foo.adb:40 (eof)
618UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40
619UNRESOLVED: gdb.ada/exprs.exp: runto: run to p.adb:40 (eof)
620UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test
621UNRESOLVED: gdb.ada/packed_array_assign.exp: runto: run to aggregates.run_test (eof)
622UNRESOLVED: gdb.ada/exprs.exp: Long_Long_Integer ** Y
623UNRESOLVED: gdb.ada/exprs.exp: long_float'min
624UNRESOLVED: gdb.ada/exprs.exp: long_float'max
625UNRESOLVED: gdb.ada/packed_array_assign.exp: value of pra
626UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1) := pr
627UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1)
628UNRESOLVED: gdb.ada/packed_array_assign.exp: value of npr
629UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40 (eof)
630UNRESOLVED: gdb.ada/array_return.exp: gdb_breakpoint: set breakpoint at main (eof)
631UNRESOLVED: gdb.ada/array_subscript_addr.exp: gdb_breakpoint: set breakpoint at p.adb:27 (eof)
632UNRESOLVED: gdb.ada/cond_lang.exp: gdb_breakpoint: set breakpoint at c_function (eof)
633UNRESOLVED: gdb.ada/dyn_loc.exp: gdb_breakpoint: set breakpoint at pack.adb:25 (eof)
634UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40 (eof)
635UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test (eof)
636UNRESOLVED: gdb.ada/ref_tick_size.exp: gdb_breakpoint: set breakpoint at p.adb:26 (eof)
637UNRESOLVED: gdb.ada/set_wstr.exp: gdb_breakpoint: set breakpoint at a.adb:23 (eof)
638UNRESOLVED: gdb.ada/taft_type.exp: gdb_breakpoint: set breakpoint at p.adb:22 (eof)
639UNRESOLVED: gdb.base/libsegfault.exp: gdb emits custom handler warning
640EOF
641
642cat <<'EOF' > known-failures-re-native-gdbserver
748dd275
SM
643EOF
644
645cat <<'EOF' > known-failures-native-extended-gdbserver
748dd275
SM
646DUPLICATE: gdb.base/cond-eval-mode.exp: awatch: awatch global
647DUPLICATE: gdb.base/cond-eval-mode.exp: awatch: continue
648DUPLICATE: gdb.base/cond-eval-mode.exp: break: break foo
649DUPLICATE: gdb.base/cond-eval-mode.exp: break: continue
650DUPLICATE: gdb.base/cond-eval-mode.exp: hbreak: continue
651DUPLICATE: gdb.base/cond-eval-mode.exp: hbreak: hbreak foo
652DUPLICATE: gdb.base/cond-eval-mode.exp: rwatch: continue
653DUPLICATE: gdb.base/cond-eval-mode.exp: rwatch: rwatch global
654DUPLICATE: gdb.base/cond-eval-mode.exp: watch: continue
655DUPLICATE: gdb.base/cond-eval-mode.exp: watch: watch global
748dd275
SM
656DUPLICATE: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
657DUPLICATE: gdb.trace/circ.exp: check whether setting trace buffer size is supported
658DUPLICATE: gdb.trace/ftrace-lock.exp: successfully compiled posix threads test case
659DUPLICATE: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
660DUPLICATE: gdb.trace/signal.exp: get integer valueof "counter"
661DUPLICATE: gdb.trace/status-stop.exp: buffer_full_tstart: tstart
662DUPLICATE: gdb.trace/status-stop.exp: tstart_tstop_tstart: tstart
663DUPLICATE: gdb.trace/tfind.exp: 8.17: tfind none
664DUPLICATE: gdb.trace/trace-buffer-size.exp: set tracepoint at test_function
665DUPLICATE: gdb.trace/trace-buffer-size.exp: tstart
666DUPLICATE: gdb.trace/trace-mt.exp: successfully compiled posix threads test case
667DUPLICATE: gdb.trace/tspeed.exp: advance through tracing (the program is no longer running)
668DUPLICATE: gdb.trace/tspeed.exp: advance to trace begin (the program is no longer running)
669DUPLICATE: gdb.trace/tspeed.exp: check on trace status
670DUPLICATE: gdb.trace/tspeed.exp: print iters = init_iters
d05fa6f1 671DUPLICATE: gdb.trace/tspeed.exp: runto: run to main
748dd275 672DUPLICATE: gdb.trace/tspeed.exp: start trace experiment
d05fa6f1
SM
673FAIL: gdb.ada/mi_var_access.exp: Create varobj (unexpected output)
674FAIL: gdb.ada/mi_var_access.exp: update at stop 2 (unexpected output)
675FAIL: gdb.ada/packed_array_assign.exp: value of pra
676FAIL: gdb.arch/ftrace-insn-reloc.exp: runto: run to main
748dd275 677FAIL: gdb.base/a2-run.exp: run "a2-run" with shell (timeout)
d05fa6f1
SM
678FAIL: gdb.base/attach.exp: do_command_attach_tests: gdb_spawn_attach_cmdline: info thread (no thread)
679FAIL: gdb.base/attach.exp: do_command_attach_tests: gdb_spawn_attach_cmdline: start gdb with --pid
748dd275
SM
680FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached (the program is no longer running)
681FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: reach
682FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached (the program is no longer running)
683FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: reach
684FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: seen displacement message as NONZERO
685FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached (the program is no longer running)
686FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: reach
687FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached (the program is no longer running)
688FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: reach
689FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: reach-(_dl_debug_state|dl_main)-3: seen displacement message as NONZERO
690FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
691FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
692FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_end
693FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_bt_start
694FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: $saw_fatal_msg
695FAIL: gdb.base/bt-on-fatal-signal.exp: BUS: [expr $internal_error_msg_count == 2]
696FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_end
697FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_bt_start
698FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: $saw_fatal_msg
699FAIL: gdb.base/bt-on-fatal-signal.exp: FPE: [expr $internal_error_msg_count == 2]
700FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_end
701FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_bt_start
702FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: $saw_fatal_msg
703FAIL: gdb.base/bt-on-fatal-signal.exp: SEGV: [expr $internal_error_msg_count == 2]
704FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
705FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
706FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
d05fa6f1
SM
707FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: disassemble function with corefile and without a binary
708FAIL: gdb.base/ending-run.exp: step out of main
709FAIL: gdb.base/ending-run.exp: step to end of run
748dd275
SM
710FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
711FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
712FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
713FAIL: gdb.base/interrupt-daemon.exp: bg: continue& (timeout)
714FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process (timeout)
715FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt (timeout)
716FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process (timeout)
d05fa6f1 717FAIL: gdb.base/range-stepping.exp: step over func: next: vCont;r=2
748dd275 718FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
d05fa6f1 719FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = off; run_args = *.unique-extension: first argument not expanded
748dd275
SM
720FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = $TEST: testing first argument
721FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded
722FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
d05fa6f1
SM
723FAIL: gdb.compile/compile-cplus.exp: bt
724FAIL: gdb.compile/compile-cplus.exp: compile code extern int globalshadow; globalshadow += 5;
725FAIL: gdb.compile/compile-cplus.exp: print 'compile-cplus.c'::globalshadow
726FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var ()
727FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var ()
728FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<unsigned long> (1))
729FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<unsigned long> (1))
730FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<int> (1))
731FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<int> (1))
732FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<float> (1))
733FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<float> (1))
734FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (static_cast<void *> (a))
735FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (static_cast<void *> (a))
736FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*a)
737FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*a)
738FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var (*ac)
739FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var (*ac)
740FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (1)
741FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (1)
742FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (1, 2)
743FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (1, 2)
744FAIL: gdb.compile/compile-cplus-method.exp: compile code A::get_1 (a->get_var ())
745FAIL: gdb.compile/compile-cplus-method.exp: result of compile code A::get_1 (a->get_var ())
746FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1 (a->get_var () - 16)
747FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1 (a->get_var () - 16)
748FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2 (a->get_var (), A::get_1 (2))
749FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2 (a->get_var (), A::get_1 (2))
750FAIL: gdb.compile/compile-cplus-method.exp: compile code get_value (a)
751FAIL: gdb.compile/compile-cplus-method.exp: result of compile code get_value (a)
752FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->*pmf) (1)
753FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->*pmf) (1)
754FAIL: gdb.compile/compile-cplus-method.exp: compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
755FAIL: gdb.compile/compile-cplus-method.exp: result of compile code pmf = &A::get_var1; var = (a->*pmf) (2); pmf = &A::get_var
756FAIL: gdb.compile/compile-cplus-method.exp: compile code (a->**pmf_p) (1)
757FAIL: gdb.compile/compile-cplus-method.exp: result of compile code (a->**pmf_p) (1)
758FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit ()
759FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit2 ()
748dd275
SM
760FAIL: gdb.cp/annota2.exp: annotate-quit
761FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
762FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
763FAIL: gdb.cp/annota2.exp: delete bps
764FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
765FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
766FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
812328f9 767FAIL: gdb.cp/no-dmgl-verbose.exp: gdb_breakpoint: set breakpoint at 'f(std::string)'
d05fa6f1
SM
768FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1
769FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
770FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3
771FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
748dd275
SM
772FAIL: gdb.gdb/unittest.exp: executable loaded: maintenance selftest, failed none
773FAIL: gdb.gdb/unittest.exp: no executable loaded: maintenance selftest, failed none
dfa2dcd2 774FAIL: gdb.gdb/unittest.exp: reversed initialization: maintenance selftest, failed none
d05fa6f1
SM
775FAIL: gdb.guile/scm-ports.exp: buffered: test byte at sp, before flush
776FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter (unexpected output)
748dd275
SM
777FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console (timeout)
778FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4 (unexpected output)
d05fa6f1 779FAIL: gdb.multi/remove-inferiors.exp: runto: run to main
748dd275
SM
780FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
781FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
782FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
783FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
d05fa6f1 784FAIL: gdb.threads/access-mem-running-thread-exit.exp: non-stop: access mem (print global_var after writing again, inf=2, iter=1)
748dd275 785FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
d05fa6f1
SM
786FAIL: gdb.threads/attach-non-stop.exp: target-non-stop=off: non-stop=off: cmd=attach&: all threads running
787FAIL: gdb.threads/attach-non-stop.exp: target-non-stop=off: non-stop=off: cmd=attach&: detach
788FAIL: gdb.threads/attach-stopped.exp: threaded: attach2 to stopped bt
789FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: non-stop: runto: run to main
790FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: non-stop: runto: run to main
791FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: non-stop: runto: run to main
792FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: non-stop: runto: run to main
793FAIL: gdb.threads/gcore-stale-thread.exp: runto: run to main
794FAIL: gdb.threads/multi-create-ns-info-thr.exp: runto: run to main
748dd275
SM
795FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
796FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
797FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
d05fa6f1 798FAIL: gdb.threads/non-stop-fair-events.exp: runto: run to main
748dd275 799FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
d05fa6f1
SM
800FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: signal SIGUSR1
801FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: signal SIGUSR1
802FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: signal SIGTRAP reaches handler
803FAIL: gdb.threads/thread-execl.exp: non-stop: runto: run to main
748dd275 804FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to end (timeout)
d05fa6f1 805FAIL: gdb.threads/thread-specific-bp.exp: non-stop: runto: run to main
748dd275
SM
806FAIL: gdb.threads/tls.exp: print a_thread_local
807FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
808FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
809FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
d05fa6f1 810FAIL: gdb.trace/change-loc.exp: 1 ftrace: runto: run to main
748dd275
SM
811FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
812FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
813FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
814FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed (unload)
815FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending (unload)
816FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 1 (the program is no longer running)
817FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 2 (the program is no longer running)
818FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 3 (the program is no longer running)
819FAIL: gdb.trace/change-loc.exp: 2 ftrace: run to main (the program exited)
820FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
821FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
822FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
823FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with three locations
824FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - installed (unload)
825FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - pending (unload)
826FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstart
827FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
828FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
829FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
830FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
831FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed (unload)
832FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending (unload)
d05fa6f1 833FAIL: gdb.trace/change-loc.exp: InstallInTrace disabled: ftrace: runto: run to main
748dd275
SM
834FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
835FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
836FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
837FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
838FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
839FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
840FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
841FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
842FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
843FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
844FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
845FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
d05fa6f1
SM
846FAIL: gdb.trace/collection.exp: collect register locals collectively: run trace experiment: start trace experiment
847FAIL: gdb.trace/collection.exp: collect register locals collectively: run trace experiment: tfind test frame
748dd275
SM
848FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
849FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
850FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
851FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
852FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
853FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
854FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
855FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
856FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
857FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
858FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
859FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
860FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
861FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
862FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
d05fa6f1
SM
863FAIL: gdb.trace/ftrace.exp: runto: run to main
864FAIL: gdb.trace/ftrace-lock.exp: runto: run to main
748dd275
SM
865FAIL: gdb.trace/mi-trace-frame-collected.exp: tfile: -trace-frame-collected (unexpected output)
866FAIL: gdb.trace/mi-trace-frame-collected.exp: tfile: -trace-frame-collected --var-print-values 2 --comp-print-values --simple-values --registers-format x --memory-contents (unexpected output)
d05fa6f1
SM
867FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified (unexpected output)
868FAIL: gdb.trace/pending.exp: ftrace action_resolved: runto: run to main
869FAIL: gdb.trace/pending.exp: ftrace disconn_resolved: runto: run to main
870FAIL: gdb.trace/pending.exp: ftrace disconn: runto: run to main
871FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: runto: run to main
872FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: runto: run to main
748dd275
SM
873FAIL: gdb.trace/pending.exp: ftrace resolved: (the program exited)
874FAIL: gdb.trace/pending.exp: ftrace works: continue to marker (the program is no longer running)
875FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
876FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
877FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
878FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
879FAIL: gdb.trace/pending.exp: ftrace works: (the program exited)
880FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
881FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
d05fa6f1
SM
882FAIL: gdb.trace/range-stepping.exp: runto: run to main
883FAIL: gdb.trace/trace-break.exp: runto: run to main
884FAIL: gdb.trace/trace-condition.exp: runto: run to main
885FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: runto: run to main
886FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable trace: runto: run to main
887FAIL: gdb.trace/trace-mt.exp: runto: run to main
04047f44
SM
888FAIL: gdb.trace/tspeed.exp: gdb_fast_trace_speed_test: advance through tracing (the program is no longer running)
889FAIL: gdb.trace/tspeed.exp: gdb_fast_trace_speed_test: advance to trace begin (the program is no longer running)
890FAIL: gdb.trace/tspeed.exp: gdb_fast_trace_speed_test: start trace experiment
891FAIL: gdb.trace/tspeed.exp: gdb_slow_trace_speed_test: advance through tracing (the program is no longer running)
892FAIL: gdb.trace/tspeed.exp: gdb_slow_trace_speed_test: advance to trace begin (the program is no longer running)
893FAIL: gdb.trace/tspeed.exp: gdb_slow_trace_speed_test: start trace experiment
d05fa6f1
SM
894FAIL: gdb.trace/tspeed.exp: runto: run to main
895FAIL: gdb.trace/tspeed.exp: runto: run to main
748dd275
SM
896FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
897FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
898FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
899FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
d05fa6f1
SM
900FAIL: gdb.trace/unavailable.exp: collect globals: tfile: <unavailable> is not the same as 0 in array element repetitions
901FAIL: gdb.trace/unavailable.exp: collect globals: <unavailable> is not the same as 0 in array element repetitions
748dd275
SM
902FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
903FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
904FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
905FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: print locd
906FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: print locf
907FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
908FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: print locd
909FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: print locf
910FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
911FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
d05fa6f1
SM
912KPASS: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint:sw: continue (PRMS gdb/28375)
913UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40
914UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: runto: run to foo.adb:40 (eof)
915UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40
916UNRESOLVED: gdb.ada/exprs.exp: runto: run to p.adb:40 (eof)
917UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test
918UNRESOLVED: gdb.ada/packed_array_assign.exp: runto: run to aggregates.run_test (eof)
919UNRESOLVED: gdb.ada/exprs.exp: Long_Long_Integer ** Y
920UNRESOLVED: gdb.ada/exprs.exp: long_float'min
921UNRESOLVED: gdb.ada/exprs.exp: long_float'max
922UNRESOLVED: gdb.ada/packed_array_assign.exp: value of pra
923UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1) := pr
924UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra(1)
925UNRESOLVED: gdb.ada/packed_array_assign.exp: value of npr
926UNRESOLVED: gdb.ada/arrayptr.exp: scenario=all: gdb_breakpoint: set breakpoint at foo.adb:40 (eof)
927UNRESOLVED: gdb.ada/array_return.exp: gdb_breakpoint: set breakpoint at main (eof)
928UNRESOLVED: gdb.ada/array_subscript_addr.exp: gdb_breakpoint: set breakpoint at p.adb:27 (eof)
929UNRESOLVED: gdb.ada/cond_lang.exp: gdb_breakpoint: set breakpoint at c_function (eof)
930UNRESOLVED: gdb.ada/dyn_loc.exp: gdb_breakpoint: set breakpoint at pack.adb:25 (eof)
931UNRESOLVED: gdb.ada/exprs.exp: gdb_breakpoint: set breakpoint at p.adb:40 (eof)
932UNRESOLVED: gdb.ada/packed_array_assign.exp: gdb_breakpoint: set breakpoint at aggregates.run_test (eof)
933UNRESOLVED: gdb.ada/ref_tick_size.exp: gdb_breakpoint: set breakpoint at p.adb:26 (eof)
934UNRESOLVED: gdb.ada/set_wstr.exp: gdb_breakpoint: set breakpoint at a.adb:23 (eof)
935UNRESOLVED: gdb.ada/taft_type.exp: gdb_breakpoint: set breakpoint at p.adb:22 (eof)
748dd275 936UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
748dd275 937UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach (pass 2), pending signal catch
d05fa6f1
SM
938EOF
939
940cat <<'EOF' > known-failures-re-native-extended-gdbserver
941FAIL: gdb.threads/attach-many-short-lived-threads.exp: .*
748dd275
SM
942EOF
943
944known_failures_file="known-failures-${target_board}"
d05fa6f1
SM
945known_failures_re_file="known-failures-re-${target_board}"
946grep --invert-match --fixed-strings --file="$known_failures_file" "${WORKSPACE}/results/gdb.sum" | \
947 grep --invert-match --extended-regexp --file="$known_failures_re_file" > "${WORKSPACE}/results/gdb.filtered.sum"
e9ba7f91 948grep --extended-regexp --regexp="^(FAIL|XPASS|UNRESOLVED|DUPLICATE|ERROR):" "${WORKSPACE}/results/gdb.filtered.sum" > "${WORKSPACE}/results/gdb.fail.sum" || true
795db243 949
f204fdf1
SM
950# For informational purposes: check if some known failure lines did not appear
951# in the gdb.sum.
952echo "Known failures that don't appear in gdb.sum:"
97e9c4c3 953while read -r line; do
f204fdf1
SM
954 if ! grep --silent --fixed-strings "$line" "${WORKSPACE}/results/gdb.sum"; then
955 echo "$line"
956 fi
3837269d 957done < "$known_failures_file" > "${WORKSPACE}/results/known-failures-not-found.sum"
f204fdf1 958
bcd0bdf1
SM
959# Convert results to JUnit format.
960failed_tests=0
795db243 961sum2junit "${WORKSPACE}/results/gdb.filtered.sum" "${WORKSPACE}/results/gdb.xml" || failed_tests=1
91ba8aa1
MJ
962
963# Clean the build directory
964$MAKE clean
965
91ba8aa1
MJ
966# Exit with failure if any of the tests failed
967exit $failed_tests
968
969# EOF
This page took 0.06649 seconds and 4 git commands to generate.