import gdb-1999-11-01 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / remote.exp
1 # Copyright (C) 1999 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20 if $tracelevel then {
21 strace $tracelevel
22 }
23
24 set prms_id 0
25 set bug_id 0
26
27
28 # test only on a remote target board
29 if {! [is_remote target]} {
30 return
31 }
32
33
34 set testfile "remote"
35 set srcfile ${testfile}.c
36 set binfile ${objdir}/${subdir}/${testfile}
37
38
39 proc gdb_load_timed {executable writesize} {
40 global test gdb_prompt
41 set test "timed download `[file tail $executable]' ($writesize)"
42
43 if {$writesize != ""} then {
44 send_gdb "set remotewritesize $writesize\n"
45 gdb_expect 5 {
46 -re ".*$gdb_prompt $" { }
47 timeout { fail "$test - setting remotewritesize" ; return }
48 }
49 }
50
51 set load_begin_time [clock clicks]
52 set result [gdb_load $executable]
53 set load_end_time [clock clicks]
54 if {$result < 0} then { fail "$test - loading executable"; return }
55 verbose "$test - time [expr ($load_end_time - $load_begin_time) / 1000] ms"
56 pass $test
57 }
58
59
60
61 # tests
62
63 gdb_start
64
65 set result [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}]
66 if {$result != "" } then {
67 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
68 }
69
70 gdb_load_timed $binfile {}
71 gdb_load_timed $binfile 50
72 gdb_load_timed $binfile 100
73 gdb_load_timed $binfile 200
74 gdb_load_timed $binfile 400
75
76 # extra tests for capable targets
77 if {[target_info gdb,big_rx_buffers] != ""} then {
78 gdb_load_timed $binfile 800
79 gdb_load_timed $binfile 8000
80 gdb_load_timed $binfile 80000
81 }
82
83 gdb_exit
This page took 0.042061 seconds and 4 git commands to generate.