From edfd1bf6fde3cd18e9b2a5e1520f1911fbbd4b71 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 22 Mar 2025 17:46:49 -0400 Subject: [PATCH] cwFlowTest.cpp : flow::test() now recognizes when exec(flowH) return kEofRC. --- cwFlowTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwFlowTest.cpp b/cwFlowTest.cpp index 778c363..5b8bc5e 100644 --- a/cwFlowTest.cpp +++ b/cwFlowTest.cpp @@ -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: