Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
b0d96cb6
"doc/git@developer.sourcefind.cn:cnjsdfcy/simbricks.git" did not exist on "2e754b87af8b2bdb3dfb4e6838426ad7654ba591"
Commit
b0d96cb6
authored
Nov 17, 2020
by
Hejing Li
Browse files
experiments.py: set canfail True
parent
4020f5ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
experiments/modes/experiments.py
experiments/modes/experiments.py
+2
-2
No files found.
experiments/modes/experiments.py
View file @
b0d96cb6
...
@@ -64,7 +64,7 @@ class Experiment(object):
...
@@ -64,7 +64,7 @@ class Experiment(object):
if
verbose
:
if
verbose
:
print
(
'start NIC:'
,
nic
.
run_cmd
(
env
))
print
(
'start NIC:'
,
nic
.
run_cmd
(
env
))
sc
=
exectools
.
SimpleComponent
(
nic
.
full_name
(),
sc
=
exectools
.
SimpleComponent
(
nic
.
full_name
(),
shlex
.
split
(
nic
.
run_cmd
(
env
)),
verbose
=
verbose
)
shlex
.
split
(
nic
.
run_cmd
(
env
)),
verbose
=
verbose
,
canfail
=
True
)
await
sc
.
start
()
await
sc
.
start
()
running
.
append
((
nic
,
sc
))
running
.
append
((
nic
,
sc
))
...
@@ -97,7 +97,7 @@ class Experiment(object):
...
@@ -97,7 +97,7 @@ class Experiment(object):
print
(
'start Host:'
,
host
.
run_cmd
(
env
))
print
(
'start Host:'
,
host
.
run_cmd
(
env
))
sc
=
exectools
.
SimpleComponent
(
host
.
full_name
(),
sc
=
exectools
.
SimpleComponent
(
host
.
full_name
(),
shlex
.
split
(
host
.
run_cmd
(
env
)),
verbose
=
verbose
)
shlex
.
split
(
host
.
run_cmd
(
env
)),
verbose
=
verbose
,
canfail
=
True
)
await
sc
.
start
()
await
sc
.
start
()
running
.
append
((
host
,
sc
))
running
.
append
((
host
,
sc
))
...
...
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