Skip to content

Commit 93fea35

Browse files
Fix CI for MacOS
1 parent dcc58e0 commit 93fea35

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

e2e_tests/boundary_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func TestBoundaryIntegration(t *testing.T) {
133133
"--allow", "jsonplaceholder.typicode.com",
134134
"--log-level", "debug",
135135
//"--", "/bin/bash")
136-
"--", "/bin/bash", "-c", "/usr/bin/sleep 21 && /usr/bin/echo 'Test completed'")
136+
"--", "/bin/bash", "-c", "/usr/bin/sleep 20 && /usr/bin/echo 'Test completed'")
137137

138138
boundaryCmd.Stdin = os.Stdin
139139
boundaryCmd.Stdout = os.Stdout

jail/macos.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ func NewMacOSJail(config Config) (*MacOSJail, error) {
5454
}, nil
5555
}
5656

57+
func SetupChildNetworking(vethNetJail string) error {
58+
return nil
59+
}
60+
5761
// Setup creates the network boundary group and configures PF rules
5862
func (n *MacOSJail) ConfigureBeforeCommandExecution() error {
5963
n.logger.Debug("Setup called")

0 commit comments

Comments
 (0)