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

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