diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-21 16:12:24 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-21 18:48:44 +0200 |
commit | a3213659dd1c4210ceb7937fcc037b459d445d17 (patch) | |
tree | 24a35063fbe4854c6d0465ecfe8ae0e60d9c94c2 /Kernel | |
parent | 3b588b7dc051b2be69631d5da9948f8f7419b3da (diff) | |
download | serenity-a3213659dd1c4210ceb7937fcc037b459d445d17.zip |
AK: Run host tests on make
Restructure the makefile a little so it only builds objects once, and
then run them on make clean.
This is a little slower (since we're relinking tests each makeall), but
it also ensures that it will work.
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/makeall.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index a4e88a02c6..ea041c6833 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -66,6 +66,8 @@ done # has no need to build separately, but install headers. (cd ../AK && ./install.sh) +(cd ../AK/Tests && $make_cmd clean) +(cd ../AK/Tests && $make_cmd) sudo -E ./build-image-qemu.sh |