init_ut.cpp 269 B

1234567891011121314151617
  1. #include <library/cpp/testing/unittest/registar.h>
  2. #ifdef _linux_
  3. #include <infiniband/verbs.h>
  4. #endif
  5. Y_UNIT_TEST_SUITE(TInitIbDrv) {
  6. Y_UNIT_TEST(Init) {
  7. #ifdef _linux_
  8. try {
  9. ibv_fork_init();
  10. } catch (...) {
  11. }
  12. #endif
  13. }
  14. }