From cfc09d01c8eeccdaff6260a6542a848498056396 Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Thu, 4 Oct 2012 13:33:06 +0400 Subject: [PATCH] disabled NVidia test output by default --- modules/gpu/test/main.cpp | 8 ++++---- modules/gpu/test/test_nvidia.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/gpu/test/main.cpp b/modules/gpu/test/main.cpp index 665b3ab..12f93d2 100644 --- a/modules/gpu/test/main.cpp +++ b/modules/gpu/test/main.cpp @@ -119,10 +119,10 @@ int main(int argc, char** argv) try { const std::string keys = - "{ h help ? | | Print help}" - "{ i info | | Print information about system and exit }" - "{ device | -1 | Device on which tests will be executed (-1 means all devices) }" - "{ nvtest_output_level | compact | NVidia test verbosity level (none, compact, full) }" + "{ h help ? | | Print help}" + "{ i info | | Print information about system and exit }" + "{ device | -1 | Device on which tests will be executed (-1 means all devices) }" + "{ nvtest_output_level | none | NVidia test verbosity level (none, compact, full) }" ; CommandLineParser cmd(argc, (const char**)argv, keys); diff --git a/modules/gpu/test/test_nvidia.cpp b/modules/gpu/test/test_nvidia.cpp index 4e6db58..7d73fca 100644 --- a/modules/gpu/test/test_nvidia.cpp +++ b/modules/gpu/test/test_nvidia.cpp @@ -42,7 +42,7 @@ #include "test_precomp.hpp" #if defined HAVE_CUDA - OutputLevel nvidiaTestOutputLevel = OutputLevelCompact; + OutputLevel nvidiaTestOutputLevel = OutputLevelNone; #endif #if defined HAVE_CUDA && !defined(CUDA_DISABLER) -- 2.7.4