You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
273 B
8 lines
273 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Alice Kaerast <alice@kaerast.info>
|
||
|
|
||
|
t_Log "Running $0 - Checking which can fails on non-existing commands"
|
||
|
which abc123 2> /dev/null
|
||
|
[ $? -eq 1 ] || { t_Log "Which should have exited with 1 for a non-existing file"; exit $FAIL; }
|
||
|
t_CheckExitStatus $?
|