- Will Morano
- Zhuojie Ji
- Jacob Greenfield
- Michael Speckhart
- Ethan Lavi
Can edit src/main.rs to add command line arguments to qemu
cmd.arg("-FLAG").arg("FLAG_ARG");
cargo run
Can interact with the OS over the network like
nc -4 -u localhost 5555
nc -4 localhost 6666
This will connect with our "echo" servers. See udp_echo or tcp_echo for the implementation of these echo servers.
You can also run the tests in kernel/scripts. send_wasm.py can be used to interact with the main function of our OS, i.e. to run your WASM file.
[WIP]
cargo test --test name
Tests are run before starting the application on sudo cargo run