run copyright.sh for 2011.
[external/binutils.git] / gdb / testsuite / gdb.threads / tls-nodebug.exp
1 # tls.exp -- Expect script to test thread-local storage without debuginfo
2 # Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
3 # Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 set testfile tls-nodebug
19 set srcfile ${testfile}.c
20 set binfile ${objdir}/${subdir}/${testfile}
21
22 if [istarget "*-*-linux"] then {
23     set target_cflags "-D_MIT_POSIX_THREADS"
24 } else {
25     set target_cflags ""
26 }
27
28 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable []] != "" } {
29     return -1
30 }
31
32 gdb_exit
33 gdb_start
34 gdb_reinitialize_dir $srcdir/$subdir
35
36 gdb_load ${binfile}
37 if ![runto_main] then {
38    fail "Can't run to main"
39    return 0
40 }
41
42 # Formerly: Cannot access memory at address 0x0
43 gdb_test "p thread_local" "= 42" "thread local storage"
44
45 # Done!
46 #
47 gdb_exit
48
49 return 0