Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Add missing include in testUVProcessChainHelper on Windows | Brad King | 2024-01-24 | 1 | -0/+4 |
| | | | | We use `STATUS_ACCESS_VIOLATION` from `windows.h`. | ||||
* | cmCTestScriptHandler: Replace cmsysProcess with cmUVProcessChain | Kyle Edwards | 2023-08-29 | 1 | -4/+0 |
| | | | | And update cmSystemTools::WaitForLine() to use cmUVProcessChain. | ||||
* | cmUVProcessChain: Add Status::SpawnResult field | Kyle Edwards | 2023-06-08 | 1 | -2/+2 |
| | |||||
* | cmUVProcessChain: Add Status::GetException() method | Kyle Edwards | 2023-06-05 | 1 | -3/+6 |
| | |||||
* | cmUVProcessChain: Add working directory option | Kyle Edwards | 2023-05-26 | 1 | -0/+7 |
| | |||||
* | Source: fix many -Wmissing-prototypes warnings by marking functions static | Sean McBride | 2021-10-25 | 1 | -1/+1 |
| | |||||
* | Revise include order using clang-format-6.0 | Kitware Robot | 2019-10-01 | 1 | -3/+2 |
| | | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0. | ||||
* | clang-tidy: Fix bugprone-exception-escape diagnostic in test code | Brad King | 2019-09-09 | 1 | -1/+2 |
| | |||||
* | cmUVProcessChain: Add cmUVProcessChain | Kyle Edwards | 2019-05-07 | 1 | -0/+72 |
This class is ultimately intended as a replacement for cmsys::Process. It spawns a series of processes using libuv, piping the output of each command into the next. Note: input support has not yet been implemented because write support has not yet been implemented on cmUVStreambuf. |