From 8f5b5fa2b1ed81a8467c9ac9bc45904811f39069 Mon Sep 17 00:00:00 2001 From: Fabian Arrotin Date: Aug 29 2011 20:43:19 +0000 Subject: Fixed a typo : t_log -> t_Log --- diff --git a/tests/p_procinfo/5-test_procinfo.sh b/tests/p_procinfo/5-test_procinfo.sh index 6339c57..9dd8bfa 100755 --- a/tests/p_procinfo/5-test_procinfo.sh +++ b/tests/p_procinfo/5-test_procinfo.sh @@ -5,8 +5,8 @@ t_Log "Running $0 - checking procinfo runs and returns non-zero exit status." PROCINFO=`which procinfo` -[ "$PROCINFO" ] || { t_log "Failed to find procinfo binary. Cannot continue."; exit $FAIL; } +[ "$PROCINFO" ] || { t_Log "Failed to find procinfo binary. Cannot continue."; exit $FAIL; } $PROCINFO &>/dev/null -[ $? -eq 0 ] || { t_log "Procinfo exited with non-zero status. That ain't good..."; exit $FAIL; } +[ $? -eq 0 ] || { t_Log "Procinfo exited with non-zero status. That ain't good..."; exit $FAIL; }