X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=blobdiff_plain;f=tests%2Frun.sh;h=a49ee1ab705d7c22912d282a42c4e51159d66bb6;hp=89b84f2b46808f44776d414e34dc1d192255d45f;hb=5b59dfd4b86ca165c34815c45dbed6eb45928038;hpb=ec22bd63fe3e0d9b36918023bfe5b90a25bef3db diff --git a/tests/run.sh b/tests/run.sh index 89b84f2..a49ee1a 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -2,6 +2,21 @@ # 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 @@ -14,8 +29,8 @@ for file in *.test; do # 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