am 51aa0862: Fix compiler accidentally being passed twice.

* commit '51aa0862f99f6f87c3e03445b46344893a2b445c':
  Fix compiler accidentally being passed twice.
diff --git a/test/lit.cfg b/test/lit.cfg
index 9847d60..2428613 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -92,7 +92,7 @@
         return self._evaluate_test(test, lit_config)
 
     def _build(self, exec_path, source_path, compile_only=False):
-        cmd = [self.cxx_under_test, self.cxx_under_test, '-o', exec_path,
+        cmd = [self.cxx_under_test, '-o', exec_path,
                source_path] + self.cpp_flags
         if compile_only:
             cmd += ['-c']