aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/if.testscript
blob: a625c346de29f7fce52fbdd9cbe6d1e032e9bb60 (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
# file      : tests/test/script/runner/if.testscript
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include ../common.testscript

: if-branch
:
$c <<EOI && $b >'if'
if cat <'foo' >'foo'
  echo 'if' >|
else
  echo 'else' >|
end
EOI

: else-branch
:
$c <<EOI && $b >'else'
if cat <'foo' >'bar'
  echo 'if' >|
else
  echo 'else' >|
end
EOI