Skip to content

Commit

Permalink
Disable failing test for gcc7 as that is broken (NVIDIA#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco committed Jun 22, 2023
1 parent 182d197 commit 9d2147e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ static_assert(!cuda::std::__is_implicitly_default_constructible<NonDefaultConstr
static_assert(!cuda::std::__is_implicitly_default_constructible<NonDefaultConstructible3>::value, "");
static_assert(!cuda::std::__is_implicitly_default_constructible<ProtectedDefaultConstructible>::value, "");
static_assert(!cuda::std::__is_implicitly_default_constructible<PrivateDefaultConstructible>::value, "");
#if !defined(TEST_COMPILER_GCC) || __GNUC__ > 6 // GCC 6 complains about implicit conversion
#if !defined(TEST_COMPILER_GCC) || __GNUC__ > 7 // GCC 6 + 7 complain about implicit conversion
static_assert(!cuda::std::__is_implicitly_default_constructible<ProtectedDefaultConstructibleWithBase>::value, "");
static_assert(!cuda::std::__is_implicitly_default_constructible<PrivateDefaultConstructibleWithBase>::value, "");
#endif // !defined(TEST_COMPILER_GCC) || __GNUC__ > 6
#endif // !defined(TEST_COMPILER_GCC) || __GNUC__ > 7

int main(int, char**) {
return 0;
Expand Down

0 comments on commit 9d2147e

Please sign in to comment.