Update copyright year
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.rocm / bit_extract_compile.exp
CommitLineData
4e5106e6
LM
1# Copyright 2019-2020 Free Software Foundation, Inc.
2# Copyright (C) 2019-2020 Advanced Micro Devices, Inc. All rights reserved.
5922befa
LM
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.
7#
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.
12#
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/>.
15
16load_lib rocm.exp
17
18set testfile "bit_extract_compile"
19set srcfile ${srcdir}/${subdir}/${testfile}.cpp
20set objfile [standard_output_file ${testfile}.o]
21set binfile [standard_output_file ${testfile}]
22
23# Set device info
24set ISA "vega10"
25
26# Check if skip hip tests
27if [skip_hipcc_tests] {
28 verbose "Skipping hip test: ${testfile}."
29 return 0
30}
31
32# Compile the hip program
33if {[prepare_for_testing "failed to prepare ${testfile}" $testfile $srcfile {debug hip}]} {
34 return -1
35}
36
37gdb_exit
38gdb_start
39
40# Load the hip program
41if {[gdb_load ${binfile}] == -1} {
42 verbose "failed to load program ${testfile}."
43 return -1
44}
45
46# Run to main and break
47if ![runto_main] {
48 fail "can't run to main and break in program ${testfile}."
49 return -1
50}
51
52# Set breakpoing in device code
53gdb_breakpoint "bit_extract_kernel" "allow-pending"
54gdb_continue_to_breakpoint "bit_extract_kernel"
55
56# Check rocm info devices
57# vega10 56 sample output "1 43:00.0 vega10 4 56 4 10"
58gdb_test_sequence "info rocm devices" "info rocm devices" {
59 {Id\s+PCI Slot\s+Device Name\s+Shader Engines\s+Compute Units\s+SIMD/CU\s+Wavefronts/SIMD}
60 {\d\s+\d+:\d+\.\d\s+\w+\d+\s+\d+\s+\d+\s+\d+\s+\d}
61}
62
63# Check continue at device breakpoint in all-stop mode
64gdb_test "c" ".+hit\\s+Breakpoint.+bit_extract_kernel\\(.*"
65
66# Check info threads
67gdb_test_sequence "info threads" "info threads" {
68 "\\d+\\s+Thread"
69}
70
71gdb_exit
This page took 0.027148 seconds and 4 git commands to generate.