From: Martin Pitt Date: Wed, 13 Jun 2012 13:33:36 +0000 (+0200) Subject: integration-test: Fix Polkit.test_internal_fs_nobody test case X-Git-Tag: upstream/2.1.2~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=923e4282bc4bf8ed30f9c84a765f094567e51682;p=platform%2Fupstream%2Fudisks2.git 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. --- 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: