]> tinc-vpn.org Git - tinc/blobdiff - test/integration/testlib/proc.py
Add basic pledge/unveil sandbox on OpenBSD
[tinc] / test / integration / testlib / proc.py
index 8ac65baf0cd7fb3e61d6eaf85ecb60aa63f42bef..a0e6c4581fa15484af36e9ca8246a3579232c740 100755 (executable)
@@ -50,6 +50,7 @@ class Feature(Enum):
     OPENSSL = "openssl"
     READLINE = "readline"
     TUNEMU = "tunemu"
+    SANDBOX = "sandbox"
     UML = "uml"
     VDE = "vde"
 
@@ -229,9 +230,6 @@ class Tinc:
         if code is not None:
             check.equals(code, res)
 
-        # Check that port was not used by something else
-        check.not_in("Can't bind to ", err)
-
         return out if out else "", err if err else ""
 
     def tinc(self, *args: str) -> subp.Popen: