redox/config/acid.toml
bjorn3 294c0064de Change a couple of init scripts to shell scripts
The cd command in init scripts manipulates global state, support for
which we may remove in the future.
2026-02-19 20:53:26 +01:00

31 lines
429 B
TOML

# Configuration for "acid" testing
include = ["net.toml"]
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 1024
# Package settings
[packages]
acid = {}
coreutils = {}
ion = {}
[[files]]
path = "/usr/lib/init.d/10_acid"
data = """
ion /usr/lib/run_acid.ion
"""
[[files]]
path = "/usr/lib/run_acid.ion"
data = """
#!/usr/bin/env ion
export RUST_BACKTRACE=full
cd /home/user/acid
cargo test
shutdown
"""