2
0

Main.cpp 574 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <Tests/Framework/Framework.h>
  6. #include "anki/util/Filesystem.h"
  7. using namespace anki;
  8. int main(int argc, char** argv)
  9. {
  10. HeapAllocator<U8> alloc(allocAligned, nullptr);
  11. // Call a few singletons to avoid memory leak confusion
  12. LoggerSingleton::get();
  13. int exitcode = getTesterSingleton().run(argc, argv);
  14. LoggerSingleton::destroy();
  15. deleteTesterSingleton();
  16. return exitcode;
  17. }