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
7df392bf
Commit
7df392bf
authored
Nov 16, 2015
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
run.py: issues with forced configuration fixed
parent
97878645
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
12 deletions
+10
-12
run.py
modules/ts/misc/run.py
+3
-3
run_suite.py
modules/ts/misc/run_suite.py
+3
-4
run_utils.py
modules/ts/misc/run_utils.py
+4
-5
No files found.
modules/ts/misc/run.py
View file @
7df392bf
...
...
@@ -31,7 +31,7 @@ if __name__ == "__main__":
parser
.
add_argument
(
"--list"
,
action
=
"store_true"
,
default
=
False
,
help
=
"List available tests (executables)"
)
parser
.
add_argument
(
"--list_short"
,
action
=
"store_true"
,
default
=
False
,
help
=
"List available tests (aliases)"
)
parser
.
add_argument
(
"--list_short_main"
,
action
=
"store_true"
,
default
=
False
,
help
=
"List available tests (main repository, aliases)"
)
parser
.
add_argument
(
"--configuration"
,
metavar
=
"CFG"
,
default
=
""
,
help
=
"Visual Studio: force Debug or Release configuration
"
)
parser
.
add_argument
(
"--configuration"
,
metavar
=
"CFG"
,
default
=
None
,
help
=
"Force Debug or Release configuration (for Visual Studio and Java tests build)
"
)
parser
.
add_argument
(
"-n"
,
"--dry_run"
,
action
=
"store_true"
,
help
=
"Do not run the tests"
)
parser
.
add_argument
(
"-v"
,
"--verbose"
,
action
=
"store_true"
,
default
=
False
,
help
=
"Print more debug information"
)
...
...
@@ -95,12 +95,12 @@ if __name__ == "__main__":
try
:
if
not
os
.
path
.
isdir
(
path
):
raise
Err
(
"Not a directory (should contain CMakeCache.txt ot test executables)"
)
cache
=
CMakeCache
()
cache
=
CMakeCache
(
args
.
configuration
)
fname
=
os
.
path
.
join
(
path
,
"CMakeCache.txt"
)
if
os
.
path
.
isfile
(
fname
):
log
.
debug
(
"Reading cmake cache file:
%
s"
,
fname
)
cache
.
read
(
path
,
fname
,
args
.
configuration
)
cache
.
read
(
path
,
fname
)
else
:
log
.
debug
(
"Assuming folder contains tests:
%
s"
,
path
)
cache
.
setDummy
(
path
)
...
...
modules/ts/misc/run_suite.py
View file @
7df392bf
...
...
@@ -66,7 +66,9 @@ class TestSuite(object):
res
.
append
(
fname
)
# filename (opencv_test_core.exe)
for
s
in
getCuts
(
fname
,
self
.
nameprefix
):
res
.
append
(
s
)
if
self
.
cache
.
build_type
==
"Debug"
:
res
.
append
(
re
.
sub
(
r"d$"
,
''
,
s
))
# MSVC debug config, remove 'd' suffix
log
.
debug
(
"Aliases:
%
s"
,
set
(
res
))
return
set
(
res
)
def
getTest
(
self
,
name
):
...
...
@@ -104,10 +106,7 @@ class TestSuite(object):
args
=
args
[:]
exe
=
os
.
path
.
abspath
(
path
)
if
path
==
"java"
:
cfg
=
self
.
cache
.
build_type
if
self
.
options
.
configuration
:
cfg
=
self
.
options
.
configuration
cmd
=
[
self
.
cache
.
ant_executable
,
"-Dopencv.build.type=
%
s"
%
cfg
,
"buildAndTest"
]
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
else
:
...
...
modules/ts/misc/run_utils.py
View file @
7df392bf
...
...
@@ -174,17 +174,19 @@ parse_patterns = (
)
class
CMakeCache
:
def
__init__
(
self
):
def
__init__
(
self
,
cfg
=
None
):
self
.
setDefaultAttrs
()
self
.
cmake_home_vcver
=
None
self
.
opencv_home_vcver
=
None
self
.
featuresSIMD
=
None
self
.
main_modules
=
[]
if
cfg
:
self
.
build_type
=
cfg
def
setDummy
(
self
,
path
):
self
.
tests_dir
=
os
.
path
.
normpath
(
path
)
def
read
(
self
,
path
,
fname
,
cfg
):
def
read
(
self
,
path
,
fname
):
rx
=
re
.
compile
(
r'^opencv_(\w+)_SOURCE_DIR:STATIC=(.*)$'
)
module_paths
=
{}
# name -> path
with
open
(
fname
,
"rt"
)
as
cachefile
:
...
...
@@ -213,9 +215,6 @@ class CMakeCache:
# fix VS test binary path (add Debug or Release)
if
"Visual Studio"
in
self
.
cmake_generator
:
if
cfg
:
self
.
tests_dir
=
os
.
path
.
join
(
self
.
tests_dir
,
cfg
)
else
:
self
.
tests_dir
=
os
.
path
.
join
(
self
.
tests_dir
,
self
.
build_type
)
self
.
cmake_home_vcver
=
readGitVersion
(
self
.
git_executable
,
self
.
cmake_home
)
...
...
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