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 "virtualmachine/VirtualMachine.h"
@ -8,4 +10,5 @@ int main(int argc, char * argv[])
vm->Call(0/*, 0, 88, 12*/);
std::cout << "Return value: " << vm->Pop<vm::uint4_t>() << std::endl;
//vm->Run();
}
}
#endif