You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Optional cuda support in unit tests can be improved using the new feature GTEST_SKIP in 1.10
#else
GTEST_SKIP_("Library built without CUDA support, skipping CUDA test");
#endif
The the rest of the ifdefs in the test file will then be unnecessary and don't need to manually skip/disable tests.
Of course if you change to a runtime check then this would be slightly different, but the same idea.
The text was updated successfully, but these errors were encountered:
Optional cuda support in unit tests can be improved using the new feature GTEST_SKIP in 1.10
The the rest of the ifdefs in the test file will then be unnecessary and don't need to manually skip/disable tests.
Of course if you change to a runtime check then this would be slightly different, but the same idea.
The text was updated successfully, but these errors were encountered: