TEST: test for global variable initialization added

This commit is contained in:
Konstantin Anisimov
2016-12-16 09:56:55 +03:00
committed by vvlevchenko
parent 86bb5477c5
commit 5f097350ac
4 changed files with 35 additions and 3 deletions
+5
View File
@@ -19,7 +19,12 @@ void * resolve_symbol(char *name) {
return symbol;
}
extern void InitMemory();
extern void InitGlobalVariables();
int
main() {
InitMemory();
InitGlobalVariables();
exit(run_test());
}