modified ROCm Thread to AMDGPU Thread in test
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.rocm / bit_extract_compile.exp
1 # Copyright 2019-2020 Free Software Foundation, Inc.
2 # Copyright (C) 2019-2020 Advanced Micro Devices, Inc. All rights reserved.
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
16 load_lib rocm.exp
17
18 set testfile "bit_extract_compile"
19 set srcfile ${srcdir}/${subdir}/${testfile}.cpp
20 set objfile [standard_output_file ${testfile}.o]
21 set binfile [standard_output_file ${testfile}]
22
23 # Set device info
24 set ISA "vega10"
25
26 # Check if skip hip tests
27 if [skip_hipcc_tests] {
28 verbose "Skipping hip test: ${testfile}."
29 return 0
30 }
31
32 # Compile the hip program
33 if {[prepare_for_testing "failed to prepare ${testfile}" $testfile $srcfile {debug hip}]} {
34 return -1
35 }
36
37 gdb_exit
38 gdb_start
39
40 # Load the hip program
41 if {[gdb_load ${binfile}] == -1} {
42 verbose "failed to load program ${testfile}."
43 return -1
44 }
45
46 # Run to main and break
47 if ![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
53 gdb_breakpoint "bit_extract_kernel" "allow-pending"
54 gdb_continue_to_breakpoint "bit_extract_kernel"
55
56 # Check info agents
57 # vega10 56 sample output "1 43:00.0 vega10 4 56 4 10"
58 gdb_test_sequence "info agents" "info agents" {
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
64 gdb_test "c" ".+hit\\s+Breakpoint.+bit_extract_kernel\\(.*"
65
66 # Check info threads
67 gdb_test_sequence "info threads" "info threads" {
68 "\\d+\\s+Thread"
69 }
70
71 gdb_exit
This page took 0.030332 seconds and 4 git commands to generate.