cwFlowTest.cpp : flow::test() now recognizes when exec(flowH) return kEofRC.

This commit is contained in:
kevin 2025-03-22 17:46:49 -04:00
parent dad07db157
commit edfd1bf6fd

View File

@ -68,7 +68,7 @@ cw::rc_t cw::flow::test( const test::test_args_t& args )
}
// run the network
if((rc = exec( flowH )) != kOkRC )
if((rc = exec( flowH )) != kOkRC && rc != kEofRC )
rc = cwLogError(rc,"Execution failed.");
errLabel: