mirror of
1
0
Fork 0

Added gitingore

This commit is contained in:
Christian Dietrich 2014-09-28 16:53:52 +02:00
parent a342f809c0
commit 17c77fe7e2
3 changed files with 12 additions and 1 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.log
*.aux
*.pdf
auto

7
tests/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
*.error
*.hex
*.elf
*.output
*.tex
*.log
*.aux

View File

@ -106,7 +106,7 @@ do_test()
# grab the actual output & exit value
pdflatex -halt-on-error -shell-escape "$file".tex 1> $file.output 2> $file.error
actual_exit_value=$?
rm -f "$file.tex" *.log *.aux *.pdf
rm -f *.log *.aux *.pdf
if [ "$actual_exit_value" -ne 0 ]; then
error " Actual exit value does not match the expected one."