shlist

share and manage lists between multiple people
Log | Files | Refs

commit 14e61c4a72f2a8ef0864f6506c9883d737140288
parent 846f057a7f950e7e2c443e036d0a314f7b960140
Author: kyle <kyle@0x30.net>
Date:   Sun, 17 Jan 2016 22:47:50 -0700

run_tests: use LC_ALL=C when ls'ing tests

- theres a special test that starts with underscore '_' that needs to be run
  first
- on the linux droplet it wasn't being picked first

Diffstat:
Mserver/run_tests.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/run_tests.sh b/server/run_tests.sh @@ -29,7 +29,7 @@ server_pid=$! passed=0 failed=0 count=0 -for t in `ls tests/*/Makefile`; do +for t in `LC_ALL=C ls tests/*/Makefile`; do count=`expr $count + 1` test_dir=`dirname ${t}`