blob: 0ef1ee9f91b116e4176626c141953d522002d1be (
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 @@ status- is already in file name
$* == 0 # status-eq-0
$* -s 1 != 0 # status-ne-0
$* -s 1 == 1 # status-eq-1
$* != 1 # status-ne-1
|