blob: 6a2c06ca7b40a70b3c5c4fd203a9a5651a9ad70f (
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
|
# file : tests/test/script/runner/status.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
.include ../common.test
b += --no-column
# Successfull tests.
#
: eq-true
:
$c <'$* == 0';
$b
: ne-true
:
$c <'$* -s 1 != 0';
$b
# Faulty tests.
#
: eq-false
:
$c <'$* -s 1 == 0';
$b 2>>~%EOE% != 0
%testscript:1: error: \.\.[/\\]\.\.[/\\]\.\.[/\\]driver(.exe)? exit status 1 != 0%
EOE
: ne-false
:
$c <'$* -s 1 != 1';
$b 2>>~%EOE% != 0
%testscript:1: error: \.\.[/\\]\.\.[/\\]\.\.[/\\]driver(.exe)? exit status 1 == 1%
EOE
|