diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-05-02 17:39:13 +0300 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-05-02 17:39:13 +0300 | 
| commit | 1444c4a23cb0167002dd398a16cfc78a72e43e03 (patch) | |
| tree | b412497a524177b55b981220dfd8c11414496ad1 /indra/llcommon/tests | |
| parent | f9cb6a13b23df14c2dcc7709fafdb28c578a934e (diff) | |
| parent | 7ed52090a67882cd0bc904f1e0a9ce07cf6768e9 (diff) | |
Merge branch 'main' into DRTVWR-582-maint-U
Diffstat (limited to 'indra/llcommon/tests')
| -rw-r--r-- | indra/llcommon/tests/llprocess_test.cpp | 40 | 
1 files changed, 20 insertions, 20 deletions
| diff --git a/indra/llcommon/tests/llprocess_test.cpp b/indra/llcommon/tests/llprocess_test.cpp index 999d432079..81449b4a42 100644 --- a/indra/llcommon/tests/llprocess_test.cpp +++ b/indra/llcommon/tests/llprocess_test.cpp @@ -356,7 +356,7 @@ namespace tut          // Create a script file in a temporary place.          NamedTempFile script("py", -			"from __future__ import print_function" EOL +            "from __future__ import print_function" EOL              "import sys" EOL              "import time" EOL              EOL @@ -366,7 +366,7 @@ namespace tut              "time.sleep(2)" EOL              "print('stderr after wait',file=sys.stderr)" EOL              "sys.stderr.flush()" EOL -            ); +        );          // Arrange to track the history of our interaction with child: what we          // fetched, which pipe it came from, how many tries it took before we @@ -862,8 +862,8 @@ namespace tut          set_test_name("'bogus' test");          CaptureLog recorder;          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('Hello world')\n"); +            "from __future__ import print_function\n" +            "print('Hello world')\n");          py.mParams.files.add(LLProcess::FileParam("bogus"));          py.mPy = LLProcess::create(py.mParams);          ensure("should have rejected 'bogus'", ! py.mPy); @@ -878,8 +878,8 @@ namespace tut          // Replace this test with one or more real 'file' tests when we          // implement 'file' support          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('Hello world')\n"); +            "from __future__ import print_function\n" +            "print('Hello world')\n");          py.mParams.files.add(LLProcess::FileParam());          py.mParams.files.add(LLProcess::FileParam("file"));          py.mPy = LLProcess::create(py.mParams); @@ -894,8 +894,8 @@ namespace tut          // implement 'tpipe' support          CaptureLog recorder;          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('Hello world')\n"); +            "from __future__ import print_function\n" +            "print('Hello world')\n");          py.mParams.files.add(LLProcess::FileParam());          py.mParams.files.add(LLProcess::FileParam("tpipe"));          py.mPy = LLProcess::create(py.mParams); @@ -912,8 +912,8 @@ namespace tut          // implement 'npipe' support          CaptureLog recorder;          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('Hello world')\n"); +            "from __future__ import print_function\n" +            "print('Hello world')\n");          py.mParams.files.add(LLProcess::FileParam());          py.mParams.files.add(LLProcess::FileParam());          py.mParams.files.add(LLProcess::FileParam("npipe")); @@ -989,20 +989,20 @@ namespace tut      {          set_test_name("get*Pipe() validation");          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('this output is expected')\n"); +            "from __future__ import print_function\n" +            "print('this output is expected')\n");          py.mParams.files.add(LLProcess::FileParam("pipe")); // pipe for  stdin          py.mParams.files.add(LLProcess::FileParam());       // inherit stdout          py.mParams.files.add(LLProcess::FileParam("pipe")); // pipe for stderr          py.run();          TEST_getPipe(*py.mPy, getWritePipe, getOptWritePipe, -                     LLProcess::STDIN,   // VALID -                     LLProcess::STDOUT,  // NOPIPE -                     LLProcess::STDERR); // BADPIPE +            LLProcess::STDIN,   // VALID +            LLProcess::STDOUT,  // NOPIPE +            LLProcess::STDERR); // BADPIPE          TEST_getPipe(*py.mPy, getReadPipe,  getOptReadPipe, -                     LLProcess::STDERR,  // VALID -                     LLProcess::STDOUT,  // NOPIPE -                     LLProcess::STDIN);  // BADPIPE +            LLProcess::STDERR,  // VALID +            LLProcess::STDOUT,  // NOPIPE +            LLProcess::STDIN);  // BADPIPE      }      template<> template<> @@ -1129,8 +1129,8 @@ namespace tut      {          set_test_name("ReadPipe \"eof\" event");          PythonProcessLauncher py(get_test_name(), -                                 "from __future__ import print_function\n" -                                 "print('Hello from Python!')\n"); +            "from __future__ import print_function\n" +            "print('Hello from Python!')\n");          py.mParams.files.add(LLProcess::FileParam()); // stdin          py.mParams.files.add(LLProcess::FileParam("pipe")); // stdout          py.launch(); | 
