| 116 | }; |
| 117 | |
| 118 | void SC::ProcessTest::processError() |
| 119 | { |
| 120 | // Tries to launch a process that doesn't exist (and gets an error) |
| 121 | Process process(commandArena.toSpan(), environmentArena.toSpan()); |
| 122 | SC_TEST_EXPECT(not process.launch({"DOCTORI", "ASDF"})); |
| 123 | } |
| 124 | |
| 125 | void SC::ProcessTest::processInheritStdout() |
| 126 | { |