ソースを参照

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年前
コミット
8c7962bee8
2個のファイルの変更3行の追加3行の削除
  1. 2
    2
      tests/CMakeLists.txt
  2. 1
    1
      tests/convperf.cxx

+ 2
- 2
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)

tests/pixelconv.cxx → 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);

読み込み中…
キャンセル
保存