From a5f0b3d7d1b23053ce9327be91323e92ce554b32 Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Tue, 15 Sep 2009 01:03:56 +0000 Subject: extras: Add LD_PRELOAD test tool This tool allows us to check the sanity of the LD_PRELOAD mechanism so that we can be sure that an application's syscalls will be redirected into booster when that library is LD_PRELOADed. In case of failed syscalls, this tool should be run first to see if the calls are redirected as required. Signed-off-by: Anand V. Avati BUG: 251 (Improve booster debugging through ld-preload testing tool) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=251 --- extras/test/ld-preload-test/test-preload.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 extras/test/ld-preload-test/test-preload.sh (limited to 'extras/test/ld-preload-test/test-preload.sh') diff --git a/extras/test/ld-preload-test/test-preload.sh b/extras/test/ld-preload-test/test-preload.sh new file mode 100755 index 000000000..faed5cee3 --- /dev/null +++ b/extras/test/ld-preload-test/test-preload.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +echo "Testing 32-bit offsets build" +LD_PRELOAD="$(pwd)/ld-preload-lib.so" $(pwd)/ld-preload-test32 --path /tmp/testfile +echo +echo "Testing 64-bit offsets build" +LD_PRELOAD="$(pwd)/ld-preload-lib.so" $(pwd)/ld-preload-test64 --path /tmp/testfile -- cgit