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

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