diff options
Diffstat (limited to 'clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp')
-rw-r--r-- | clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp b/clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp index 03779a62037..30199e93f44 100644 --- a/clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp +++ b/clang-tools-extra/test/cpp11-migrate/UseAuto/basic_iterator_tests.cpp @@ -15,17 +15,17 @@ // // RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp // RUN: cpp11-migrate -use-auto %t.cpp -- -DCONTAINER=array \ -// RUN: -DUSE_INLINE_NAMESPACE -I %S/Inputs +// RUN: -DUSE_INLINE_NAMESPACE=1 -I %S/Inputs // RUN: FileCheck -input-file=%t.cpp %s // // RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp // RUN: cpp11-migrate -use-auto %t.cpp -- -DCONTAINER=array \ -// RUN: -DUSE_BASE_CLASS_ITERATORS -I %S/Inputs +// RUN: -DUSE_BASE_CLASS_ITERATORS=1 -I %S/Inputs // RUN: FileCheck -input-file=%t.cpp %s // // RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp // RUN: cpp11-migrate -use-auto %t.cpp -- -DCONTAINER=array \ -// RUN: -DUSE_INNER_CLASS_ITERATORS -I %S/Inputs +// RUN: -DUSE_INNER_CLASS_ITERATORS=1 -I %S/Inputs // RUN: FileCheck -input-file=%t.cpp %s // // |