Browse Source

Rename the pixel conversion performance test

We want to have other tests related to pixel conversion, so avoid
possible naming conflicts.
tags/v1.3.90
Pierre Ossman 9 years ago
parent
commit
8c7962bee8
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      tests/CMakeLists.txt
  2. 1
    1
      tests/convperf.cxx

+ 2
- 2
tests/CMakeLists.txt View File

@@ -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)

tests/pixelconv.cxx → tests/convperf.cxx View File

@@ -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);

Loading…
Cancel
Save