This changes skip_go_tests to invert the sense, and renames it to
allow_go_tests.
---
gdb/testsuite/gdb.go/basic-types.exp | 2 +-
gdb/testsuite/gdb.go/chan.exp | 2 +-
gdb/testsuite/gdb.go/global-local-var-shadow.exp | 2 +-
gdb/testsuite/gdb.go/handcall.exp | 2 +-
gdb/testsuite/gdb.go/hello.exp | 2 +-
gdb/testsuite/gdb.go/integers.exp | 2 +-
gdb/testsuite/gdb.go/max-depth.exp | 2 +-
gdb/testsuite/gdb.go/methods.exp | 2 +-
gdb/testsuite/gdb.go/package.exp | 2 +-
gdb/testsuite/gdb.go/print.exp | 2 +-
gdb/testsuite/gdb.go/strings.exp | 2 +-
gdb/testsuite/gdb.go/types.exp | 2 +-
gdb/testsuite/gdb.go/unsafe.exp | 2 +-
gdb/testsuite/lib/gdb.exp | 6 +++---
gdb/testsuite/lib/go.exp | 2 +-
15 files changed, 17 insertions(+), 17 deletions(-)
@@ -20,7 +20,7 @@
load_lib "go.exp"
-require !skip_go_tests
+require allow_go_tests
proc test_integer_literal_types_accepted {} {
# Test various decimal values.
@@ -20,7 +20,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile package1.go package2.go
@@ -20,7 +20,7 @@
load_lib "go.exp"
-require !skip_go_tests
+require allow_go_tests
proc test_float_accepted {} {
global gdb_prompt
@@ -17,7 +17,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -19,7 +19,7 @@
load_lib "go.exp"
-require !skip_go_tests support_go_compile
+require allow_go_tests support_go_compile
standard_testfile .go
@@ -2415,10 +2415,10 @@ proc allow_ada_tests {} {
return 1
}
-# Return a 1 if I don't even want to try to test GO.
+# Return a 1 if I want to try to test GO.
-proc skip_go_tests {} {
- return 0
+proc allow_go_tests {} {
+ return 1
}
# Return a 1 if I even want to try to test D.
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-# FIXME: Presumably skip_go_tests should be defined here,
+# FIXME: Presumably allow_go_tests should be defined here,
# but for consistency with other languages it currently lives in gdb.exp.
# Auxiliary function to set the language to Go.