[AArch64][gas] Add -mcpu support for Arm Ares
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / cxxfilt.exp
CommitLineData
82704155 1# Copyright (C) 2018-2019 Free Software Foundation, Inc.
af03af8f
NC
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 3 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
16
17proc test_cxxfilt {options mangled_string demangled_string} {
18 global CXXFILT
19 global CXXFILTFLAGS
20
21 set testname "cxxfilt: demangling $mangled_string"
22 set got [binutils_run $CXXFILT "$options $CXXFILTFLAGS $mangled_string"]
23
24 if ![regexp $demangled_string $got] then {
25 fail "$testname"
26 verbose 0 "expected: $demangled_string"
27 return
28 }
29
30 pass $testname
31}
32
33# Mangled and demangled strings stolen from libiberty/testsuite/demangle-expected.
34test_cxxfilt {} \
4ae80ffc
SM
35 "AddAlignment__9ivTSolverUiP12ivInteractorP7ivTGlue" \
36 "ivTSolver::AddAlignment(unsigned int, ivInteractor ., ivTGlue .)*"
af03af8f 37
4ae80ffc
SM
38test_cxxfilt {--format=lucid} \
39 "__ct__12strstreambufFPFl_PvPFPv_v" \
40 "strstreambuf..(strstreambuf|_ct)(void .(.)(long), void (.)(void .))*"
af03af8f
NC
41
42test_cxxfilt {--no-recurse-limit} \
43 "Z3fooiPiPS_PS0_PS1_PS2_PS3_PS4_PS5_PS6_PS7_PS8_PS9_PSA_PSB_PSC_" \
44 "foo(int, int., int.., int..., int...., int....., int......, int......., int........, int........., int.........., int..........., int............, int............., int.............., int...............)*"
This page took 0.026642 seconds and 4 git commands to generate.