aboutsummaryrefslogtreecommitdiff
path: root/tests/directive/run.testscript
blob: 199dd5fe11552ca46b77791c9ffadf60ffe3d440 (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
28
29
30
31
32
33
34
35
36
37
38
# file      : tests/directive/run.testscript
# license   : MIT; see accompanying LICENSE file

# We are going to run the build system driver so no cross-testing.
#
crosstest = false

.include ../common.testscript

run = "run '$0' --no-default-options noop"

: no-output
:
cat <'assert true' >=buildfile;
$* <"$run"

: output
:
cat <'print foo=bar' >=buildfile;
$* <<"EOI" >'bar'
$run
print \$foo
EOI

: bad-exit
:
cat <'assert false' >=buildfile;
$* <"$run" 2>>EOE != 0
buildfile:1:1: error: assertion failed
EOE

: bad-output
:
cat <'print run' >=buildfile;
$* <"$run" 2>>"EOE" != 0
<stdout>:1:4: error: expected executable name after run
  <stdin>:1:5: info: while parsing $0 output
EOE