-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fail to run SMV Example App #1392
Comments
@yw-yang I can't reproduce.
No error. Could you provides more context?
If all above still can't figure out the problem, also need:
|
I cannot reproduce neither following Bo's steps. My environment:
|
Running with latest master of SMV threw this error:
|
Yes, latest master threw this error. v2r2 looks good to me. |
I see. Will fix master. For the project, please use v2r2 |
This is the one of the most interesting bug I ever had. The fix is very simple. Just to make the following change: def _generate_dot_graph(self):
...
dot_graph_str = SmvAppInfo(self).create_graph_dot()
if(self.cmd_line.graph):
....
return True
else:
return False AFTER def _generate_dot_graph(self):
...
if(self.cmd_line.graph):
dot_graph_str = SmvAppInfo(self).create_graph_dot()
...
return True
else:
return False However there are 2 questions left:
Since our CI config specified The error message indicated that the |
Will do the fix and create a new issue to investigate further. |
Close this, since #1398 was opened to continue. |
After I installed latest smv and tried to run the example app
smv-init -s MyApp
smv-run --run-app
Below error occurs. I can trigger other project successfully, is the example app out-dated? Since it is noted in the SMV homepage, could we have a fix on it?
The text was updated successfully, but these errors were encountered: