]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tests/run.sh
*: License under GPL v3+.
[config/dotfiles.git] / tests / run.sh
index 805b450e1410f67ef7f48800b5b8aa6b1a39177f..a49ee1ab705d7c22912d282a42c4e51159d66bb6 100755 (executable)
@@ -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 <http://www.gnu.org/licenses/>.
+
 
 # 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