Main.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #include <locale.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include "Test.h"
  5. #include "Tests.h"
  6. #include "core/Logger.h"
  7. #include "core/Utility.h"
  8. static void onExit(int code, void* data) {
  9. unsigned int i = *(unsigned int*)(data);
  10. CORE_LOG_WARNING("Hello from exit %d: %u", code, i);
  11. coreFinalizeTests();
  12. corePrintMemoryReport();
  13. }
  14. int main(int argAmount, const char** args) {
  15. setlocale(LC_ALL, "en_US.utf8");
  16. bool light = false;
  17. for(int i = 0; i < argAmount; i++) {
  18. if(strcmp(args[i], "light") == 0) {
  19. light = true;
  20. } else if(strcmp(args[i], "alloc") == 0) {
  21. coreTestInvalidAllocate();
  22. } else if(strcmp(args[i], "realloc") == 0) {
  23. coreTestInvalidReallocate();
  24. } else if(strcmp(args[i], "pre_canary") == 0) {
  25. coreTestPreCanary();
  26. } else if(strcmp(args[i], "post_canary") == 0) {
  27. coreTestPostCanary();
  28. }
  29. }
  30. // coreTestBitArray();
  31. // coreTestBox();
  32. coreTestBuffer(light);
  33. // coreTestColor();
  34. // coreTestComponents();
  35. // coreTestFrustum();
  36. // coreTestHashMap(light);
  37. // coreTestLinkedList(light);
  38. // coreTestList(light);
  39. // coreTestMatrixStack(light);
  40. // coreTestMatrix();
  41. // coreTestPlane();
  42. // coreTestQuaternion();
  43. coreTestRandom(light);
  44. // coreTestRingBuffer();
  45. // coreTestStack(light);
  46. // coreTestThread();
  47. coreTestUtility(light);
  48. // coreTestVector();
  49. // coreTestView();
  50. coreLogLevel = CORE_LOG_WARNING;
  51. CORE_LOG_DEBUG("You won't see this!");
  52. coreLogLevel = CORE_LOG_DEBUG;
  53. unsigned int data = 123456789;
  54. coreSetExitHandler(onExit, &data);
  55. CORE_EXIT(1);
  56. return 0;
  57. }