12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- // SexyKanjiTestSuite.cpp : Defines the entry point for the console application.
- //
- #include "MiniCppUnit.hxx"
- #ifdef WIN32
- #include <direct.h>
- #else
- #include <unistd.h>
- #endif // WIN32
- #include <ctime>
- #include "KString.h"
- #include <stdio.h>
- #include "spine/extension.h"
- #include "spine/spine.h"
- #include "KMemory.h" // last include
- void RegisterMemoryLeakDetector() {
- // Register our malloc and free functions to track memory leaks
- #ifdef KANJI_MEMTRACE
- _spSetDebugMalloc(_kanjimalloc);
- #endif
- _spSetMalloc(_kanjimalloc);
- _spSetRealloc(_kanjirealloc);
- _spSetFree(_kanjifree);
- }
- int main(int argc, char *argv[]) {
- RegisterMemoryLeakDetector();
- // Start Timing
- time_t start_time, end_time;
- time(&start_time);
- /* Set working directory to current location for opening test data */
- #ifdef WIN32
- _chdir( GetFileDir(argv[0], false).c_str() );
- #else
- chdir(GetFileDir(argv[0], false).c_str());
- #endif
- // Run Test Suite
- if (JetBrains::underTeamcity()) gTeamCityListener.startSuite("Spine-C Test Suite");
- int ret_val = TestFixtureFactory::theInstance().runTests() ? 0 : -1;
- if (JetBrains::underTeamcity()) gTeamCityListener.endSuite("Spine-C Test Suite");
- // End Timing
- time(&end_time);
- double secs = difftime(end_time, start_time);
- printf("\n\n%i minutes and %i seconds of your life taken from you by these tests.\n", ((int) secs) / 60,
- ((int) secs) % 60);
- spAnimationState_disposeStatics(); // Fix for #775
- return ret_val;
- }
- extern "C" { // probably unnecessary
- void _spAtlasPage_createTexture(spAtlasPage *self, const char *path) {
- self->rendererObject = 0;
- self->width = 2048;
- self->height = 2048;
- }
- void _spAtlasPage_disposeTexture(spAtlasPage *self) {
- }
- char *_spUtil_readFile(const char *path, int *length) {
- return _spReadFile(path, length);
- }
- }
|