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
8577f718
Commit
8577f718
authored
Oct 20, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ts: 2.4 changes
parent
6f00e531
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
run_suite.py
modules/ts/misc/run_suite.py
+3
-3
run_utils.py
modules/ts/misc/run_utils.py
+7
-1
No files found.
modules/ts/misc/run_suite.py
View file @
8577f718
...
...
@@ -85,7 +85,7 @@ class TestSuite(object):
return
set
(
res
)
def
isTest
(
self
,
fullpath
):
if
fullpath
in
[
'java'
,
'python2'
,
'python3'
]:
if
fullpath
in
[
'java'
,
'python
'
,
'python
2'
,
'python3'
]:
return
self
.
options
.
mode
==
'test'
if
not
os
.
path
.
isfile
(
fullpath
):
return
False
...
...
@@ -117,7 +117,7 @@ class TestSuite(object):
cmd
=
[
self
.
cache
.
ant_executable
,
"-Dopencv.build.type=
%
s"
%
self
.
cache
.
build_type
,
"buildAndTest"
]
ret
=
execute
(
cmd
,
cwd
=
self
.
cache
.
java_test_binary_dir
+
"/.build"
)
return
None
,
ret
elif
path
in
[
'python2'
,
'python3'
]:
elif
path
in
[
'python
'
,
'python
2'
,
'python3'
]:
executable
=
os
.
getenv
(
'OPENCV_PYTHON_BINARY'
,
None
)
if
executable
is
None
:
executable
=
path
...
...
@@ -164,7 +164,7 @@ class TestSuite(object):
more_args
=
[]
exe
=
self
.
getTest
(
test
)
if
exe
in
[
"java"
,
"python2"
,
"python3"
]:
if
exe
in
[
"java"
,
"python
"
,
"python
2"
,
"python3"
]:
logname
=
None
else
:
userlog
=
[
a
for
a
in
args
if
a
.
startswith
(
"--gtest_output="
)]
...
...
modules/ts/misc/run_utils.py
View file @
8577f718
...
...
@@ -175,6 +175,7 @@ parse_patterns = (
{
'name'
:
"cuda_library"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^CUDA_CUDA_LIBRARY:FILEPATH=(.+)$"
)},
{
'name'
:
"cuda_version"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^CUDA_VERSION:STRING=(.+)$"
)},
{
'name'
:
"core_dependencies"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^opencv_core_LIB_DEPENDS:STATIC=(.+)$"
)},
{
'name'
:
"python"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^BUILD_opencv_python:BOOL=(.*)$"
)},
{
'name'
:
"python2"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^BUILD_opencv_python2:BOOL=(.*)$"
)},
{
'name'
:
"python3"
,
'default'
:
None
,
'pattern'
:
re
.
compile
(
r"^BUILD_opencv_python3:BOOL=(.*)$"
)},
)
...
...
@@ -253,6 +254,8 @@ class CMakeCache:
files
=
glob
.
glob
(
os
.
path
.
join
(
d
,
mask
))
if
not
self
.
getOS
()
==
"android"
and
self
.
withJava
():
files
.
append
(
"java"
)
if
self
.
withPython
():
files
.
append
(
"python"
)
if
self
.
withPython2
():
files
.
append
(
"python2"
)
if
self
.
withPython3
():
...
...
@@ -261,7 +264,7 @@ class CMakeCache:
return
[]
def
isMainModule
(
self
,
name
):
return
name
in
self
.
main_modules
+
[
'python2'
,
'python3'
]
return
name
in
self
.
main_modules
+
[
'python
'
,
'python
2'
,
'python3'
]
def
withCuda
(
self
):
return
self
.
cuda_version
and
self
.
with_cuda
==
"ON"
and
self
.
cuda_library
and
not
self
.
cuda_library
.
endswith
(
"-NOTFOUND"
)
...
...
@@ -269,6 +272,9 @@ class CMakeCache:
def
withJava
(
self
):
return
self
.
ant_executable
and
self
.
java_test_binary_dir
def
withPython
(
self
):
return
self
.
python
==
'ON'
def
withPython2
(
self
):
return
self
.
python2
==
'ON'
...
...
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