blob: 5d4d11660764b3b1de5fb5f02aa42068b3563765 (
plain)
1
2
3
4
5
6
7
8
9
|
# file : tests/test/script/runner/status.tests
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
$* # status-def
$* == 0 # status-eq-0
$* -s 1 != 0 # status-ne-0
$* -s 1 == 1 # status-eq-1
$* != 1 # status-ne-1
|