summaryrefslogtreecommitdiff
path: root/gas/testsuite/gas/i386/solaris/solaris.exp
blob: e5ad2e179a84ba6bffc588b08560a7bab7e5576a (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
# Copyright (C) 2019-2021 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.  

#
# Solaris i386 tests
#
proc gas_64_check { } {
    global NM
    global NMFLAGS

    set status [gas_host_run "$NM $NMFLAGS --help" ""]
    return [regexp "targets:.*x86-64" [lindex $status 1]];
}

if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check] && [istarget "*-*-solaris*"]] then {

    global ASFLAGS
    set old_ASFLAGS "$ASFLAGS"
    set ASFLAGS "$ASFLAGS --64 --defsym x86_64=1 --strip-local-absolute"

    run_dump_test "reloc64"
    run_dump_test "x86-64-mpx-branch-1"
    run_dump_test "x86-64-mpx-branch-2"

    run_dump_test "x86-64-relax-2"
    run_dump_test "x86-64-relax-3"

    run_dump_test "x86-64-jump"

    run_dump_test "x86-64-nop-3"
    run_dump_test "x86-64-nop-4"
    run_dump_test "x86-64-nop-5"

    set ASFLAGS "$old_ASFLAGS"
}