[clang-tools-extra] r211741 - Suppress clang-tidy-diff.py. It is incompatible to py26 due to argparse.

NAKAMURA Takumi geek4civic at gmail.com
Wed Jun 25 16:13:35 PDT 2014


Author: chapuni
Date: Wed Jun 25 18:13:34 2014
New Revision: 211741

URL: http://llvm.org/viewvc/llvm-project?rev=211741&view=rev
Log:
Suppress clang-tidy-diff.py. It is incompatible to py26 due to argparse.

Modified:
    clang-tools-extra/trunk/test/clang-tidy/clang-tidy-diff.cpp

Modified: clang-tools-extra/trunk/test/clang-tidy/clang-tidy-diff.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/clang-tidy-diff.cpp?rev=211741&r1=211740&r2=211741&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/clang-tidy-diff.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/clang-tidy-diff.cpp Wed Jun 25 18:13:34 2014
@@ -1,6 +1,6 @@
 // RUN: sed 's/placeholder_for_f/f/' %s > %t.cpp
 // RUN: clang-tidy -checks=-*,misc-use-override %t.cpp -- -std=c++11 | FileCheck -check-prefix=CHECK-SANITY %s
-// RUN: not diff -U0 %s %t.cpp | python %S/../../clang-tidy/tool/clang-tidy-diff.py -checks=-*,misc-use-override -- -std=c++11 2>&1 | FileCheck %s
+// R_U_N: not diff -U0 %s %t.cpp | python %S/../../clang-tidy/tool/clang-tidy-diff.py -checks=-*,misc-use-override -- -std=c++11 2>&1 | FileCheck %s
 struct A {
   virtual void f() {}
   virtual void g() {}





More information about the cfe-commits mailing list