Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
32bb316d
Commit
32bb316d
authored
Apr 30, 2021
by
Dennis Gläser
Browse files
[bin][runselected] ensure junit report is created
parent
f594d475
Pipeline
#3649
waiting for manual action with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bin/testing/runselectedtests.py
View file @
32bb316d
...
@@ -5,6 +5,7 @@ Build and/or run (using `dune-ctest`) a selection of tests.
...
@@ -5,6 +5,7 @@ Build and/or run (using `dune-ctest`) a selection of tests.
Run this in the top level of the build tree.
Run this in the top level of the build tree.
"""
"""
import
os
import
sys
import
sys
import
json
import
json
import
subprocess
import
subprocess
...
@@ -46,10 +47,8 @@ def runTests(config, script='', flags=['-j4', '--output-on-failure']):
...
@@ -46,10 +47,8 @@ def runTests(config, script='', flags=['-j4', '--output-on-failure']):
tests
=
[
'NOOP'
]
tests
=
[
'NOOP'
]
# if not given, try system-wide call to dune-ctest
# if not given, try system-wide call to dune-ctest
call
=
[
'dune-ctest'
]
if
not
script
else
[
'./'
+
script
.
lstrip
(
'./'
)]
script
=
[
'dune-ctest'
]
if
not
script
else
script
call
.
extend
(
flags
)
subprocess
.
run
([
script
]
+
flags
+
[
'-R'
]
+
tests
,
check
=
True
)
call
.
extend
([
'-R'
]
+
tests
)
subprocess
.
run
(
call
,
check
=
True
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
@@ -93,6 +92,8 @@ if __name__ == '__main__':
...
@@ -93,6 +92,8 @@ if __name__ == '__main__':
# prepare build and test flags
# prepare build and test flags
buildFlags
=
args
[
'buildflags'
].
split
(
' '
)
buildFlags
=
args
[
'buildflags'
].
split
(
' '
)
testFlags
=
args
[
'testflags'
].
split
(
' '
)
testFlags
=
args
[
'testflags'
].
split
(
' '
)
dunectest
=
args
[
'script'
]
dunectest
=
'dune-ctest'
if
not
dunectest
else
os
.
path
.
abspath
(
dunectest
)
# use target `all`
# use target `all`
if
args
[
'all'
]:
if
args
[
'all'
]:
...
@@ -101,7 +102,7 @@ if __name__ == '__main__':
...
@@ -101,7 +102,7 @@ if __name__ == '__main__':
subprocess
.
run
([
'make'
]
+
buildFlags
+
[
'build_tests'
],
check
=
True
)
subprocess
.
run
([
'make'
]
+
buildFlags
+
[
'build_tests'
],
check
=
True
)
if
args
[
'test'
]:
if
args
[
'test'
]:
print
(
'Running all tests'
)
print
(
'Running all tests'
)
subprocess
.
run
([
'
ctest
'
]
+
testFlags
,
check
=
True
)
subprocess
.
run
([
dune
ctest
]
+
testFlags
,
check
=
True
)
# use target selection
# use target selection
else
:
else
:
...
@@ -113,4 +114,4 @@ if __name__ == '__main__':
...
@@ -113,4 +114,4 @@ if __name__ == '__main__':
if
args
[
'build'
]:
if
args
[
'build'
]:
buildTests
(
config
,
buildFlags
)
buildTests
(
config
,
buildFlags
)
if
args
[
'test'
]:
if
args
[
'test'
]:
runTests
(
config
,
args
[
'script'
]
,
testFlags
)
runTests
(
config
,
dunectest
,
testFlags
)
Write
Preview
Supports
Markdown
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