taskwarrior/src/tests/run_all
Paul Beckingham 87be68e2e8 Bug Fix
- Shebang in tests/run_all was backwards.
2009-03-15 22:12:18 -04:00

11 lines
92 B
Bash
Executable file

#! /bin/bash
date > all.log
for i in *.t
do
./$i >> all.log 2>&1
done
date >> all.log