diff options
-rw-r--r-- | pym/portage/tests/emerge/test_simple.py | 6 |
1 files changed, 6 insertions, 0 deletions
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") |