Files
graphene/LibOS/shim/test/regression/env_from_file.manifest
Paweł Marczewski 17ab04db59 [Pal,LibOS] New logging system
Instead of 'loader.debug_type', introduce 'loader.log_level'
and 'loader.log_file', along with a set of definitions for
logging at a chosen level.

For now, the call sites keep using the legacy macros (SGX_DBG and
debug()), because converting them all will conflict with other
big changes in the code base. The existing LibOS calls are
assumed to be at 'info' level.
2021-01-20 17:27:29 +01:00

18 lines
552 B
Plaintext

loader.preload = "file:../../src/libsysdb.so"
libos.entrypoint = "file:bootstrap"
loader.argv0_override = "bootstrap"
loader.env.LD_LIBRARY_PATH = "/lib"
loader.env_src_file = "file:env_test_input"
fs.mount.lib.type = "chroot"
fs.mount.lib.path = "/lib"
fs.mount.lib.uri = "file:../../../../Runtime"
sgx.allowed_files.env = "file:env_test_input"
sgx.trusted_files.ld = "file:../../../../Runtime/ld-linux-x86-64.so.2"
sgx.trusted_files.libc = "file:../../../../Runtime/libc.so.6"
sgx.trusted_files.bootstrap = "file:bootstrap"
sgx.nonpie_binary = 1