summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2019-09-10 16:59:06 -0600
committerAdrian Thurston <thurston@colm.net>2019-09-10 16:59:06 -0600
commit42d27a12832956e74371db270b15bbeb30935efb (patch)
treec57a1f2f16c64b63c454c1630c2e0aec5c247691 /test
parentcf4bfd8cc0958798610d51035e029d52621ca035 (diff)
downloadcolm-42d27a12832956e74371db270b15bbeb30935efb.tar.gz
sort result when finding .d dirs to test in
Get more predictable test case runs.
Diffstat (limited to 'test')
-rwxr-xr-xtest/timed2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/timed b/test/timed
index 8a9353de..c0f835ae 100755
--- a/test/timed
+++ b/test/timed
@@ -1,7 +1,7 @@
#!/bin/bash
# Default to all .d direcories.
-DIRS=$(find -type d -name '*.d')
+DIRS=$(find -type d -name '*.d' | sort)
CORES=$(awk '/cpu cores/ { print $4; exit }' /proc/cpuinfo)