We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e198ce8 commit 1f43de9Copy full SHA for 1f43de9
chipflow_lib/common/sim/models.cc
@@ -75,7 +75,8 @@ void fetch_actions_into_queue() {
75
void open_input_commands(const std::string &filename) {
76
std::ifstream f(filename);
77
if (!f) {
78
- throw std::runtime_error("failed to open input event stream!");
+ std::cerr << "WARNING: failed to open input event stream. Add one for design validation - see [chipflow.test] configuration option." << std::endl;
79
+ return;
80
}
81
json data = json::parse(f);
82
input_cmds = data["commands"];
0 commit comments