Blame SOURCES/ltrace-0.7.91-testsuite-includes.patch

263585
From 694d19ff14017926454771cbb63a22355b72f1bf Mon Sep 17 00:00:00 2001
263585
From: Faraz Shahbazker <faraz.shahbazker@imgtec.com>
263585
Date: Tue, 3 Feb 2015 13:07:55 -0800
263585
Subject: [PATCH] Fix missing includes and return statements in test sources
263585
263585
Fix warnings while compiling test cases by adding missing #includes and
263585
return statements. Missing arguments provided for functions wait()/wcswidth()
263585
---
263585
 testsuite/ltrace.main/filters.exp            | 1 +
263585
 testsuite/ltrace.main/main-internal.exp      | 4 +++-
263585
 testsuite/ltrace.main/main-threaded.c        | 1 +
263585
 testsuite/ltrace.main/parameters.c           | 1 +
263585
 testsuite/ltrace.main/parameters2.exp        | 2 +-
263585
 testsuite/ltrace.main/parameters3.exp        | 2 ++
263585
 testsuite/ltrace.main/system_call_params.exp | 4 ++++
263585
 testsuite/ltrace.minor/attach-process.exp    | 1 +
263585
 testsuite/ltrace.minor/libdl-simple.c        | 2 ++
263585
 testsuite/ltrace.minor/time-record.c         | 1 +
263585
 testsuite/ltrace.minor/trace-clone.c         | 2 ++
263585
 testsuite/ltrace.minor/trace-fork.c          | 4 +++-
263585
 testsuite/ltrace.minor/wchar.exp             | 3 ++-
263585
 testsuite/ltrace.torture/vfork-thread.c      | 1 +
263585
 14 files changed, 25 insertions(+), 4 deletions(-)
263585
263585
diff --git a/testsuite/ltrace.main/filters.exp b/testsuite/ltrace.main/filters.exp
263585
index 988346f..f7f4140 100644
263585
--- a/testsuite/ltrace.main/filters.exp
263585
+++ b/testsuite/ltrace.main/filters.exp
263585
@@ -22,6 +22,7 @@ set libfilt1 [ltraceCompile libfilt1.so [ltraceSource c {
263585
 }]]
263585
 
263585
 set libfilt2 [ltraceCompile libfilt2.so [ltraceSource c {
263585
+    #include <stdio.h>
263585
     void func2(void) { puts("func2"); }
263585
 }]]
263585
 
263585
diff --git a/testsuite/ltrace.main/main-internal.exp b/testsuite/ltrace.main/main-internal.exp
263585
index 0ca5e14..112c69b 100644
263585
--- a/testsuite/ltrace.main/main-internal.exp
263585
+++ b/testsuite/ltrace.main/main-internal.exp
263585
@@ -19,11 +19,13 @@
263585
 set bin [ltraceCompile {} [ltraceSource c {
263585
     __attribute__((noinline)) void this(void) {}
263585
     __attribute__((noinline)) void that(void) {}
263585
-    int main(int i) {
263585
+    int main() {
263585
+	int i;
263585
 	for (i = 0; i < 12; ++i) {
263585
 	    this();
263585
 	    that();
263585
 	}
263585
+	return 0;
263585
     }
263585
 }]]
263585
 
263585
diff --git a/testsuite/ltrace.main/parameters.c b/testsuite/ltrace.main/parameters.c
263585
index a3d8bb5..aa862b9 100644
263585
--- a/testsuite/ltrace.main/parameters.c
263585
+++ b/testsuite/ltrace.main/parameters.c
263585
@@ -17,6 +17,7 @@ void func_intptr_ret(int *i);
263585
 int func_strlen(char*);
263585
 void func_strfixed(char*);
263585
 void func_ppp(int***);
263585
+void func_string(char*);
263585
 void func_stringp(char**);
263585
 void func_short(short, short);
263585
 void func_ushort(unsigned short, unsigned short);
263585
diff --git a/testsuite/ltrace.main/parameters2.exp b/testsuite/ltrace.main/parameters2.exp
263585
index 9850079..1c7b3b4 100644
263585
--- a/testsuite/ltrace.main/parameters2.exp
263585
+++ b/testsuite/ltrace.main/parameters2.exp
263585
@@ -17,7 +17,7 @@
263585
 # 02110-1301 USA
263585
 
263585
 set trivial [ltraceCompile {} [ltraceSource c {
263585
-    int main(void) {}
263585
+    int main(void) {return 0;}
263585
 }]]
263585
 
263585
 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
263585
diff --git a/testsuite/ltrace.main/parameters3.exp b/testsuite/ltrace.main/parameters3.exp
263585
index 693c219..f6d9116 100644
263585
--- a/testsuite/ltrace.main/parameters3.exp
263585
+++ b/testsuite/ltrace.main/parameters3.exp
263585
@@ -29,8 +29,10 @@ set liba [ltraceCompile liba.so [ltraceSource c {
263585
 }]]
263585
 
263585
 set bin [ltraceCompile {} $liba [ltraceSource c {
263585
+    extern void fun(void);
263585
     int main(void) {
263585
 	fun();
263585
+	return 0;
263585
     }
263585
 }]]
263585
 
263585
diff --git a/testsuite/ltrace.main/system_call_params.exp b/testsuite/ltrace.main/system_call_params.exp
263585
index 2ccf840..f3a55d2 100644
263585
--- a/testsuite/ltrace.main/system_call_params.exp
263585
+++ b/testsuite/ltrace.main/system_call_params.exp
263585
@@ -17,12 +17,15 @@
263585
 # 02110-1301 USA
263585
 
263585
 set bin [ltraceCompile {} [ltraceSource c {
263585
+    #ifndef _GNU_SOURCE
263585
     #define _GNU_SOURCE
263585
+    #endif
263585
     #include <sys/types.h>
263585
     #include <sys/stat.h>
263585
     #include <fcntl.h>
263585
     #include <unistd.h>
263585
     #include <sys/syscall.h>   /* For SYS_xxx definitions */
263585
+    #include <sys/mount.h>
263585
 
263585
     #ifndef SYS_open
263585
     # if defined(__aarch64__)
263585
@@ -38,6 +41,7 @@ set bin [ltraceCompile {} [ltraceSource c {
263585
 	syscall(SYS_open, "/some/path", O_RDONLY);
263585
 	write(1, "something", 10);
263585
 	mount("source", "target", "filesystemtype", 0, 0);
263585
+	return 0;
263585
     }
263585
 }]]
263585
 
263585
diff --git a/testsuite/ltrace.minor/attach-process.exp b/testsuite/ltrace.minor/attach-process.exp
263585
index 2c7d20c..c050f21 100644
263585
--- a/testsuite/ltrace.minor/attach-process.exp
263585
+++ b/testsuite/ltrace.minor/attach-process.exp
263585
@@ -21,6 +21,7 @@ set bin [ltraceCompile {} [ltraceSource c {
263585
     int main(void) {
263585
 	sleep(5);
263585
 	sleep(1);
263585
+	return 0;
263585
     }
263585
 }]]
263585
 
263585
diff --git a/testsuite/ltrace.minor/libdl-simple.c b/testsuite/ltrace.minor/libdl-simple.c
263585
index 0bef5cf..b1be002 100644
263585
--- a/testsuite/ltrace.minor/libdl-simple.c
263585
+++ b/testsuite/ltrace.minor/libdl-simple.c
263585
@@ -1,6 +1,7 @@
263585
 #include <stdlib.h>
263585
 #include <stdio.h>
263585
 #include <dlfcn.h>
263585
+#include <string.h>
263585
 
263585
 int main(int argc, char **argv) {
263585
 	void *handle;
263585
@@ -21,4 +22,5 @@ int main(int argc, char **argv) {
263585
 
263585
 	printf("%d\n", test(5));
263585
 	dlclose(handle);
263585
+	return 0;
263585
 }
263585
diff --git a/testsuite/ltrace.minor/time-record.c b/testsuite/ltrace.minor/time-record.c
263585
index a66b838..7d5e5e3 100644
263585
--- a/testsuite/ltrace.minor/time-record.c
263585
+++ b/testsuite/ltrace.minor/time-record.c
263585
@@ -5,6 +5,7 @@
263585
    This file was written by Yao Qi <qiyao@cn.ibm.com>.  */
263585
 #include <stdio.h>
263585
 #include <time.h>
263585
+#include <unistd.h>
263585
 
263585
 #define SLEEP_COUNT 2
263585
 #define NANOSLEEP_COUNT 50
263585
diff --git a/testsuite/ltrace.minor/trace-clone.c b/testsuite/ltrace.minor/trace-clone.c
263585
index ded930c..6aab235 100644
263585
--- a/testsuite/ltrace.minor/trace-clone.c
263585
+++ b/testsuite/ltrace.minor/trace-clone.c
263585
@@ -3,7 +3,9 @@
263585
    clone called.
263585
 
263585
    This file was written by Yao Qi <qiyao@cn.ibm.com>.  */
263585
+#ifndef _GNU_SOURCE
263585
 #define _GNU_SOURCE
263585
+#endif
263585
 #include <stdio.h>
263585
 #include <sys/types.h>
263585
 #include <stdlib.h>
263585
diff --git a/testsuite/ltrace.minor/trace-fork.c b/testsuite/ltrace.minor/trace-fork.c
263585
index c5f0c71..9611184 100644
263585
--- a/testsuite/ltrace.minor/trace-fork.c
263585
+++ b/testsuite/ltrace.minor/trace-fork.c
263585
@@ -6,6 +6,8 @@
263585
 
263585
 #include <stdio.h>
263585
 #include <sys/types.h>
263585
+#include <unistd.h>
263585
+#include <sys/wait.h>
263585
 
263585
 void 
263585
 child ()
263585
@@ -27,7 +29,7 @@ main ()
263585
   else
263585
     {
263585
       printf("My child pid is %d\n",pid);
263585
-      wait(); 
263585
+      wait(NULL);
263585
     }
263585
   return 0;
263585
 }
263585
diff --git a/testsuite/ltrace.torture/vfork-thread.c b/testsuite/ltrace.torture/vfork-thread.c
263585
index f909bd3..4c118a6 100644
263585
--- a/testsuite/ltrace.torture/vfork-thread.c
263585
+++ b/testsuite/ltrace.torture/vfork-thread.c
263585
@@ -13,6 +13,7 @@ routine (void *data)
263585
       puts ("bleble");
263585
       sleep (1);
263585
     }
263585
+  return NULL;
263585
 }
263585
 
263585
 
263585
-- 
263585
2.1.0
263585