Main.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. // coreTestComponents();
  31. // coreTestHashMap(light);
  32. // coreTestLinkedList(light);
  33. // coreTestMatrixStack(light);
  34. // coreTestRingBuffer();
  35. coreTestBitArray();
  36. coreTestBox();
  37. coreTestBuffer(light);
  38. coreTestFrustum();
  39. coreTestList(light);
  40. coreTestMatrix();
  41. coreTestPlane();
  42. coreTestQuaternion();
  43. coreTestRandom(light);
  44. coreTestSpinLock();
  45. coreTestUtility(light);
  46. coreTestVector();
  47. coreTestView();
  48. coreLogLevel = CORE_LOG_WARNING;
  49. CORE_LOG_DEBUG("You won't see this!");
  50. coreLogLevel = CORE_LOG_DEBUG;
  51. unsigned int data = 123456789;
  52. coreSetExitHandler(onExit, &data);
  53. CORE_EXIT(1);
  54. }