make sure commit tests don't overwrite options.h

pull/1/head
toddouska 2013-04-12 12:19:46 -07:00
parent 0b7e18040c
commit 3cfb270a4d
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
# save current config
echo "\n\nSaving current config\n\n"
cp config.status tmp.status
cp cyassl/options.h tmp.options.h
# stash modified files not part of this commit, don't test them
echo "\n\nStashing any modified files not part of commit\n\n"
@ -27,6 +28,7 @@ mv tmp.status config.status
./config.status >/dev/null 2>&1
make clean >/dev/null 2>&1
make -j 8 >/dev/null 2>&1
mv tmp.options.h cyassl/options.h
[ $RESULT -ne 0 ] && echo "\nOops, your commit failed\n" && exit 1