]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tests/run.sh
tests: Add tests for m4() in lib.sh.
[config/dotfiles.git] / tests / run.sh
index 805b450e1410f67ef7f48800b5b8aa6b1a39177f..89b84f2b46808f44776d414e34dc1d192255d45f 100755 (executable)
@@ -5,6 +5,9 @@
 
 # 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
@@ -13,9 +16,11 @@ for file in *.test; do
     # code 1.
     diff -u -N $file.out $file.out.sh  || exit 1
     diff -u -N $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