bench-boot: continue progress, renamte to test-boot

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-01-22 00:00:00 +00:00
parent c2983e0e1f
commit eedbb02a14
7 changed files with 38 additions and 62 deletions

15
build-test-boot Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -eu
test_size=1
while [ $# -gt 0 ]; do
case "$1" in
--size)
test_size="$2"
shift 2
;;
esac
done
./build --all-archs qemu-gem5-buildroot
if [ "$test_size" -ge 3 ]; then
./build --arch aarch64 all-linux
fi