Main.cpp 490 B

123456789101112131415161718192021
  1. // Copyright (C) 2009-2023, 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. ANKI_MAIN_FUNCTION(myMain)
  9. int myMain(int argc, char** argv)
  10. {
  11. HeapAllocator<U8> alloc(allocAligned, nullptr);
  12. int exitcode = getTesterSingleton().run(argc, argv);
  13. deleteTesterSingleton();
  14. return exitcode;
  15. }