From 7b05862cfe69ece782493b9f3f78338262e569bd Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sun, 9 Sep 2012 13:07:41 +0100 Subject: [PATCH] Disable VM test file by default --- src/tests/VirtualMachineTest.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tests/VirtualMachineTest.cpp b/src/tests/VirtualMachineTest.cpp index fef05381a..0bf9bef97 100644 --- a/src/tests/VirtualMachineTest.cpp +++ b/src/tests/VirtualMachineTest.cpp @@ -1,3 +1,5 @@ +#ifdef TEST + #include #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() << std::endl; //vm->Run(); -} \ No newline at end of file +} +#endif \ No newline at end of file