| 44 | class BthreadTest : public ::testing::Test{ |
| 45 | protected: |
| 46 | BthreadTest(){ |
| 47 | const int kNumCores = sysconf(_SC_NPROCESSORS_ONLN); |
| 48 | if (kNumCores > 0) { |
| 49 | bthread_setconcurrency(kNumCores); |
| 50 | } |
| 51 | }; |
| 52 | virtual ~BthreadTest(){}; |
| 53 | virtual void SetUp() { |
| 54 | }; |
nothing calls this directly
no test coverage detected