aboutsummaryrefslogtreecommitdiff
path: root/tests/directive/assert.test
blob: f7f2a4f7466d46f030859554b1d7dd18fbf91300 (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
# file      : tests/directive/assert.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include ../common.test

$* <'assert true'                     : true
$* <'assert! false foo'               : not-false
$* <'assert true $no_such_function()' : skip-line
$* <'assert! $empty($build.version)'  : expr

: false
:
$* <'assert false' 2>>EOE != 0
<stdin>:1:1: error: assertion failed
EOE

: false-desc
:
$* <'assert false bad thing happened: (a == b)' 2>>EOE != 0
<stdin>:1:1: error: assertion failed: bad thing happened: false
EOE

: invalid
:
$* <'assert junk' 2>>EOE != 0
<stdin>:1:8: error: invalid bool value: 'junk'
EOE