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

8d9cfe
diff -rup a/testsuite/Makefile.am b/testsuite/Makefile.am
8d9cfe
--- a/testsuite/Makefile.am	2012-12-16 20:53:45.000000000 -0500
8d9cfe
+++ b/testsuite/Makefile.am	2019-06-28 16:59:19.935602953 -0400
8d9cfe
@@ -39,6 +39,7 @@ env.exp: Makefile
8d9cfe
 	rm -f env.exp
8d9cfe
 	echo set libelf_LD_LIBRARY_PATH '"$(libelf_LD_LIBRARY_PATH)"' >> $@
8d9cfe
 	echo set libunwind_LD_LIBRARY_PATH '"$(libunwind_LD_LIBRARY_PATH)"' >> $@
8d9cfe
+	echo set PREFIX '"$(prefix)"' >> $@
8d9cfe
 
8d9cfe
 CLEANFILES = *.o *.so *.log *.sum *.ltrace site.bak setval.tmp site.exp env.exp
8d9cfe
 
8d9cfe
diff -rup a/testsuite/Makefile.in b/testsuite/Makefile.in
8d9cfe
--- a/testsuite/Makefile.in	2013-11-04 20:22:47.000000000 -0500
8d9cfe
+++ b/testsuite/Makefile.in	2019-06-28 16:59:12.075602806 -0400
8d9cfe
@@ -648,6 +648,7 @@ env.exp: Makefile
8d9cfe
 	rm -f env.exp
8d9cfe
 	echo set libelf_LD_LIBRARY_PATH '"$(libelf_LD_LIBRARY_PATH)"' >> $@
8d9cfe
 	echo set libunwind_LD_LIBRARY_PATH '"$(libunwind_LD_LIBRARY_PATH)"' >> $@
8d9cfe
+	echo set PREFIX '"$(prefix)"' >> $@
8d9cfe
 
8d9cfe
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
8d9cfe
 # Otherwise a system limit (for SysV at least) may be exceeded.
8d9cfe
diff -rup a/testsuite/ltrace.main/system_call_params.exp b/testsuite/ltrace.main/system_call_params.exp
8d9cfe
--- a/testsuite/ltrace.main/system_call_params.exp	2019-06-28 16:44:07.542584754 -0400
8d9cfe
+++ b/testsuite/ltrace.main/system_call_params.exp	2019-06-28 17:00:35.811604355 -0400
8d9cfe
@@ -1,5 +1,5 @@
8d9cfe
 # This file is part of ltrace.
8d9cfe
-# Copyright (C) 2013, 2014 Petr Machata, Red Hat Inc.
8d9cfe
+# Copyright (C) 2013, 2014, 2015 Petr Machata, Red Hat Inc.
8d9cfe
 #
8d9cfe
 # This program is free software; you can redistribute it and/or
8d9cfe
 # modify it under the terms of the GNU General Public License as
8d9cfe
@@ -60,8 +60,35 @@ set conf [ltraceNamedSource "$dir/syscal
8d9cfe
 # somelib.conf is passed, and syscalls.conf is not available, or
8d9cfe
 # doesn't list readdir, that would be taken from somelib.conf with a
8d9cfe
 # wrong prototype.
8d9cfe
+#
8d9cfe
+# This test relies on the fact that there is no global config file
8d9cfe
+# that would provide legitimate system call prototypes.  But that
8d9cfe
+# doesn't have to be true, maybe ltrace is already installed on the
8d9cfe
+# system with the right prefix.  So first compile a wrapper that we
8d9cfe
+# use to redirect fopen calls.
8d9cfe
+
8d9cfe
+set libfopen_so [ltraceCompile libfopen.so -ldl \
8d9cfe
+		     [ltraceSource c [string map [list "@PREFIX@" "$PREFIX"] {
8d9cfe
+    #define _GNU_SOURCE
8d9cfe
+    #include <dlfcn.h>
8d9cfe
+    #include <stdio.h>
8d9cfe
+    #include <string.h>
8d9cfe
+
8d9cfe
+    FILE *
8d9cfe
+    fopen(const char *path, const char *mode)
8d9cfe
+    {
8d9cfe
+	#define PATH "@PREFIX@/share"
8d9cfe
+	if (strncmp(path, PATH, sizeof(PATH) - 1) == 0)
8d9cfe
+	    path = "/dev/null";
8d9cfe
 
8d9cfe
+	return ((FILE *(*)(const char *, const char *))
8d9cfe
+		dlsym(RTLD_NEXT, "fopen")) (path, mode);
8d9cfe
+    }
8d9cfe
+}]]]
8d9cfe
+ 
8d9cfe
+setenv LD_PRELOAD $libfopen_so
8d9cfe
 ltraceMatch1 [ltraceRun -L -S -F $conf -- $bin] {^open@SYS\("/some/path", 0\)} == 0
8d9cfe
+unsetenv LD_PRELOAD
8d9cfe
 
8d9cfe
 # On the other hand, if -F somedir/ is given, we want to accept
8d9cfe
 # syscalls.conf found there.