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
491 B
8 lines
491 B
#!/bin/bash
|
|
# Author: Alice Kaerast <alice@kaerast.info>
|
|
t_Log "$0 testing pathchk gives good results"
|
|
pathchk -p "<>" 2> /dev/null
|
|
test $? -eq 1 && pathchk /var/tmp/1234567890123456789012345123456789012345678901234512345678901234567890123451234567890123456789012345123456789012345678901234512345678901234567890123451234567890123456789012345123456789012345678901234512345678901234567890123451234567890123456789012345123456 2> /dev/null
|
|
test $? -eq 1 && pathchk /var/tmp
|
|
t_CheckExitStatus $?
|