auto/configure [ PAUSE ] hwcap bug
diff --git a/auto/feature b/auto/feature
index 6ad008a..37420e3 100644
--- a/auto/feature
+++ b/auto/feature
@@ -43,7 +43,8 @@
     case "$ngx_feature_run" in
 
         yes)
-            if $NGX_AUTOTEST 2>&1 > /dev/null; then
+            # /bin/sh is used to intercept "Killed" or "Abort trap" messages
+            if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
                 echo " found"
                 ngx_found=yes
 
@@ -57,7 +58,8 @@
         ;;
 
         bug)
-            if $NGX_AUTOTEST 2>&1 > /dev/null; then
+            # /bin/sh is used to intercept "Killed" or "Abort trap" messages
+            if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
                 echo " not found"
 
             else