blob: 258da0d1a58f98275055839213088febc888479d (
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");
}
|