aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-06-23 17:26:29 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-06-23 17:26:34 -0700
commitd918814e6957046ad9b09ef6943e309afe57702e (patch)
treeecdbb6784c379b5e962de0a508d92a360d625f37
parent72c3cea22ca30b84b762cf4c60019540a7f850f7 (diff)
Fixed test spew
-rw-r--r--tests/os.nom4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/os.nom b/tests/os.nom
index c67279e..9b546ef 100644
--- a/tests/os.nom
+++ b/tests/os.nom
@@ -7,7 +7,9 @@ use "lib/os.nom"
%lines <-: lines in: read file "tests/os.nom"
assume: %lines.2 = " Tests for the stuff defined in lib/os.nom"
+%n <- 0
for file %f in "core"
- say "\%f"
+ %n +<- 1
+assume (%n > 0) or barf "Failed to walk the 'core' directory"
say "OS test passed."