
better path going forward to handling upgrades. Old syntax files will stick around for compatibility purposes. Old syntax can be parsed into valid syntax trees via the old syntax (.peg) files, and then old syntax trees should be valid and can be upgraded via the normal code path. This change has lots of improvements to Nomsu codegen too.
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
#!/usr/bin/env nomsu -V1
|
|
#
|
|
Tests for the stuff defined in lib/os.nom
|
|
|
|
use "core"
|
|
use "lib/os.nom"
|
|
|
|
%lines <-: lines in: read file "tests/os.nom"
|
|
assume: %lines.3 = " Tests for the stuff defined in lib/os.nom"
|
|
|
|
%n <- 0
|
|
for file %f in "core"
|
|
%n +<- 1
|
|
assume (%n > 0) or barf "Failed to walk the 'core' directory"
|
|
|
|
say "OS test passed."
|