Update year range in copyright notice of binutils files
[binutils-gdb.git] / gprofng / testsuite / config / default.exp
blobe22d99bc42206f605c2f367f92beb0366d8cf09a
1 # Basic expect script for gprofng tests
2 # Copyright (C) 2021-2024 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
6 # This file is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
22 # The "make check" target in the Makefile passes in
23 # "CC=$(CC_FOR_TARGET)". But, if the user invokes runtest directly,
24 # these flags may not be set.
25 if {![info exists CC]} {
26 set CC [find_gcc]
28 if {![info exists CC_FOR_TARGET]} {
29 set CC_FOR_TARGET $CC
31 if {![info exists CFLAGS]} {
32 set CFLAGS "-g -O2"
35 remote_exec host "sh -c \"rm -rf tmpdir; mkdir -p tmpdir\""
36 if { "$CHECK_TARGET" == "check-install" } {
37 set ::env(GPROFNG) "$PREFIX/bin/gprofng"
38 } else {
39 # Make a temporary install dir to run gprofng from, and point at it
40 remote_exec host "sh -c \"$MAKE -C .. install-gprofng MAKEFLAGS=program_transform_name= DESTDIR=$BUILDDIR/tmpdir/root\""
41 set ::env(GPROFNG) [exec find $BUILDDIR/tmpdir -type f -name gprofng -perm -u+x | head -1]
43 set x [exec find $BUILDDIR/tmpdir -type d -name gprofng | head -1]
44 set ::env(LD_LIBRARY_PATH) "$x:$x/.."
46 set x [exec find $BUILDDIR/tmpdir -type f -name gprofng.rc | head -1]
47 set ::env(GPROFNG_SYSCONFDIR) [exec dirname $x]
49 puts "### LD_LIBRARY_PATH: $env(LD_LIBRARY_PATH)"
50 puts "### GPROFNG_SYSCONFDIR: $env(GPROFNG_SYSCONFDIR)"
52 puts "### GPROFNG: $env(GPROFNG)"
54 set TEST_TIMEOUT 300
56 load_lib display-lib.exp