forked from sig_core/toolkit
13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
r_log "coreutils" "Test true/false"
|
|
|
|
r_log "coreutils" "Test true"
|
|
true
|
|
test $? -eq 0
|
|
r_checkExitStatus $?
|
|
|
|
r_log "coreutils" "Test false"
|
|
false
|
|
test $? -eq 1
|
|
r_checkExitStatus $?
|