Allow CLANG env variable to override "clang" command in TestRunner.sh


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54005 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/TestRunner.sh b/test/TestRunner.sh
index 49a15a4..36cec72 100755
--- a/test/TestRunner.sh
+++ b/test/TestRunner.sh
@@ -41,7 +41,10 @@
 )
 
 # Run under valgrind if the VG environment variable has been set.
-CLANG="clang"
+CLANG=$CLANG
+if [ "$CLANG" == "" ]; then
+    CLANG="clang"
+fi
 if [ -n "$VG" ]; then
   rm -f $OUTPUT.vg.*
   CLANG="valgrind --leak-check=full --quiet --log-file=$OUTPUT.vg.%p $CLANG"