Created
June 10, 2017 01:27
-
-
Save satoru-takeuchi/bebb7c6817ce68b5ed374c56c4ca4d87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export LANG=C | |
for ((i=0;1;i++)) ; do | |
if make -j16 >/dev/null 2>>log.txt ; then | |
echo "$i: $(date): OK" >>log.txt | |
else | |
echo "$i: $(date): NG" >>log.txt | |
fi | |
dmesg >dmesg.txt | |
make clean >/dev/null 2>>log.txt | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment