| 656 | } |
| 657 | |
| 658 | bool testUVProcessChainWait0(char const* helperCommand) |
| 659 | { |
| 660 | cmUVProcessChainBuilder builder; |
| 661 | builder.AddCommand({ helperCommand, "echo" }); |
| 662 | |
| 663 | auto chain = builder.Start(); |
| 664 | if (!chain.Wait(0)) { |
| 665 | std::cout << "Wait(0) returned false, should be true" << std::endl; |
| 666 | return false; |
| 667 | } |
| 668 | |
| 669 | return true; |
| 670 | } |
| 671 | |
| 672 | bool testUVProcessChainExternalLoop(char const* helperCommand) |
| 673 | { |
no test coverage detected
searching dependent graphs…