-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grab bag of more stuff from the backlog #3004
Conversation
f99d39f
to
d43fd25
Compare
@@ -11,6 +11,8 @@ import ( | |||
var envRuntimePath = os.Getenv("OASIS_TEST_RUNTIME_HOST_RUNTIME_PATH") | |||
|
|||
func TestProvisionerSandbox(t *testing.T) { | |||
const bwrapPath = "/usr/bin/bwrap" // Sensible systems only. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume the same fix is required in go/runtime/host/sgx/sgx_test.go
(currently not tested in CI).
Codecov Report
@@ Coverage Diff @@
## master #3004 +/- ##
==========================================
- Coverage 68.62% 68.54% -0.09%
==========================================
Files 365 365
Lines 35669 35679 +10
==========================================
- Hits 24477 24455 -22
- Misses 8062 8092 +30
- Partials 3130 3132 +2
Continue to review full report at Codecov.
|
d43fd25
to
7f63a02
Compare
This adds a new config option `--worker.runtime.sandbox_binary` that allows overriding the path to the sandbox support binary (ie: bwrap).
7f63a02
to
48590f4
Compare
Notes:
which
to figure out where bwrap is I am opting against that as unwise. If people are so inclined as to install bwrap by hand, they can set the config option themselves.Fixes #1599
Fixes #2469