From 923e4282bc4bf8ed30f9c84a765f094567e51682 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Wed, 13 Jun 2012 15:33:36 +0200 Subject: [PATCH] integration-test: Fix Polkit.test_internal_fs_nobody test case Do not call tools/udisksctl libtool wrapper as nobody, call the actual ELF binary in tools/.libs. Otherwise libtool cannot write its temporary file as user nobody. --- src/tests/integration-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/integration-test b/src/tests/integration-test index 4c77b94..dd9f62e 100755 --- a/src/tests/integration-test +++ b/src/tests/integration-test @@ -103,7 +103,7 @@ class UDisksTestCase(unittest.TestCase): # run from local build tree if we are in one, otherwise use system instance daemon_path = os.path.join(srcdir, 'src', 'udisksd') if (os.access (daemon_path, os.X_OK)): - klass.tool_path = 'tools/udisksctl' + klass.tool_path = 'tools/.libs/udisksctl' print('Testing binaries from local build tree') klass.check_build_tree_config() else: -- 2.7.4