diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-09 17:29:27 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-09 17:29:27 +0200 |
commit | ea22643b2217921df74ea14df47d7c83987d5761 (patch) | |
tree | 91480771997be1b7f92f46ee404c266e0f4dcd76 /tests/function/builtin/testscript | |
parent | 1a9d610051cd48c98fb71a570a0871b4e073cec9 (diff) |
Initial parallel scheduler implementation, use to run testscrips
Diffstat (limited to 'tests/function/builtin/testscript')
-rw-r--r-- | tests/function/builtin/testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/function/builtin/testscript b/tests/function/builtin/testscript index 98513d3..a727146 100644 --- a/tests/function/builtin/testscript +++ b/tests/function/builtin/testscript @@ -55,8 +55,8 @@ $* <'print $type($identity([null]))' >'' : null-untyped $* <'print $identity([string] abc)' >'abc'; - $* <'print $type($identity([string] abc))' >'string' : null-typed + $* <'print $type($identity([string] abc))' >'string' : typed $* <'print $identity(abc)' >'abc'; - $* <'print $type($identity(abc))' >'' : null-untyped + $* <'print $type($identity(abc))' >'' : untyped } |