blob: bdcd14757eeb233d2a2e5ddd8c4971a9e99b9c6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# file : tests/backtrace/testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
tclass = $cxx.target.class
tsys = $cxx.target.system
: basic
:
if ($tclass == 'linux' || $tclass == 'macos' || $tsys == 'freebsd')
{
# The stack frame line format varies among OSes. The only common thing is
# the '0x' function address prefix.
#
$* 2>>~%EOE%
%.*
%.*0x.*%
%.*
EOE
}
|