blob: 271fb1f868c0efc1e714e0d81b334bdc7c39b775 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "fixed_port.h"
#include <util/system/env.h>
#include <stdlib.h>
bool NBus::NTest::IsFixedPortTestAllowed() {
// TODO: report skipped tests to test
return !GetEnv("MB_TESTS_SKIP_FIXED_PORT");
}
|