mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 04:14:17 +08:00
24 lines
327 B
TOML
24 lines
327 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 = """
|
|
export RUST_BACKTRACE full
|
|
cd /home/user/acid
|
|
cargo test
|
|
shutdown
|
|
"""
|