summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxguo <xguo>2012-10-19 07:36:18 +0000
committerxguo <xguo>2012-10-19 07:36:18 +0000
commitad2a734644cd8199465af8568b14d7b9d31fb0fc (patch)
tree94ed14b3883c86c3ad6f05820472c92a24cea36f
parentced47a72fc3e436b8e491c25e3e76f3a9e2819d1 (diff)
downloadgdb-ad2a734644cd8199465af8568b14d7b9d31fb0fc.tar.gz
* gdb.base/ctxobj.exp: Skip if skip_shlib_tests returns true.
* gdb.base/print-file-var.exp: Likewise. * gdb.base/type-opaque.exp: Likewise.
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/ctxobj.exp4
-rw-r--r--gdb/testsuite/gdb.base/print-file-var.exp4
-rw-r--r--gdb/testsuite/gdb.base/type-opaque.exp4
4 files changed, 18 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index f9d40ff5e36..23813fed5c7 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2012-10-18 Yufeng Zhang <yufeng.zhang@arm.com>
+
+ * gdb.base/ctxobj.exp: Skip if skip_shlib_tests returns true.
+ * gdb.base/print-file-var.exp: Likewise.
+ * gdb.base/type-opaque.exp: Likewise.
+
2012-10-17 Yao Qi <yao@codesourcery.com>
* gdb.mi/mi-memory-changed.exp: New.
diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
index b41ed38fa74..a0eceb766a9 100644
--- a/gdb/testsuite/gdb.base/ctxobj.exp
+++ b/gdb/testsuite/gdb.base/ctxobj.exp
@@ -13,6 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. */
+if {[skip_shlib_tests]} {
+ return -1
+}
+
set executable ctxobj-m
# The sources used to build two shared libraries (SO). We use the exact
diff --git a/gdb/testsuite/gdb.base/print-file-var.exp b/gdb/testsuite/gdb.base/print-file-var.exp
index 994abc40105..03a2832838a 100644
--- a/gdb/testsuite/gdb.base/print-file-var.exp
+++ b/gdb/testsuite/gdb.base/print-file-var.exp
@@ -13,6 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. */
+if {[skip_shlib_tests]} {
+ return -1
+}
+
set executable print-file-var-main
set lib1 "print-file-var-lib1"
diff --git a/gdb/testsuite/gdb.base/type-opaque.exp b/gdb/testsuite/gdb.base/type-opaque.exp
index f91c24b47e6..ffd46627cdc 100644
--- a/gdb/testsuite/gdb.base/type-opaque.exp
+++ b/gdb/testsuite/gdb.base/type-opaque.exp
@@ -15,6 +15,10 @@
# Test resolving of an opaque type from the loaded shared library.
+if {[skip_shlib_tests]} {
+ return -1
+}
+
set testfile type-opaque-main
set libfile type-opaque-lib
set srcfile ${testfile}.c