Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Commit

Permalink
Fix typo in test program
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108298 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
DougGregor committed Jul 14, 2010
1 parent 47e879d commit b0a996f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/TestUtils/pch-test.pl
Expand Up @@ -17,7 +17,7 @@ ($$)
@files = `ls test/*/*.$suffix`; @files = `ls test/*/*.$suffix`;
foreach $file (@files) { foreach $file (@files) {
chomp($file); chomp($file);
my $code = system("clang- -fsyntax-only -x $language $file > /dev/null 2>&1"); my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1");
if ($code == 0) { if ($code == 0) {
print("."); print(".");
$code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1"); $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1");
Expand Down

0 comments on commit b0a996f

Please sign in to comment.