diff options
author | Richard Trieu <rtrieu@google.com> | 2018-09-05 22:14:46 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2018-09-05 22:14:46 +0000 |
commit | 0b9234b915d37b186b7631ee77ad591793d1305c (patch) | |
tree | 3fcd1f11ae3b42695a7b5cc97cf6383176314c39 | |
parent | 8aa23614af3c466d196a9aadaf641fc34e1b83cd (diff) | |
download | bcm5719-llvm-0b9234b915d37b186b7631ee77ad591793d1305c.tar.gz bcm5719-llvm-0b9234b915d37b186b7631ee77ad591793d1305c.zip |
Remove unnecessary options from test RUN lines.
These tests do not check the color printing, so color options should not
be used when running them.
llvm-svn: 341498
-rw-r--r-- | clang/test/Modules/odr_hash-Friend.cpp | 10 | ||||
-rw-r--r-- | clang/test/Modules/odr_hash-gnu.cpp | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Modules/odr_hash-Friend.cpp b/clang/test/Modules/odr_hash-Friend.cpp index 8a2513e2f9c..e55d9e8fd45 100644 --- a/clang/test/Modules/odr_hash-Friend.cpp +++ b/clang/test/Modules/odr_hash-Friend.cpp @@ -9,7 +9,7 @@ // RUN: -fmodules \ // RUN: -fimplicit-module-maps \ // RUN: -fmodules-cache-path=%t/modules.cache \ -// RUN: -std=c++11 -x c++ %s -verify -DTEST1 -fcolor-diagnostics +// RUN: -std=c++11 -x c++ %s -verify -DTEST1 // RUN: %clang_cc1 \ // RUN: -I %S/Inputs/odr_hash-Friend \ @@ -17,7 +17,7 @@ // RUN: -fmodules \ // RUN: -fimplicit-module-maps \ // RUN: -fmodules-cache-path=%t/modules.cache \ -// RUN: -std=c++11 -x c++ %s -verify -DTEST2 -fcolor-diagnostics +// RUN: -std=c++11 -x c++ %s -verify -DTEST2 // RUN: %clang_cc1 \ // RUN: -I %S/Inputs/odr_hash-Friend \ @@ -25,7 +25,7 @@ // RUN: -fmodules \ // RUN: -fimplicit-module-maps \ // RUN: -fmodules-cache-path=%t/modules.cache \ -// RUN: -std=c++11 -x c++ %s -verify -DTEST3 -fcolor-diagnostics +// RUN: -std=c++11 -x c++ %s -verify -DTEST3 // RUN: %clang_cc1 \ // RUN: -I %S/Inputs/odr_hash-Friend \ @@ -33,7 +33,7 @@ // RUN: -fmodules \ // RUN: -fimplicit-module-maps \ // RUN: -fmodules-cache-path=%t/modules.cache \ -// RUN: -std=c++11 -x c++ %s -verify -DTEST3 -fcolor-diagnostics +// RUN: -std=c++11 -x c++ %s -verify -DTEST3 // RUN: %clang_cc1 \ // RUN: -I %S/Inputs/odr_hash-Friend \ @@ -41,7 +41,7 @@ // RUN: -fmodules \ // RUN: -fimplicit-module-maps \ // RUN: -fmodules-cache-path=%t/modules.cache \ -// RUN: -std=c++11 -x c++ %s -verify -DTEST3 -fcolor-diagnostics +// RUN: -std=c++11 -x c++ %s -verify -DTEST3 #if defined(TEST1) #include "Box.h" diff --git a/clang/test/Modules/odr_hash-gnu.cpp b/clang/test/Modules/odr_hash-gnu.cpp index 584c24d5613..7091bb55984 100644 --- a/clang/test/Modules/odr_hash-gnu.cpp +++ b/clang/test/Modules/odr_hash-gnu.cpp @@ -25,7 +25,7 @@ // RUN: echo "}" >> %t/Inputs/module.map // Run test -// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -x c++ -I%t/Inputs -verify %s -std=gnu++11 -fcolor-diagnostics +// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -x c++ -I%t/Inputs -verify %s -std=gnu++11 #if !defined(FIRST) && !defined(SECOND) #include "first.h" |