diff --git a/.travis.yml b/.travis.yml index 9cf03f6..6cd91f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ os: linux before_script: - rm -rf * - git clone https://github.com/atria-soft/etk.git - - git clone https://github.com/generic-library/gtest-lutin.git + - git clone https://github.com/generic-library/gtest-lutin.git --recursive - git clone https://github.com/musicdsp/audio.git - if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi @@ -24,8 +24,8 @@ install: - sudo pip install lutin script: - - lutin -C -P -c$BUILDER -mdebug -p audio_test - - ./out/Linux_x86_64/debug/staging/$BUILDER/audio_test/usr/bin/audio_test + - lutin -C -P -c$BUILDER -mdebug -p audio-test + - ./out/Linux_x86_64/debug/staging/$BUILDER/audio-test/usr/bin/audio-test #send e-mail on compilation result: notifications: diff --git a/lutin_audio_test.py b/lutin_audio-test.py similarity index 84% rename from lutin_audio_test.py rename to lutin_audio-test.py index fa31a29..f6e1af9 100644 --- a/lutin_audio_test.py +++ b/lutin_audio-test.py @@ -3,11 +3,11 @@ import lutin.module as module import lutin.tools as tools def get_desc(): - return "audio_test : Basic audio types test" + return "Basic audio types test" def create(target): - myModule = module.Module(__file__, 'audio_test', 'BINARY') + myModule = module.Module(__file__, 'audio-test', 'BINARY') myModule.add_src_file([ 'test/debug.cpp', 'test/base.cpp',