aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/status.testscript
blob: 271bf4f0237e196be1ac14afda067cfc092463c2 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# file      : tests/test/script/runner/status.testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include ../common.testscript

b += --no-column

: eq
:
{
  : true
  :
  $c <'$* == 0' && $b

  : false
  :
  $c <'$* -s 1 == 0' && $b 2>>/~%EOE%d != 0
  %testscript:1: error: ../../../../driver(.exe)? exit code 1 != 0%
    info: test id: 1
  EOE
}

: ne
:
{
  : true
  :
  $c <'$* -s 1 != 0' && $b

  : false
  :
  $c <'$* -s 1 != 1' && $b 2>>/~%EOE% != 0
  %testscript:1: error: ../../../../driver(.exe)? exit code 1 == 1%
    info: test id: 1
  EOE
}

: error
:
$c <'$* -s 1 -e "Error"' && $b 2>>/~%EOE% != 0
%testscript:1: error: ../../../driver(.exe)? exit code 1 != 0%
  info: stderr: test/1/stderr
Error
  info: test id: 1
EOE

#\
: segmentation-fault
:
: Can pop up dialog boxes on Windows or produce coredump on POSIX. Note that
: under Wine some extra info is printed to STDOUT.
:
$c <'$* -t m' && $b 2>>/~%EOE% != 0
%wine: .+%?
%testscript:1: error: ../../../driver(.exe)? terminated abnormally%d
%  info: .+%
%  info: stdout: test\\1\\stdout%?
EOE
#\