blob: b0ef82e5587be8820dc344e5f796d776a0066451 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
. $srcdir/setup
fail=0
LD_PRELOAD=$pwd/.libs/libdlclose_noop.so $vg DllPlugInTester -c -b $pwd/.libs/*Test.so 2> valgrind.out || fail=1
vg_check valgrind.out || fail=1
exit $fail
|