Files
linux-kernel-module-cheat/build-all
Ciro Santilli 626f5f9e22 bench-boot: add -f option to only run fast boots
Comment out all tests that are known to be failing.

run: exit 1 on failure, was broken dude to termout pipe
2018-08-13 22:56:20 +01:00

19 lines
426 B
Bash
Executable File

#!/usr/bin/env bash
set -eux
# Build all archs (that we care the most about).
# Will take forever from a clean repo, this is most useful
# after pulling the repository to do an incremental build
# then quickly test out all the setups.
gem5=-g
while getopts G OPT; do
case "$OPT" in
G)
gem5=
;;
esac
done
shift "$(($OPTIND - 1))"
for arch in x86_64 arm aarch64; do
./build -a "$arch" -klq $gem5 "$@"
done