Fix test names starting with uppercase output by basic functions
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / ftrace-lock.exp
CommitLineData
618f726f 1# Copyright 2015-2016 Free Software Foundation, Inc.
06da0f77
PL
2# This program is free software; you can redistribute it and/or modify
3# it under the terms of the GNU General Public License as published by
4# the Free Software Foundation; either version 3 of the License, or
5# (at your option) any later version.
6#
7# This program is distributed in the hope that it will be useful,
8# but WITHOUT ANY WARRANTY; without even the implied warranty of
9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10# GNU General Public License for more details.
11#
12# You should have received a copy of the GNU General Public License
13# along with this program. If not, see <http://www.gnu.org/licenses/>.
14
15load_lib "trace-support.exp"
16
17standard_testfile
18set executable $testfile
19set expfile $testfile.exp
20
21# make check RUNTESTFLAGS='gdb.trace/ftrace-lock.exp NUM_THREADS=2'
22if ![info exists NUM_THREADS] {
23 set NUM_THREADS 2
24}
25
26# Some targets have leading underscores on assembly symbols.
27set additional_flags [gdb_target_symbol_prefix_flags]
28set options [list debug [gdb_target_symbol_prefix_flags] \
29 additional_flags=-DNUM_THREADS=$NUM_THREADS]
30
31# Check that the target supports trace.
32if { [gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
bc6c7af4 33 untested "couldn't compile test program"
06da0f77
PL
34 return -1
35}
36
37clean_restart ${testfile}
38
39if ![runto_main] {
bc6c7af4 40 fail "can't run to main to check for trace support"
06da0f77
PL
41 return -1
42}
43
44if ![gdb_target_supports_trace] {
45 unsupported "target does not support trace"
46 return -1
47}
48
49# Compile the test case with the in-process agent library.
50set libipa [get_in_proc_agent]
952ebca5 51set remote_libipa [gdb_load_shlib $libipa]
06da0f77
PL
52
53lappend options shlib=$libipa
54
55if { [gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
bc6c7af4 56 untested "couldn't compile test program with in-process agent library"
06da0f77
PL
57 return -1
58}
59
60clean_restart ${executable}
61
62if ![runto_main] {
bc6c7af4 63 fail "can't run to main to check for trace support"
06da0f77
PL
64 return -1
65}
66
952ebca5 67if { [gdb_test "info sharedlibrary" ".*${remote_libipa}.*" "IPA loaded"] != 0 } {
bc6c7af4 68 untested "could not find IPA lib loaded"
06da0f77
PL
69 return 1
70}
71
72gdb_test "break end" ""
73gdb_test "break fail" ""
74
75gdb_test "ftrace set_point" "Fast tracepoint .*" \
76 "fast tracepoint at a long insn"
77
78gdb_test "tstart" ""
79
80# If NUM_THREADS is high then this test case may timeout. Increase the
81# timeout temporarily.
82with_timeout_factor $NUM_THREADS {
83 # If the fail function is hit, then the testcase will fail.
84 gdb_test "continue" ".*Breakpoint \[0-9\]+, end \(\).*" \
85 "do not hit the fail function"
86}
87
88gdb_test "tstop" ""
This page took 0.156329 seconds and 4 git commands to generate.