From bfa167a0546af29cedfea96d78ad5ebc57fa3242 Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 2 Apr 2019 11:07:05 +0100 Subject: [PATCH] Uncommented out ChildProcess unit test --- modules/juce_core/threads/juce_ChildProcess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_core/threads/juce_ChildProcess.cpp b/modules/juce_core/threads/juce_ChildProcess.cpp index 2c14b05ac0..011dd03151 100644 --- a/modules/juce_core/threads/juce_ChildProcess.cpp +++ b/modules/juce_core/threads/juce_ChildProcess.cpp @@ -101,8 +101,8 @@ public: expect (p.start ("ls /")); #endif - //String output (p.readAllProcessOutput()); - //expect (output.isNotEmpty()); + auto output = p.readAllProcessOutput(); + expect (output.isNotEmpty()); #endif } };