You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[*] bring back tests + benchmarks + fuzzing + examples
- added convenience justfile rule to test like CI (w/ different feature combinations),
- removed executable_heap feature (heap is always executable now).
- fixed check_stack_guard functionality w/ stack cookie (currently broken in main).
- fixed logging to get proper output_data_region address (host vs. guest address space when
in process vs. in hypervisor).
- modified print_output to return the message length.
Signed-off-by: danbugs <[email protected]>
Copy file name to clipboardExpand all lines: Justfile
+16-5
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,22 @@ clean-rust:
62
62
63
63
# Note: most testing recipes take an optional "features" comma separated list argument. If provided, these will be passed to cargo as **THE ONLY FEATURES**, i.e. default features will be disabled.
Copy file name to clipboardExpand all lines: src/hyperlight_host/Cargo.toml
-1
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,6 @@ built = { version = "0.7.7", features = ["chrono", "git2"] }
121
121
default = ["kvm", "mshv2", "seccomp"]
122
122
seccomp = ["dep:seccompiler"]
123
123
function_call_metrics = []
124
-
executable_heap = []
125
124
# This feature enables printing of debug information to stdout in debug builds
126
125
print_debug = []
127
126
crashdump = ["dep:tempfile"] # Dumps the VM state to a file on unexpected errors or crashes. The path of the file will be printed on stdout and logged. This feature can only be used in debug builds.
0 commit comments