winpty/misc/buffer-tests/HandleTests.cc
2015-10-23 02:00:16 -05:00

16 lines
254 B
C++
Executable File

#include <TestCommon.h>
void runCommonTests();
void runTraditionalTests();
void runModernTests();
int main() {
runCommonTests();
if (isAtLeastWin8()) {
runModernTests();
} else {
runTraditionalTests();
}
return 0;
}