openh264/test/api/simple_test.cpp
2014-06-05 01:20:50 -07:00

22 lines
431 B
C++

#include <gtest/gtest.h>
#if defined (ANDROID_NDK)
#include <stdio.h>
#endif
#if (defined(ANDROID_NDK)||defined(APPLE_IOS))
int CodecUtMain(int argc , char** argv ) {
#else
int main (int argc, char** argv) {
#endif
#if defined(ANDROID_NDK)
char xmlPath[1024] = "";
sprintf(xmlPath,"xml:%s",argv[1]);
::testing::GTEST_FLAG(output) = xmlPath;
#endif
::testing::InitGoogleTest (&argc, argv);
return RUN_ALL_TESTS();
}