diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/eval/buildfile | 30 | ||||
-rw-r--r-- | tests/eval/test.out | 16 | ||||
-rw-r--r-- | tests/if-else/buildfile | 17 | ||||
-rw-r--r-- | tests/if-else/test.out | 3 |
4 files changed, 66 insertions, 0 deletions
diff --git a/tests/eval/buildfile b/tests/eval/buildfile index cf315b6..06fb5fb 100644 --- a/tests/eval/buildfile +++ b/tests/eval/buildfile @@ -12,3 +12,33 @@ print ((foo) (bar)) print (foo\ bar) + +# !=, == vs !, = recognition +# +print (=) +print (!) +print (= foo) +print (foo!) + +# !=, == evaluation +# + +# print ( == bar) +# print (foo == ) + +print (foo == bar) +print (foo == foo) +print (foo != bar) +print (foo != foo) + +print (foo == (foo)) +print ((foo bar) == foo bar) +print (foo != foo bar) +print ("" == '') + +print ((foo != bar) baz) +print "foo equals bar is (foo == bar)" + +foo = foo +print ($foo == foo) +print (bar != $foo) diff --git a/tests/eval/test.out b/tests/eval/test.out index 5885c7d..599f928 100644 --- a/tests/eval/test.out +++ b/tests/eval/test.out @@ -2,3 +2,19 @@ foobar foo bar foobar += +! += foo +foo! +false +true +true +false +true +true +true +true +true baz +foo equals bar is false +true +true diff --git a/tests/if-else/buildfile b/tests/if-else/buildfile index 30da40f..2b87b8c 100644 --- a/tests/if-else/buildfile +++ b/tests/if-else/buildfile @@ -106,6 +106,23 @@ if! $f ./: +# With eval context. +# +if (foo == foo) +{ + print 1 +} + +if(foo != bar) +{ + print 1 +} + +if!(foo == bar) +{ + print 1 +} + # EOF test. # if true diff --git a/tests/if-else/test.out b/tests/if-else/test.out index bb08505..4dff9ef 100644 --- a/tests/if-else/test.out +++ b/tests/if-else/test.out @@ -7,3 +7,6 @@ 1 1 1 +1 +1 +1 |