This commit is contained in:
Ilusha 2024-03-14 08:00:35 +03:00 committed by Ilya Shurupov
parent 0b3f780ec7
commit b56829ea26
8 changed files with 52 additions and 32 deletions

View file

@ -1,5 +1,5 @@
#include "Testing.hpp"
#include "ObjectTests.hpp"
#include "compiler/function.h"
#include "core/object.h"
@ -135,8 +135,13 @@ TEST_DEF_STATIC(Complex) {
}
TEST_DEF(Interpreter) {
testEntry();
testSimple();
testSimpleSave();
// testComplex();
if (objTestModule.initialize()) {
testEntry();
testSimple();
testSimpleSave();
// testComplex();
objTestModule.deinitialize();
}
}