aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/test/script/parser/exit.test
blob: 9a4f9dcdd9be28f21994121c1c7cec3f5516b883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# file      : unit-tests/test/script/parser/exit.test
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

: eq
:
$* <<EOI >>EOO
cmd == 1
EOI
cmd == 1
EOO

: ne
:
$* <<EOI >>EOO
cmd!=1
EOI
cmd != 1
EOO

: end
:
$* <<EOI 2>>EOE != 0
cmd != 1 <"foo"
EOI
testscript:1:10: error: unexpected '<' after command exit status
EOE