Travis CI 設定ファイル修正

This commit is contained in:
Takuya Sawada 2017-12-17 20:26:05 +09:00
parent 800ec5388b
commit 6fdcf7b16e
2 changed files with 4 additions and 1 deletions

View File

@ -94,4 +94,7 @@ script:
cmake ..
make VERBOSE=1
./b25 2>&1 | grep --color=auto "ARIB STD-B25"
if [ "${TRAVIS_OS_NAME}" != "osx" ]; then
./libarib25.so 2>&1 | grep --color=auto "ARIB STD-B25"
fi
EOF

View File

@ -9,7 +9,7 @@ const char elf_interp[] __attribute__((section(".interp"))) = ELF_INTERP;
void show_version(void)
{
fprintf(stderr, "libarib25.so - ARIB-STD B25 shared library version %s (%s)\n", ARIB25_VERSION_STRING, BUILD_GIT_REVISION);
fprintf(stderr, "libarib25.so - ARIB STD-B25 shared library version %s (%s)\n", ARIB25_VERSION_STRING, BUILD_GIT_REVISION);
fprintf(stderr, " built with %s %s on %s\n", BUILD_CC_NAME, BUILD_CC_VERSION, BUILD_OS_NAME);
_exit(0);
}