blob: 95d8039bbdef04eb9f8a1f8e682c91b8cdc91768 (
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");
}
|