From 6a5f3f4353a317dc16d7371fda2ec80835036af5 Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Sun, 28 Sep 2014 11:43:46 +0800 Subject: [PATCH] Error in build_executable_own_libs for non-native target gdb/testsuite: 2014-09-30 Yao Qi * lib/prelink-support.exp (build_executable_own_libs): Error if the target isn't native. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/lib/prelink-support.exp | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 7f29c56..b7cc1c6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2014-09-30 Yao Qi + * lib/prelink-support.exp (build_executable_own_libs): Error if + the target isn't native. + +2014-09-30 Yao Qi + * gdb.threads/dlopen-libpthread.exp: Skip it if isnative is false. diff --git a/gdb/testsuite/lib/prelink-support.exp b/gdb/testsuite/lib/prelink-support.exp index a0fb12b..113a078 100644 --- a/gdb/testsuite/lib/prelink-support.exp +++ b/gdb/testsuite/lib/prelink-support.exp @@ -118,6 +118,10 @@ proc file_copy {src dest} { proc build_executable_own_libs {testname executable sources options {interp ""} {dir ""}} { global subdir + if { ![isnative] } { + error "This proc can be only used for native target." + } + if {[build_executable $testname $executable $sources $options] == -1} { return "" } -- 2.7.4