Merge pull request #1016 from syureyi/iosat

for auto testing
This commit is contained in:
huili2 2014-06-26 11:27:17 +08:00
commit 14f2fe214f
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ int CodecUtMain (int argc , char** argv) {
int main (int argc, char** argv) { int main (int argc, char** argv) {
#endif #endif
#if defined(ANDROID_NDK) #if (defined(ANDROID_NDK)||defined(APPLE_IOS))
char xmlPath[1024] = ""; char xmlPath[1024] = "";
sprintf (xmlPath, "xml:%s", argv[1]); sprintf (xmlPath, "xml:%s", argv[1]);
::testing::GTEST_FLAG (output) = xmlPath; ::testing::GTEST_FLAG (output) = xmlPath;

View File

@ -53,6 +53,7 @@ int main(int argc, char * argv[])
argv[0]="codec_unittest"; argv[0]="codec_unittest";
argv[1]=path; argv[1]=path;
CodecUtMain(argc,argv); CodecUtMain(argc,argv);
abort();
@autoreleasepool { @autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
} }