r186945 - Use -### instead of -ccc-echo.

Rafael Espindola rafael.espindola at gmail.com
Tue Jul 23 08:17:52 PDT 2013


Author: rafael
Date: Tue Jul 23 10:17:51 2013
New Revision: 186945

URL: http://llvm.org/viewvc/llvm-project?rev=186945&view=rev
Log:
Use -### instead of -ccc-echo.

This is still a fairly odd test. Clang wants to run gcc for assembling. At
least with -### it only prints that instead of actually trying to run it with
-ccc-echo.

Modified:
    cfe/trunk/test/Driver/x86_64-nacl-defines.cpp

Modified: cfe/trunk/test/Driver/x86_64-nacl-defines.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/x86_64-nacl-defines.cpp?rev=186945&r1=186944&r2=186945&view=diff
==============================================================================
--- cfe/trunk/test/Driver/x86_64-nacl-defines.cpp (original)
+++ cfe/trunk/test/Driver/x86_64-nacl-defines.cpp Tue Jul 23 10:17:51 2013
@@ -1,4 +1,4 @@
-// RUN: %clang -target x86_64-unknown-nacl -ccc-echo %s -emit-llvm-only -c -o %t.o 2>&1 | FileCheck %s -check-prefix=ECHO
+// RUN: %clang -target x86_64-unknown-nacl -### %s -emit-llvm-only -c -o %t.o 2>&1 | FileCheck %s -check-prefix=ECHO
 // RUN: %clang -target x86_64-unknown-nacl %s -emit-llvm -S -c -o - | FileCheck %s
 // RUN: %clang -target x86_64-unknown-nacl %s -emit-llvm -S -c -pthread -o - | FileCheck %s -check-prefix=THREADS
 





More information about the cfe-commits mailing list