X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tests%2Frun.sh;h=a49ee1ab705d7c22912d282a42c4e51159d66bb6;hb=8348ecd5e6759f9551fac0431a45c3bdffc36956;hp=805b450e1410f67ef7f48800b5b8aa6b1a39177f;hpb=84f932c810dae9ba0dd948e3a90c2f90d1f4e24a;p=config%2Fdotfiles.git diff --git a/tests/run.sh b/tests/run.sh index 805b450..a49ee1a 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -2,20 +2,40 @@ # Runs all tests in this directory. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + # Get all test files. for file in *.test; do + # Create temporary directory. + mkdir -p tmp + # Run the test file in sh and zsh and get its output. sh $file > $file.out.sh 2>&1 zsh $file > $file.out.zsh 2>&1 # Check if the output matches the expected one. If not abort with exit # code 1. - diff -u -N $file.out $file.out.sh || exit 1 - diff -u -N $file.out $file.out.zsh || exit 1 + diff -u $file.out $file.out.sh || exit 1 + diff -u $file.out $file.out.zsh || exit 1 + + # Remove temporary directory. + rm -rf tmp done # Remove all temporary files. -rm -rf tmp rm *.out.sh rm *.out.zsh