You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.1 KiB
101 lines
3.1 KiB
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001 |
|
From: Elena Zannoni <ezannoni@redhat.com> |
|
Date: Fri, 27 Oct 2017 21:07:50 +0200 |
|
Subject: gdb-6.3-test-movedir-20050125.patch |
|
|
|
;; Fix to support executable moving |
|
;;=fedoratest |
|
|
|
2005-01-25 Elena Zannoni <ezannoni@redhat.com> |
|
|
|
* gdb.base/move-dir.exp: New test. |
|
* gdb.base/move-dir.c: Ditto. |
|
* gdb.base/move-dir.h: Ditto. |
|
|
|
diff --git a/gdb/testsuite/gdb.base/move-dir.c b/gdb/testsuite/gdb.base/move-dir.c |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.base/move-dir.c |
|
@@ -0,0 +1,9 @@ |
|
+#include <stdio.h> |
|
+#include <stdlib.h> |
|
+#include "move-dir.h" |
|
+ |
|
+int main() { |
|
+ const char* hw = "hello world."; |
|
+ printf ("%s\n", hw);; |
|
+ other(); |
|
+} |
|
diff --git a/gdb/testsuite/gdb.base/move-dir.exp b/gdb/testsuite/gdb.base/move-dir.exp |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.base/move-dir.exp |
|
@@ -0,0 +1,57 @@ |
|
+# Copyright 2005 |
|
+# Free Software Foundation, Inc. |
|
+ |
|
+# This program is free software; you can redistribute it and/or modify |
|
+# it under the terms of the GNU General Public License as published by |
|
+# the Free Software Foundation; either version 2 of the License, or |
|
+# (at your option) any later version. |
|
+# |
|
+# This program is distributed in the hope that it will be useful, |
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+# GNU General Public License for more details. |
|
+# |
|
+# You should have received a copy of the GNU General Public License |
|
+# along with this program; if not, write to the Free Software |
|
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
+ |
|
+set testfile "move-dir" |
|
+set srcfile ${testfile}.c |
|
+set incfile ${testfile}.h |
|
+set binfile [standard_output_file ${testfile}] |
|
+ |
|
+set testdir [standard_output_file incdir] |
|
+ |
|
+remote_exec build "mkdir $testdir" |
|
+remote_exec build "cp ${srcdir}/${subdir}/${srcfile} [standard_output_file ${srcfile}]" |
|
+remote_exec build "cp ${srcdir}/${subdir}/${incfile} [standard_output_file ${incfile}]" |
|
+ |
|
+set additional_flags "additional_flags=-I${subdir}/incdir" |
|
+ |
|
+if { [gdb_compile [standard_output_file ${srcfile}] "${binfile}" executable [list debug $additional_flags]] != "" } { |
|
+ gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." |
|
+} |
|
+ |
|
+# Create and source the file that provides information about the compiler |
|
+# used to compile the test case. |
|
+ |
|
+if [get_compiler_info ${binfile}] { |
|
+ return -1; |
|
+} |
|
+ |
|
+ |
|
+set oldtimeout $timeout |
|
+set timeout [expr "$timeout + 60"] |
|
+ |
|
+# Start with a fresh gdb. |
|
+ |
|
+gdb_exit |
|
+gdb_start |
|
+gdb_test "cd ../.." "" "" |
|
+gdb_load ${binfile} |
|
+gdb_test "list main" ".*hw.*other.*" "found main" |
|
+gdb_test "list other" ".*ostring.*" "found include file" |
|
+ |
|
+ |
|
+set timeout $oldtimeout |
|
+return 0 |
|
diff --git a/gdb/testsuite/gdb.base/move-dir.h b/gdb/testsuite/gdb.base/move-dir.h |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.base/move-dir.h |
|
@@ -0,0 +1,6 @@ |
|
+#include <stdlib.h> |
|
+ |
|
+void other() { |
|
+ const char* ostring = "other"; |
|
+ printf ("%s\n", ostring);; |
|
+}
|
|
|