diff options
author | Roman Lebedev <lebedev.ri@gmail.com> | 2017-10-15 20:46:12 +0000 |
---|---|---|
committer | Roman Lebedev <lebedev.ri@gmail.com> | 2017-10-15 20:46:12 +0000 |
commit | 7beeee49c24bb013ffece3f2cd49f49d1173f70f (patch) | |
tree | 83c7d9acb95c6ed94dad7f77cc8fb8d54014193d /libcxx/test/std/experimental/filesystem/fs.op.funcs | |
parent | 6de129e710cfb2857064b236e90d53c0c41ea92c (diff) | |
download | bcm5719-llvm-7beeee49c24bb013ffece3f2cd49f49d1173f70f.tar.gz bcm5719-llvm-7beeee49c24bb013ffece3f2cd49f49d1173f70f.zip |
Really do make sure that last_write_time.pass.cpp still works with old clang
I *did* try to check that such kind of an issue was not introduced
by the rL315874, but clearly i failed to finish verification.
llvm-svn: 315876
Diffstat (limited to 'libcxx/test/std/experimental/filesystem/fs.op.funcs')
-rw-r--r-- | libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp index 49da6fbd2ae..cd7a556fa4c 100644 --- a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp +++ b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp @@ -89,9 +89,11 @@ bool TestSupportsNegativeTimes() { } // In some configurations, the comparison is tautological and the test is valid. -// We disable the warning so that we can actually test it regardless. +// We disable the warning so that we can actually test it regardless. Also, that +// diagnostic is pretty new, so also don't fail if old clang does not support it #if defined(__clang__) #pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunknown-warning-option" #pragma clang diagnostic ignored "-Wtautological-constant-compare" #endif @@ -123,9 +125,11 @@ static const bool SupportsMaxTime = TestSupportsMaxTime(); } // end namespace // In some configurations, the comparison is tautological and the test is valid. -// We disable the warning so that we can actually test it regardless. +// We disable the warning so that we can actually test it regardless. Also, that +// diagnostic is pretty new, so also don't fail if old clang does not support it #if defined(__clang__) #pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunknown-warning-option" #pragma clang diagnostic ignored "-Wtautological-constant-compare" #endif |