]> granicus.if.org Git - clang/commitdiff
Replace uses of %T with %t in from previous frontend test differential
authorNico Weber <nicolasweber@gmx.de>
Sat, 2 Feb 2019 23:16:30 +0000 (23:16 +0000)
committerNico Weber <nicolasweber@gmx.de>
Sat, 2 Feb 2019 23:16:30 +0000 (23:16 +0000)
After committing a change I had made to a few frontend tests, it was pointed
out to me that %T is being deprecated in LLVM in favor of %t. This change
simply converts usages of %T to %t while maintaining the integrity of the test.

Previous revision where this discussion took place:
https://reviews.llvm.org/D50563

Differential Revision: https://reviews.llvm.org/D57592

Patch from Justice Adams <justice.adams@sony.com>!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@352971 91177308-0d34-0410-b5e6-96231b3b80d8

test/Frontend/output-failures.c
test/Frontend/stats-file.c

index 61f8a0d9e473dc6ede5ed84e978801beaa280d6a..33d47824c0c87ccafd8ef9cae50bdf17479c0fa0 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: not %clang_cc1 -emit-llvm -o %T/doesnotexist/somename %s 2> %t
+// RUN: not %clang_cc1 -emit-llvm -o %t/doesnotexist/somename %s 2> %t
 // RUN: FileCheck -check-prefix=OUTPUTFAIL -input-file=%t %s
 
 // OUTPUTFAIL: error: unable to open output file '{{.*}}doesnotexist{{.}}somename': '{{[nN]}}o such file or directory'
index 8b4ed1945112b5e77313fd05853944c039abd1bb..c4aa329828f14420f9a22c22de46a27e2d472e9c 100644 (file)
@@ -4,5 +4,5 @@
 //  ... here come some json values ...
 // CHECK: }
 
-// RUN: %clang_cc1 -emit-llvm -o %t -stats-file=%T/doesnotexist/bla %s 2>&1 | FileCheck -check-prefix=OUTPUTFAIL %s
+// RUN: %clang_cc1 -emit-llvm -o %t -stats-file=%t/doesnotexist/bla %s 2>&1 | FileCheck -check-prefix=OUTPUTFAIL %s
 // OUTPUTFAIL: warning: unable to open statistics output file '{{.*}}doesnotexist{{.}}bla': '{{[Nn]}}o such file or directory'