Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.threads / omp-task.exp
blob8f46658fe0dd8d78da2ff6fd45d3e8d1f56054aa
1 # Copyright 2022 Free Software Foundation, Inc.
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.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the gdb testsuite.
18 # Tests which verify (or not) that GDB can access shared and private
19 # clauses of OpenMP task construct.
21 standard_testfile
23 set have_nested_function_support 0
24 set opts {openmp debug}
26 if {[prepare_for_testing "failed to prepare" $testfile $srcfile $opts]} {
27     return -1
30 if {[info procs gdb_openmp_setup] != ""} {
31     if {[gdb_openmp_setup $binfile] != ""} {
32         untested "could not set up OpenMP environment"
33         return -1
34     }
37 if {![runto_main]} {
38     return -1
41 gdb_breakpoint [gdb_get_line_number "omp task shared"]
42 gdb_test "continue" ".*Breakpoint 2.*" "continue 1"
43 gdb_test "print share1" "= 9"
44 gdb_test "print share2" "= 11"
45 gdb_test "print share3" "= 13"
46 gdb_test "disable 2" ".*"
47 gdb_breakpoint [gdb_get_line_number "share1 = priv1"]
48 gdb_test "continue" ".*Breakpoint 3.*" "continue 2"
49 gdb_test "print priv1" "= 10"
50 gdb_test "print priv2" "= 12"
51 gdb_test "print fpriv" "= 14"