Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
14843679
Commit
14843679
authored
Apr 02, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14217 from alalek:fix_world_gapi_tests
parents
785a540e
cd6d8048
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
31 additions
and
30 deletions
+31
-30
OpenCVModule.cmake
cmake/OpenCVModule.cmake
+2
-2
OpenCVPCHSupport.cmake
cmake/OpenCVPCHSupport.cmake
+1
-0
gapi_core_perf_tests.cpp
modules/gapi/perf/common/gapi_core_perf_tests.cpp
+1
-1
gapi_imgproc_perf_tests.cpp
modules/gapi/perf/common/gapi_imgproc_perf_tests.cpp
+1
-1
gapi_compiler_perf_tests.cpp
modules/gapi/perf/internal/gapi_compiler_perf_tests.cpp
+1
-1
gapi_compoundkernel_tests.cpp
modules/gapi/test/common/gapi_compoundkernel_tests.cpp
+1
-1
gapi_core_tests.cpp
modules/gapi/test/common/gapi_core_tests.cpp
+1
-1
gapi_imgproc_tests.cpp
modules/gapi/test/common/gapi_imgproc_tests.cpp
+1
-1
gapi_operators_tests.cpp
modules/gapi/test/common/gapi_operators_tests.cpp
+1
-1
gapi_operators_tests_fluid.cpp
modules/gapi/test/cpu/gapi_operators_tests_fluid.cpp
+1
-1
gapi_int_backend_tests.cpp
modules/gapi/test/internal/gapi_int_backend_tests.cpp
+2
-2
gapi_int_executor_tests.cpp
modules/gapi/test/internal/gapi_int_executor_tests.cpp
+1
-1
gapi_int_garg_test.cpp
modules/gapi/test/internal/gapi_int_garg_test.cpp
+1
-1
gapi_int_gmetaarg_test.cpp
modules/gapi/test/internal/gapi_int_gmetaarg_test.cpp
+1
-1
gapi_int_gmodel_builder_test.cpp
modules/gapi/test/internal/gapi_int_gmodel_builder_test.cpp
+1
-1
gapi_int_island_fusion_tests.cpp
modules/gapi/test/internal/gapi_int_island_fusion_tests.cpp
+2
-2
gapi_int_island_tests.cpp
modules/gapi/test/internal/gapi_int_island_tests.cpp
+1
-1
gapi_int_recompilation_test.cpp
modules/gapi/test/internal/gapi_int_recompilation_test.cpp
+1
-1
gapi_int_resolve_kernel_test.cpp
modules/gapi/test/internal/gapi_int_resolve_kernel_test.cpp
+2
-2
gapi_int_vectorref_test.cpp
modules/gapi/test/internal/gapi_int_vectorref_test.cpp
+1
-1
gapi_transactions_test.cpp
modules/gapi/test/internal/gapi_transactions_test.cpp
+1
-1
gapi_types_tests.cpp
modules/gapi/test/own/gapi_types_tests.cpp
+1
-1
mat_tests.cpp
modules/gapi/test/own/mat_tests.cpp
+1
-1
scalar_tests.cpp
modules/gapi/test/own/scalar_tests.cpp
+1
-1
any_tests.cpp
modules/gapi/test/util/any_tests.cpp
+1
-1
optional_tests.cpp
modules/gapi/test/util/optional_tests.cpp
+1
-1
variant_tests.cpp
modules/gapi/test/util/variant_tests.cpp
+1
-1
No files found.
cmake/OpenCVModule.cmake
View file @
14843679
...
...
@@ -1148,7 +1148,7 @@ function(ocv_add_perf_tests)
source_group
(
"Src"
FILES
"
${${
the_target
}
_pch
}
"
)
ocv_add_executable
(
${
the_target
}
${
OPENCV_PERF_
${
the_module
}
_SOURCES
}
${${
the_target
}
_pch
}
)
ocv_target_include_modules
(
${
the_target
}
${
perf_deps
}
"
${
perf_path
}
"
)
ocv_target_include_modules
(
${
the_target
}
${
perf_deps
}
)
ocv_target_link_libraries
(
${
the_target
}
LINK_PRIVATE
${
perf_deps
}
${
OPENCV_MODULE_
${
the_module
}
_DEPS
}
${
OPENCV_LINKER_LIBS
}
${
OPENCV_PERF_
${
the_module
}
_DEPS
}
)
add_dependencies
(
opencv_perf_tests
${
the_target
}
)
...
...
@@ -1239,7 +1239,7 @@ function(ocv_add_accuracy_tests)
source_group
(
"Src"
FILES
"
${${
the_target
}
_pch
}
"
)
ocv_add_executable
(
${
the_target
}
${
OPENCV_TEST_
${
the_module
}
_SOURCES
}
${${
the_target
}
_pch
}
)
ocv_target_include_modules
(
${
the_target
}
${
test_deps
}
"
${
test_path
}
"
)
ocv_target_include_modules
(
${
the_target
}
${
test_deps
}
)
if
(
EXISTS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/test"
)
ocv_target_include_directories
(
${
the_target
}
"
${
CMAKE_CURRENT_BINARY_DIR
}
/test"
)
endif
()
...
...
cmake/OpenCVPCHSupport.cmake
View file @
14843679
...
...
@@ -261,6 +261,7 @@ MACRO(ADD_PRECOMPILED_HEADER _targetName _input)
)
_PCH_GET_COMPILE_FLAGS
(
_compile_FLAGS
)
list
(
APPEND _compile_FLAGS
"
${
_PCH_include_prefix
}
\"
${
_path
}
\"
"
)
get_target_property
(
type
${
_targetName
}
TYPE
)
if
(
type STREQUAL
"SHARED_LIBRARY"
)
...
...
modules/gapi/perf/common/gapi_core_perf_tests.cpp
View file @
14843679
...
...
@@ -5,5 +5,5 @@
// Copyright (C) 2018 Intel Corporation
#include "perf_precomp.hpp"
#include "
../
perf_precomp.hpp"
#include "gapi_core_perf_tests_inl.hpp"
modules/gapi/perf/common/gapi_imgproc_perf_tests.cpp
View file @
14843679
...
...
@@ -5,5 +5,5 @@
// Copyright (C) 2018 Intel Corporation
#include "perf_precomp.hpp"
#include "
../
perf_precomp.hpp"
#include "gapi_imgproc_perf_tests_inl.hpp"
modules/gapi/perf/internal/gapi_compiler_perf_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "perf_precomp.hpp"
#include "
../
perf_precomp.hpp"
#include "../../test/common/gapi_tests_common.hpp"
namespace
opencv_test
...
...
modules/gapi/test/common/gapi_compoundkernel_tests.cpp
View file @
14843679
...
...
@@ -7,7 +7,7 @@
// FIXME: move out from Common
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/cpu/core.hpp"
#include <ade/util/algorithm.hpp>
...
...
modules/gapi/test/common/gapi_core_tests.cpp
View file @
14843679
...
...
@@ -5,5 +5,5 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "gapi_core_tests_inl.hpp"
modules/gapi/test/common/gapi_imgproc_tests.cpp
View file @
14843679
...
...
@@ -5,5 +5,5 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "gapi_imgproc_tests_inl.hpp"
modules/gapi/test/common/gapi_operators_tests.cpp
View file @
14843679
...
...
@@ -5,5 +5,5 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "gapi_operators_tests_inl.hpp"
modules/gapi/test/cpu/gapi_operators_tests_fluid.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "../common/gapi_operators_tests.hpp"
#define CORE_FLUID cv::gapi::core::fluid::kernels()
...
...
modules/gapi/test/internal/gapi_int_backend_tests.cpp
View file @
14843679
...
...
@@ -5,8 +5,8 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "gapi_mock_kernels.hpp"
#include "
../
test_precomp.hpp"
#include "
../
gapi_mock_kernels.hpp"
#include "compiler/gmodel.hpp"
#include "compiler/gcompiler.hpp"
...
...
modules/gapi/test/internal/gapi_int_executor_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
namespace
opencv_test
{
...
...
modules/gapi/test/internal/gapi_int_garg_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
namespace
opencv_test
{
// Tests on T/Kind matching ////////////////////////////////////////////////////
...
...
modules/gapi/test/internal/gapi_int_gmetaarg_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "api/gcomputation_priv.hpp"
...
...
modules/gapi/test/internal/gapi_int_gmodel_builder_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include <ade/util/zip_range.hpp> // util::indexed
...
...
modules/gapi/test/internal/gapi_int_island_fusion_tests.cpp
View file @
14843679
...
...
@@ -5,10 +5,10 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "compiler/transactions.hpp"
#include "gapi_mock_kernels.hpp"
#include "
../
gapi_mock_kernels.hpp"
#include "compiler/gmodel.hpp"
#include "compiler/gislandmodel.hpp"
...
...
modules/gapi/test/internal/gapi_int_island_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "compiler/gmodel.hpp"
#include "compiler/gcompiled_priv.hpp"
...
...
modules/gapi/test/internal/gapi_int_recompilation_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "api/gcomputation_priv.hpp"
#include "opencv2/gapi/fluid/gfluidkernel.hpp"
...
...
modules/gapi/test/internal/gapi_int_resolve_kernel_test.cpp
View file @
14843679
...
...
@@ -5,9 +5,9 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "gapi_mock_kernels.hpp"
#include "
../
gapi_mock_kernels.hpp"
namespace
opencv_test
{
...
...
modules/gapi/test/internal/gapi_int_vectorref_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
namespace
opencv_test
{
...
...
modules/gapi/test/internal/gapi_transactions_test.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include <ade/graph.hpp>
#include "compiler/transactions.hpp"
...
...
modules/gapi/test/own/gapi_types_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/own/types.hpp"
namespace
opencv_test
...
...
modules/gapi/test/own/mat_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/own/mat.hpp"
#include <opencv2/gapi/util/compiler_hints.hpp> //suppress_unused_warning
...
...
modules/gapi/test/own/scalar_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/own/scalar.hpp"
namespace
opencv_test
...
...
modules/gapi/test/util/any_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/util/any.hpp"
namespace
opencv_test
...
...
modules/gapi/test/util/optional_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/util/optional.hpp"
#include <opencv2/gapi/util/compiler_hints.hpp> //suppress_unused_warning
...
...
modules/gapi/test/util/variant_tests.cpp
View file @
14843679
...
...
@@ -5,7 +5,7 @@
// Copyright (C) 2018 Intel Corporation
#include "test_precomp.hpp"
#include "
../
test_precomp.hpp"
#include "opencv2/gapi/util/variant.hpp"
#include <cstddef> //std::max_align_t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment