aboutsummaryrefslogtreecommitdiff
path: root/build2/lexer+eval.test.testscript
diff options
context:
space:
mode:
Diffstat (limited to 'build2/lexer+eval.test.testscript')
-rw-r--r--build2/lexer+eval.test.testscript76
1 files changed, 0 insertions, 76 deletions
diff --git a/build2/lexer+eval.test.testscript b/build2/lexer+eval.test.testscript
deleted file mode 100644
index eccd029..0000000
--- a/build2/lexer+eval.test.testscript
+++ /dev/null
@@ -1,76 +0,0 @@
-# file : build2/lexer+eval.test.testscript
-# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-test.arguments = eval
-
-: punctuation
-:
-$* <:'x:x{x}x[x]x$x?x,x(x)' >>EOO
-'x'
-:
-'x'
-{
-'x'
-}
-'x'
-[
-'x'
-]
-'x'
-$
-'x'
-?
-'x'
-,
-'x'
-(
-'x'
-)
-EOO
-
-: logical
-:
-$* <:'x|x||x&x&&x!x!!x)' >>EOO
-'x|x'
-||
-'x&x'
-&&
-'x'
-!
-'x'
-!
-!
-'x'
-)
-EOO
-
-: comparison
-:
-$* <:'x=x==x!=x<x<=x>x>=)' >>EOO
-'x=x'
-==
-'x'
-!=
-'x'
-<
-'x'
-<=
-'x'
->
-'x'
->=
-)
-EOO
-
-: newline
-:
-$* <'x' >- 2>>EOE != 0
-stdin:1:2: error: newline in evaluation context
-EOE
-
-: eof
-:
-$* <:'' 2>>EOE != 0
-stdin:1:1: error: unterminated evaluation context
-EOE