* gdb.base/testenv.exp: Skip on remote targets. Unset global
authorUlrich Weigand <uweigand@de.ibm.com>
Wed, 30 Nov 2011 08:25:17 +0000 (08:25 +0000)
committerUlrich Weigand <uweigand@de.ibm.com>
Wed, 30 Nov 2011 08:25:17 +0000 (08:25 +0000)
environment variable after test completed.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/testenv.exp

index 6ed0407..866593e 100644 (file)
@@ -1,5 +1,10 @@
 2011-11-30  Ulrich Weigand  <uweigand@de.ibm.com>
 
+       * gdb.base/testenv.exp: Skip on remote targets.  Unset global
+       environment variable after test completed.
+
+2011-11-30  Ulrich Weigand  <uweigand@de.ibm.com>
+
        * gdb.base/solib-nodir.exp: Skip if remote target.
        * gdb.base/gdb.fortran.exp: Use shlib= flag when linking main
        application.  Call gdb_load_shlibs.
index ad39f14..dae35b6 100644 (file)
@@ -22,6 +22,10 @@ if $tracelevel then {
        strace $tracelevel
 }
 
+# There's no support for passing environment variables in the remote protocol.
+if { [is_remote target] } {
+    return 0
+}
 
 set testfile "testenv"
 set srcfile ${testfile}.c
@@ -119,3 +123,7 @@ gdb_test "continue" \
   "Test with TEST_GDB_GLOBAL unset"
 
 gdb_exit
+
+# Clear environment in case we're doing multiple runs
+unset env(TEST_GDB_GLOBAL)
+