From 8c7962bee84aebca08773e9890d41a8d464b5967 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 24 Sep 2014 16:17:42 +0200 Subject: [PATCH] Rename the pixel conversion performance test We want to have other tests related to pixel conversion, so avoid possible naming conflicts. --- tests/CMakeLists.txt | 4 ++-- tests/{pixelconv.cxx => convperf.cxx} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename tests/{pixelconv.cxx => convperf.cxx} (98%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fd47c15a..cce2f1ec 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,5 +2,5 @@ include_directories(${CMAKE_SOURCE_DIR}/common) add_library(test_util STATIC util.cxx) -add_executable(pixelconv pixelconv.cxx) -target_link_libraries(pixelconv test_util rfb) +add_executable(convperf convperf.cxx) +target_link_libraries(convperf test_util rfb) diff --git a/tests/pixelconv.cxx b/tests/convperf.cxx similarity index 98% rename from tests/pixelconv.cxx rename to tests/convperf.cxx index 031ba8ce..6158b2d8 100644 --- a/tests/pixelconv.cxx +++ b/tests/convperf.cxx @@ -120,7 +120,7 @@ int main(int argc, char **argv) time(&t); strftime(datebuffer, sizeof(datebuffer), "%Y-%m-%d %H:%M UTC", gmtime(&t)); - printf("# Pixel Conversion Test %s\n", datebuffer); + printf("# Pixel Conversion Performance Test %s\n", datebuffer); printf("#\n"); printf("# Frame buffer: %dx%d pixels\n", fbsize, fbsize); printf("# Tile size: %dx%d pixels\n", tile, tile); -- 2.39.5