Disable VM test file by default

This commit is contained in:
Simon Robertshaw 2012-09-09 13:07:41 +01:00
parent b2a2940d8c
commit 7b05862cfe

View File

@ -1,3 +1,5 @@
#ifdef TEST
#include <iostream> #include <iostream>
#include "virtualmachine/VirtualMachine.h" #include "virtualmachine/VirtualMachine.h"
@ -9,3 +11,4 @@ int main(int argc, char * argv[])
std::cout << "Return value: " << vm->Pop<vm::uint4_t>() << std::endl; std::cout << "Return value: " << vm->Pop<vm::uint4_t>() << std::endl;
//vm->Run(); //vm->Run();
} }
#endif