Rename to allow_opencl_tests
authorTom Tromey <tom@tromey.com>
Sun, 8 Jan 2023 18:42:26 +0000 (11:42 -0700)
committerTom Tromey <tom@tromey.com>
Fri, 13 Jan 2023 20:18:58 +0000 (13:18 -0700)
This changes skip_opencl_tests to invert the sense, and renames it to
allow_opencl_tests.

gdb/testsuite/gdb.opencl/callfuncs.exp
gdb/testsuite/gdb.opencl/convs_casts.exp
gdb/testsuite/gdb.opencl/datatypes.exp
gdb/testsuite/gdb.opencl/operators.exp
gdb/testsuite/gdb.opencl/vec_comps.exp
gdb/testsuite/lib/opencl.exp

index 98b34ab08cd35bd4deb50cbddff79b8d3091980e..1fa3f8abcb02f2fe332ef2575735fbcb5d095b3b 100644 (file)
@@ -19,7 +19,7 @@
 
 load_lib opencl.exp
 
-require !skip_opencl_tests
+require allow_opencl_tests
 
 set testfile "callfuncs"
 set clprogram [remote_download target ${srcdir}/${subdir}/${testfile}.cl]
index 9764d75fcb5e4c15537c65919517d03eb2b6b8a3..d648b7f6f0d085ae69ebf43ef1ea63e42f7912d3 100644 (file)
@@ -19,7 +19,7 @@
 
 load_lib opencl.exp
 
-require !skip_opencl_tests
+require allow_opencl_tests
 
 set testfile "convs_casts"
 set clprogram [remote_download target ${srcdir}/${subdir}/${testfile}.cl]
index 69d07e7b695796b7c400a39039bcbed60f4cebab..b59567f65e2d31938aa4d470c93e8da8dfc17b69 100644 (file)
@@ -19,7 +19,7 @@
 
 load_lib opencl.exp
 
-require !skip_opencl_tests
+require allow_opencl_tests
 
 set testfile "datatypes"
 set clprogram [remote_download target ${srcdir}/${subdir}/${testfile}.cl]
index 31a7ee87873682a760253e09c1ee19d2c0e9738d..a70e169112d825686dcc21925ba8a7145def8a9e 100644 (file)
@@ -19,7 +19,7 @@
 
 load_lib opencl.exp
 
-require !skip_opencl_tests
+require allow_opencl_tests
 
 set testfile "operators"
 set clprogram [remote_download target ${srcdir}/${subdir}/${testfile}.cl]
index 1ea2bd9d7ec8d430aea4332959348aeb2af186a8..4c9f8012b7917d92e4ae210056e3c301d38aa437 100644 (file)
@@ -19,7 +19,7 @@
 
 load_lib opencl.exp
 
-require !skip_opencl_tests
+require allow_opencl_tests
 
 set testfile "vec_comps"
 set clprogram [remote_download target ${srcdir}/${subdir}/${testfile}.cl]
index 3f1b364fa00b98a3e0e2c8df81e030de6d61b095..4c66d2a9ecd5166c44703fcf867bce776fbf8989 100644 (file)
@@ -27,13 +27,13 @@ proc gdb_compile_opencl_hostapp {clsource executable options} {
     return [gdb_compile ${src} ${binfile} "executable" ${options_opencl}]
 }
 
-# Run a test on the target to check if it supports OpenCL. Return 0 if so, 1 if
+# Run a test on the target to check if it supports OpenCL. Return 1 if so, 0 if
 # it does not.
-gdb_caching_proc skip_opencl_tests {
+gdb_caching_proc allow_opencl_tests {
     global srcdir objdir subdir gdb_prompt
     global inferior_exited_re
 
-    set me "skip_opencl_tests"
+    set me "allow_opencl_tests"
 
     # Set up, compile, and execute an OpenCL program.  Include the current
     # process ID in the file name of the executable to prevent conflicts with
@@ -46,8 +46,8 @@ gdb_caching_proc skip_opencl_tests {
 
     if { [gdb_compile_opencl_hostapp "${clprogram}" "${executable}" "${compile_flags}" ] != "" } {
        remote_file target delete ${clprogram}
-        verbose "$me:  compiling OpenCL binary failed, returning 1" 2
-       return 1
+       verbose "$me:  compiling OpenCL binary failed, returning 0" 2
+       return 0
     }
 
     # Compilation succeeded so now run it via gdb.
@@ -56,15 +56,15 @@ gdb_caching_proc skip_opencl_tests {
     gdb_expect 30 {
         -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
             verbose -log "\n$me: OpenCL support detected"
-            set result 0
+           set result 1
         }
         -re ".*$inferior_exited_re with code.*${gdb_prompt} $" {
             verbose -log "\n$me: OpenCL support not detected"
-            set result 1
+           set result 0
         }
         default {
             verbose -log "\n$me OpenCL support not detected (default case)"
-            set result 1
+           set result 0
         }
     }
     gdb_exit