aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/run-with-two-mi-uis.exp
blob: 5981bc1ad24c1821ce25dca26fa1e4de288a4c79 (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
# Copyright 2023-2024 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Test doing an -exec-run while there are two MI UIs.

load_lib mi-support.exp

standard_testfile

if {[build_executable $testfile.exp $testfile ${srcfile} "debug"] == -1} {
    untested "failed to compile"
    return
}

# Run one configuration of the test.
#
# UI_TO_RUN is the UI that should issue the run command.

proc do_test { ui_to_run } {
    if {[mi_clean_restart $::binfile "separate-mi-tty"] != 0} {
	fail "could not start gdb"
	return
    }

    with_spawn_id $::gdb_main_spawn_id {
	lassign [create_mi_ui] second_mi_spawn_id second_mi_tty_name
    }

    with_spawn_id $second_mi_spawn_id {
	gdb_expect {
	    -re "=thread-group-added,id=\"i1\"\r\n$::mi_gdb_prompt$" {
		pass "consume"
	    }
	}
    }

    if { $ui_to_run == "first" } {
	set spawn_id_to_run $::mi_spawn_id
    } elseif { $ui_to_run == "second" } {
	set spawn_id_to_run $second_mi_spawn_id
    } else {
	error "invalid ui_to_run value"
    }

    with_spawn_id $spawn_id_to_run {
	# mi_runto_main implicitly verifies that the UI doing the -exec-run gets
	# the expected ^running record.
	mi_runto_main
    }
}

foreach_with_prefix ui_to_run {first second} {
    do_test $ui_to_run
}