mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44:17 +08:00
The cd command in init scripts manipulates global state, support for which we may remove in the future.
35 lines
549 B
TOML
35 lines
549 B
TOML
# Configuration for automated testing of essential test suites
|
|
|
|
include = ["net.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 1024
|
|
|
|
# Package settings
|
|
[packages]
|
|
acid = {}
|
|
coreutils = {}
|
|
ion = {}
|
|
os-test-bins = {}
|
|
relibc-tests-bins = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
ion /usr/lib/run_tests.ion
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/run_tests.ion"
|
|
data = """
|
|
#!/usr/bin/env ion
|
|
export RUST_BACKTRACE=full
|
|
cd /home/user/acid
|
|
cargo test
|
|
bash /root/relibc-tests/run.sh
|
|
os-test-runner
|
|
shutdown
|
|
"""
|