From: Zac Medico Date: Sun, 4 Sep 2011 17:21:57 +0000 (-0700) Subject: tests/emerge: auto-disable sandbox if necessary X-Git-Tag: v2.2.0_alpha54~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8b977710e7725d395d4d970d17a2d5192df86bbc;p=portage.git tests/emerge: auto-disable sandbox if necessary --- diff --git a/pym/portage/tests/emerge/test_simple.py b/pym/portage/tests/emerge/test_simple.py index cfb6cae55..1afa04750 100644 --- a/pym/portage/tests/emerge/test_simple.py +++ b/pym/portage/tests/emerge/test_simple.py @@ -188,6 +188,12 @@ src_install() { "PYTHONPATH" : pythonpath, } + features = [] + if not portage.process.sandbox_capable: + features.append("-sandbox") + if features: + env["FEATURES"] = " ".join(features) + dirs = [distdir, fake_bin, portage_tmpdir, var_cache_edb] true_symlinks = ["chown", "chgrp"] true_binary = find_binary("true")