From fae547c4ebba52414a17d285d55c186e75dab683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Mangano-Tarumi?= Date: Sat, 10 Nov 2018 14:07:14 -0500 Subject: [PATCH] t: rename unit.t to opus.t --- t/CMakeLists.txt | 6 +++--- t/{unit.cc => opus.cc} | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename t/{unit.cc => opus.cc} (99%) diff --git a/t/CMakeLists.txt b/t/CMakeLists.txt index ee0cbe4..a609b66 100644 --- a/t/CMakeLists.txt +++ b/t/CMakeLists.txt @@ -1,9 +1,9 @@ -add_executable(unit.t EXCLUDE_FROM_ALL unit.cc) -target_link_libraries(unit.t libopustags) +add_executable(opus.t EXCLUDE_FROM_ALL opus.cc) +target_link_libraries(opus.t libopustags) add_custom_target( check COMMAND prove "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}" WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - DEPENDS opustags unit.t + DEPENDS opustags opus.t ) diff --git a/t/unit.cc b/t/opus.cc similarity index 99% rename from t/unit.cc rename to t/opus.cc index 7230120..9539ead 100644 --- a/t/unit.cc +++ b/t/opus.cc @@ -1,5 +1,5 @@ /** - * \file t/unit.cc + * \file t/opus.cc * * Entry point of the unit test suite. * Follows the TAP protocol.