Index: tests/pybin/settings.py
===================================================================
--- tests/pybin/settings.py	(revision b215e92bfedeb7c4e8f461b277d80772d1c37217)
+++ tests/pybin/settings.py	(revision 341bb80c810c33dc5a32305a7f0529cc4af8d0be)
@@ -112,5 +112,4 @@
 	global install
 	global timeout
-	global ldpath
 
 	dry_run    = options.dry_run
@@ -121,5 +120,4 @@
 	arch       = Architecture(options.arch)
 	timeout    = Timeouts(options.timeout, options.global_timeout)
-	ldpath     = "LD_LIBRARY_PATH=\"$LD_LIBRARY_PATH:%s/../libcfa/%s-%s/src/.libs\"" % (BUILDDIR, arch.string, "debug" if options.debug else "nodebug")
 
 
Index: tests/test.py
===================================================================
--- tests/test.py	(revision b215e92bfedeb7c4e8f461b277d80772d1c37217)
+++ tests/test.py	(revision 341bb80c810c33dc5a32305a7f0529cc4af8d0be)
@@ -162,5 +162,5 @@
 		if settings.dry_run or fileIsExecutable(exe_file) :
 			# run test
-			retcode, _ = sh("%s timeout %d %s > %s 2>&1" % (settings.ldpath, settings.timeout.single, exe_file, out_file), input = in_file)
+			retcode, _ = sh("timeout %d %s > %s 2>&1" % (settings.timeout.single, exe_file, out_file), input = in_file)
 		else :
 			# simply cat the result into the output
