Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthias Mayr
limbo
Commits
a8d3b4f7
Commit
a8d3b4f7
authored
Oct 23, 2015
by
Federico Allocati
Browse files
Forgot to increment index in compilation. Fixed oar submission
parent
e837680e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/tests/wscript
View file @
a8d3b4f7
...
...
@@ -172,6 +172,7 @@ def create_all_combinations_test(bld):
target
=
'/combinations/combinations_'
+
str
(
i
),
uselib
=
'BOOST EIGEN TBB'
,
use
=
'limbo'
)
i
=
i
+
1
def
build
(
bld
):
...
...
wscript
View file @
a8d3b4f7
...
...
@@ -101,7 +101,7 @@ def submit_extensive_tests(ctx):
for
fullname
in
glob
.
glob
(
'build/src/tests/combinations/*'
):
if
os
.
path
.
isfile
(
fullname
)
and
os
.
access
(
fullname
,
os
.
X_OK
):
fpath
,
fname
=
os
.
path
.
split
(
fullname
)
s
=
"
oarsub -d build/src/tests/combinations/
-l /nodes=1/core=2,walltime=00:15:00 -n "
+
fname
+
" -O "
+
fname
+
".stdout.%jobid%.log -E "
+
fname
+
".stderr.%jobid%.log
"
+
fpath
+
'/'
+
fname
s
=
"
cd "
+
fpath
+
";oarsub
-l /nodes=1/core=2,walltime=00:15:00 -n "
+
fname
+
" -O "
+
fname
+
".stdout.%jobid%.log -E "
+
fname
+
".stderr.%jobid%.log
./"
+
fname
retcode
=
subprocess
.
call
(
s
,
shell
=
True
,
env
=
None
)
print
"oarsub returned:"
+
str
(
retcode
)
...
...
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