Blame SOURCES/gdb-6.3-test-movedir-20050125.patch

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