소스 검색

Corrected isDone test.


git-svn-id: https://svn.microneil.com/svn/CodeDweller-Tests/trunk@28 b3372362-9eaa-4a85-aa2b-6faa1ab7c995
master
adeniz 10 년 전
부모
커밋
d9bb8b5477
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10
    1
      TestChild/testChild.cpp

+ 10
- 1
TestChild/testChild.cpp 파일 보기

@@ -375,8 +375,17 @@ testReader() {
<< std::endl;
return false;
}
// Sleep to let the child exit.
std::this_thread::sleep_for(std::chrono::milliseconds(100));
if (!child.isDone()) {
std::cout << "first isDone() failure in testReader." << std::endl;
return false;
}
if (!child.isDone()) {
std::cout << "isDone() failure in testReader." << std::endl;
std::cout << "second isDone() failure in testReader." << std::endl;
return false;
}

Loading…
취소
저장