Created
June 13, 2015 09:26
-
-
Save beeradmoore/9fdf3966a1198f3d1ee8 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
CORES=$1 | |
HT="" | |
if [ -n "$2" ]; then | |
HT="ht" | |
else | |
HT="" | |
fi | |
date >> "test_${CORES}_${HT}" | |
for i in `seq 1 10`; | |
do | |
rm -rf build/ | |
echo "\nTest ${i}" >> "test_${CORES}_${HT}" | |
{ time ./build.sh ; } 2>> "test_${CORES}_${HT}" | |
sleep 30 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment