diff options
author | Pierre Ossman <ossman@cendio.se> | 2014-09-24 16:17:42 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2014-09-24 16:17:42 +0200 |
commit | 8c7962bee84aebca08773e9890d41a8d464b5967 (patch) | |
tree | ad8fe4abdc32107b1263986d20a76139237ead9a /tests | |
parent | 141115a13be679283481d8b887c4cf08839922e4 (diff) | |
download | tigervnc-8c7962bee84aebca08773e9890d41a8d464b5967.tar.gz tigervnc-8c7962bee84aebca08773e9890d41a8d464b5967.zip |
Rename the pixel conversion performance test
We want to have other tests related to pixel conversion, so avoid
possible naming conflicts.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 4 | ||||
-rw-r--r-- | tests/convperf.cxx (renamed from tests/pixelconv.cxx) | 2 |
2 files changed, 3 insertions, 3 deletions
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 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); |