aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/ibdrv/ut/init_ut.cpp
blob: 375605d16c5132f97434dc4fece1fd57b11d2930 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <library/cpp/testing/unittest/registar.h>

#ifdef _linux_
#include <infiniband/verbs.h>
#endif

Y_UNIT_TEST_SUITE(TInitIbDrv) {

    Y_UNIT_TEST(Init) {
#ifdef _linux_
        try {
            ibv_fork_init();
        } catch (...) {
        }
#endif
    }
}