My Factorial project https://github.com/russel/Factorial/tree/master/Chapel seems to work fine:
|> mason clean
578 lynet:~/Progs/Applications/Factorial/Chapel (git:master)
|> mason test
Skipping registry update since no dependency found in manifest file.
----------------------------------------------------------------------
Ran 2 tests in 11.393 seconds
OK (passed = 2 )
However my Fibonacci project https://github.com/russel/Fibonacci/tree/master/Chapel fails to build:
|> mason test
./MasonUpdate.chpl:90: error: halt reached - argument to ! is nil
I can however guarantee that the code is good:
|> scons
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
chpl -o Fibonacci_Test --main-module Fibonacci_Test src/Fibonacci.chpl test/Fibonacci_Test.chpl
./Fibonacci_Test
positive_arguments()
Flavour: OK
======================================================================
----------------------------------------------------------------------
sequence_positive_arguments()
Flavour: OK
======================================================================
----------------------------------------------------------------------
negative_arguments()
Flavour: OK
======================================================================
----------------------------------------------------------------------
sequence_negative_arguments()
Flavour: OK
======================================================================
----------------------------------------------------------------------
scons: done building targets.