diff options
-rw-r--r-- | src/buildstream/testing/_utils/site.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/buildstream/testing/_utils/site.py b/src/buildstream/testing/_utils/site.py index f3b45dbf6..9fbddf13e 100644 --- a/src/buildstream/testing/_utils/site.py +++ b/src/buildstream/testing/_utils/site.py @@ -82,3 +82,12 @@ if HAVE_SANDBOX is not None: pass elif IS_LINUX and HAVE_BWRAP and (not IS_WSL): HAVE_SANDBOX = "bwrap" + + +BUILDBOX_RUN = None +if HAVE_SANDBOX == "buildbox-run": + try: + path = utils.get_host_tool("buildbox-run") + BUILDBOX_RUN = os.path.basename(os.readlink(path)) + except (ProgramNotFoundError, OSError): + pass |