|
@@ -21,6 +21,7 @@
|
|
|
#include "tests/RandomTests.h"
|
|
|
#include "tests/RingBufferTests.h"
|
|
|
#include "tests/StackTests.h"
|
|
|
+#include "tests/ThreadTests.h"
|
|
|
#include "tests/UniquePointerTests.h"
|
|
|
#include "tests/UtilityTests.h"
|
|
|
#include "tests/VectorTests.h"
|
|
@@ -42,7 +43,8 @@ static void onError(const char* file, int line, Core::Error e, void*) {
|
|
|
e == Core::Error::INVALID_REMOVE_INDEX) {
|
|
|
return;
|
|
|
}
|
|
|
- CORE_LOG_ERROR("Error in #:# - #", file, line, static_cast<int>(e));
|
|
|
+ CORE_LOG_ERROR("Error in #:# - #:#", file, line, static_cast<int>(e),
|
|
|
+ Core::getErrorName(e));
|
|
|
}
|
|
|
|
|
|
int main() {
|
|
@@ -70,6 +72,7 @@ int main() {
|
|
|
Core::RandomTests::test();
|
|
|
Core::RingBufferTests::test();
|
|
|
Core::StackTests::test();
|
|
|
+ Core::ThreadTests::test();
|
|
|
Core::UniquePointerTests::test();
|
|
|
Core::UtilityTests::test();
|
|
|
Core::VectorTests::test();
|