blob: 540fa7c39d8c39fac9f87e29c89f4bee0aca7259 (
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");
}
|