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
|
# @test
# @summary Passed: Execution successful
# @test
# @summary Passed: Execution successful
# @run shell Pass.sh
# @test
# @summary Passed: Execution successful
# @run shell/timeout=4 Pass.sh
# @test
# @summary Failed: Execution passed unexptectedly: exit code 0
# @run shell/fail Pass.sh
# @test
# @summary Failed: Execution passed unexptectedly: exit code 0
# @run shell/fail/timeout=8 Pass.sh
# @test
# @summary Passed: Execution successful
# @run shell Pass.sh arg0 arg1 arg2 arg3
echo "I should pass"
echo "My args: " $@
|