summaryrefslogtreecommitdiff
path: root/binutils/testsuite/binutils-all/size.exp
blob: 02942e26dc1b29004fe6b6f82d4caf2f59cbdcc1 (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
#   Copyright (C) 1993-2023 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

# Please email any bugs, comments, and/or additions to this file to:
# bug-dejagnu@prep.ai.mit.edu

# This file was written by Rob Savoye <rob@cygnus.com>
# and rewritten by Ian Lance Taylor <ian@cygnus.com>

if ![is_remote host] {
    if {[which $SIZE] == 0} then {
	perror "$SIZE does not exist"
	return
    }
}

send_user "Version [binutil_version $SIZE]"


if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
    fail "size (assembling)"
} else {

    if [is_remote host] {
	set testfile [remote_download host tmpdir/bintest.o]
    } else {
	set testfile tmpdir/bintest.o
    }

    set dec "\[0-9\]+"
    set hex "\[0-9a-fA-F\]+"

    # Test size with no arguments

    set got [binutils_run $SIZE "$SIZEFLAGS $testfile"]

    set want "($dec)\[ 	\]+($dec)\[ 	\]+($dec)\[ 	\]+($dec)\[ 	\]+($hex)\[ 	\]+${testfile}"

    if ![regexp $want $got all text data bss dtot hextot] then {
	fail "size (no arguments)"
    } else {
	if {$text < 8 || $data < 4} then {
	    # The z80-coff port defaults to a "binary" like output
	    # file format which does not include a data section.
	    setup_xfail "z80-*-coff"
	    fail "size (no arguments)"
	} else {
	    pass "size (no arguments)"
	}
    }

    # Test size -A

    set got [binutils_run $SIZE "$SIZEFLAGS -A ${testfile}"]

    set want "${testfile}.*(text|TEXT|\\\$CODE\\\$|P)\[^\n\r\]*\[ 	\]($dec)\[ 	\]+$dec.*(\\.data|DATA|D_1)\[^\n\r\]*\[ 	\]($dec)\[ 	\]+$dec"

    if ![regexp $want $got all textname textsize dataname datasize] then {
	fail "size -A"
    } else {
	verbose "text size: $textsize"
	verbose "data size: $datasize"
	if {$textsize < 8 || $datasize < 4} then {
	    fail "size -A"
	} else {
	    pass "size -A"
	}
    }

    # Test size -G

    set got [binutils_run $SIZE "$SIZEFLAGS -G $testfile"]

    set want "($dec)\[ 	\]+($dec)\[ 	\]+($dec)\[ 	\]+($dec)\[ 	\]+${testfile}"

    if ![regexp $want $got all text data bss dtot hextot] then {
	fail "size -G"
    } else {
	if {$text < 8 || $data < 4} then {
	    # The z80-coff port defaults to a "binary" like output
	    # file format which does not include a data section.
	    setup_xfail "z80-*-coff"
	    fail "size -G"
	} else {
	    pass "size -G"
	}
    }

}