ChCore-exercise/lab2/scripts/mm_test_script.sh

16 lines
188 B
Bash
Raw Normal View History

2021-05-12 21:38:26 +08:00
#!/bin/bash
cd ./tests/mm
cd buddy
cmake ./
make
./test_buddy > buddy.out
make clean
cd ../
cd page_table
cmake ./
make
./test_aarch64_page_table > page_table.out
make clean
cd ../../../