[libcxx] r319994 - [libcxx] [test] Strip trailing whitespace. NFC.
Stephan T. Lavavej via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 6 16:50:23 PST 2017
Author: stl_msft
Date: Wed Dec 6 16:50:23 2017
New Revision: 319994
URL: http://llvm.org/viewvc/llvm-project?rev=319994&view=rev
Log:
[libcxx] [test] Strip trailing whitespace. NFC.
Modified:
libcxx/trunk/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp
libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp
libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp
libcxx/trunk/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp
libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
Modified: libcxx/trunk/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp?rev=319994&r1=319993&r2=319994&view=diff
==============================================================================
--- libcxx/trunk/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp (original)
+++ libcxx/trunk/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp Wed Dec 6 16:50:23 2017
@@ -178,7 +178,7 @@ void decompFilenameTest()
path p(TC.raw);
assert(p == TC.raw);
ASSERT_NOEXCEPT(p.empty());
-
+
assert(p.filename() == TC.filename);
assert(p.has_filename() != TC.filename.empty());
Modified: libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp?rev=319994&r1=319993&r2=319994&view=diff
==============================================================================
--- libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp (original)
+++ libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp Wed Dec 6 16:50:23 2017
@@ -30,7 +30,7 @@ int main()
// S s4 { s + 1, 4 };
// S s5 { s, 5 };
S sNot { "def", 3 };
-
+
LIBCPP_ASSERT_NOEXCEPT(s0.ends_with(""));
assert ( s0.ends_with(""));
Modified: libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp?rev=319994&r1=319993&r2=319994&view=diff
==============================================================================
--- libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp (original)
+++ libcxx/trunk/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp Wed Dec 6 16:50:23 2017
@@ -31,7 +31,7 @@ int main()
// S s4 { s + 1, 4 };
// S s5 { s, 5 };
S sNot { "def", 3 };
-
+
SV sv0;
SV sv1 { s + 4, 1 };
SV sv2 { s + 3, 2 };
Modified: libcxx/trunk/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp?rev=319994&r1=319993&r2=319994&view=diff
==============================================================================
--- libcxx/trunk/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp (original)
+++ libcxx/trunk/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp Wed Dec 6 16:50:23 2017
@@ -31,7 +31,7 @@ int main()
// S s4 { s, 4 };
// S s5 { s, 5 };
S sNot { "def", 3 };
-
+
SV sv0;
SV sv1 { s, 1 };
SV sv2 { s, 2 };
Modified: libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp?rev=319994&r1=319993&r2=319994&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp Wed Dec 6 16:50:23 2017
@@ -32,7 +32,7 @@ int main()
test_remove_cvref<const volatile int, int>();
test_remove_cvref<volatile int, int>();
-// Doesn't decay
+// Doesn't decay
test_remove_cvref<int[3], int[3]>();
test_remove_cvref<int const [3], int[3]>();
test_remove_cvref<int volatile [3], int[3]>();
More information about the cfe-commits
mailing list