[lit] Fix handling of per test timeout when the installed psutil version
[oota-llvm.git] / utils / llvmgrep
index 566ed829737596f4ea5d5d49148e2ee2094e9969..dc15da4961efcad5cd8c668056af99f1c7099ccd 100755 (executable)
@@ -29,11 +29,11 @@ if test -d "$TOPDIR" ; then
   cd $TOPDIR
   case `uname -s` in
     SunOS) grep_cmd="ggrep -H -n" ;;
-    Linux) grep_cmd="egrep -H -n" ;;
+    Linux|Darwin) grep_cmd="egrep -H -n" ;;
     *) grep_cmd="egrep -l -n" ;;
   esac
   ./utils/llvmdo -topdir "$TOPDIR" \
-    -dirs "include lib tools utils docs examples test projects cmake" $grep_cmd "$*"
+    -dirs "include lib tools utils docs examples test unittests projects cmake" $grep_cmd "$*"
 else
   echo "Can't find LLVM top directory"
 fi