Protect tests that expect an exception for an unknown std::random_device

Skip these tests under libcpp-no-exceptions.

Differential Revision: https://reviews.llvm.org/D26141



git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@285677 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Roger Ferrer Ibanez
2016-11-01 08:11:12 +00:00
parent 3b2cf9659d
commit 6168a5e55f
2 changed files with 4 additions and 2 deletions

View File

@@ -7,7 +7,6 @@
//
//===----------------------------------------------------------------------===//
// XFAIL: libcpp-no-exceptions
// <random>
// class random_device;
@@ -26,6 +25,7 @@ int main()
std::random_device::result_type e = r();
}
#ifndef TEST_HAS_NO_EXCEPTIONS
try
{
std::random_device r("/dev/null");
@@ -35,4 +35,5 @@ int main()
catch (const std::system_error&)
{
}
#endif
}