Rename the pixel conversion performance test
We want to have other tests related to pixel conversion, so avoid
possible naming conflicts.
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index fd47c15..cce2f1e 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -2,5 +2,5 @@
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 031ba8c..6158b2d 100644
--- a/tests/pixelconv.cxx
+++ b/tests/convperf.cxx
@@ -120,7 +120,7 @@
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);