Skip to content

Commit

Permalink
log "Abort trap" or similar messages
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsysoev committed May 11, 2011
1 parent 50733a5 commit 768f7a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions auto/feature
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ if [ -x $NGX_AUTOTEST ]; then

yes)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then
if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then
echo " found"
ngx_found=yes

Expand All @@ -67,7 +67,7 @@ if [ -x $NGX_AUTOTEST ]; then

value)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then
if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then
echo " found"
ngx_found=yes

Expand All @@ -85,7 +85,7 @@ END

bug)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then
if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then
echo " not found"

else
Expand Down

0 comments on commit 768f7a0

Please sign in to comment.