Plumbing through circuit test stuff.

This commit is contained in:
Adam Ierymenko 2015-10-06 14:42:51 -07:00
parent 5341afcdcd
commit d3f29d09e8
5 changed files with 339 additions and 41 deletions

View file

@ -1020,44 +1020,6 @@ public:
VERB_CIRCUIT_TEST_REPORT = 18
};
/**
* Platforms reported in circuit tests
*/
enum CircuitTestReportPlatform
{
CIRCUIT_TEST_REPORT_PLATFORM_UNSPECIFIED = 0,
CIRCUIT_TEST_REPORT_PLATFORM_LINUX = 1,
CIRCUIT_TEST_REPORT_PLATFORM_WINDOWS = 2,
CIRCUIT_TEST_REPORT_PLATFORM_MACOS = 3,
CIRCUIT_TEST_REPORT_PLATFORM_ANDROID = 4,
CIRCUIT_TEST_REPORT_PLATFORM_IOS = 5,
CIRCUIT_TEST_REPORT_PLATFORM_SOLARIS_SMARTOS = 6,
CIRCUIT_TEST_REPORT_PLATFORM_FREEBSD = 7,
CIRCUIT_TEST_REPORT_PLATFORM_NETBSD = 8,
CIRCUIT_TEST_REPORT_PLATFORM_OPENBSD = 9,
CIRCUIT_TEST_REPORT_PLATFORM_RISCOS = 10,
CIRCUIT_TEST_REPORT_PLATFORM_VXWORKS = 11,
CIRCUIT_TEST_REPORT_PLATFORM_FREERTOS = 12,
CIRCUIT_TEST_REPORT_PLATFORM_SYSBIOS = 13,
CIRCUIT_TEST_REPORT_PLATFORM_HURD = 14
};
/**
* Architectures reported in circuit tests
*/
enum CircuitTestReportArchitecture
{
CIRCUIT_TEST_REPORT_ARCH_UNSPECIFIED = 0,
CIRCUIT_TEST_REPORT_ARCH_X86 = 1,
CIRCUIT_TEST_REPORT_ARCH_X64 = 2,
CIRCUIT_TEST_REPORT_ARCH_ARM32 = 3,
CIRCUIT_TEST_REPORT_ARCH_ARM64 = 4,
CIRCUIT_TEST_REPORT_ARCH_MIPS32 = 5,
CIRCUIT_TEST_REPORT_ARCH_MIPS64 = 6,
CIRCUIT_TEST_REPORT_ARCH_POWER32 = 7,
CIRCUIT_TEST_REPORT_ARCH_POWER64 = 8
};
/**
* Error codes for VERB_ERROR
*/