]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/testsuite/binutils-all/cxxfilt.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / binutils / testsuite / binutils-all / cxxfilt.exp
1 # Copyright (C) 2018-2021 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 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
17 proc 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.
34 test_cxxfilt {--no-strip-underscores} \
35 "_Z1fIvJiELb0EEvPDOT1_EFT_DpT0_E" \
36 "void f.void, int, false.(void (.)(int) noexcept(false))*"
37
38 test_cxxfilt {--format=gnu-v3 --no-strip-underscores} \
39 "_Z14int_if_addableI1YERiP1AIXszpldecvPT_Li0EdecvS4_Li0EEE" \
40 "int& int_if_addable.Y.(A.sizeof ((.((Y.)(0))).(.((Y.)(0))))..)*"
41
42 test_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...............)*"