Skip to content

Instantly share code, notes, and snippets.

@satoru-takeuchi
Created June 10, 2017 01:27
Show Gist options
  • Save satoru-takeuchi/bebb7c6817ce68b5ed374c56c4ca4d87 to your computer and use it in GitHub Desktop.
Save satoru-takeuchi/bebb7c6817ce68b5ed374c56c4ca4d87 to your computer and use it in GitHub Desktop.
#!/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