Procházet zdrojové kódy

Corrected isDone test.


git-svn-id: https://svn.microneil.com/svn/CodeDweller-Tests/trunk@28 b3372362-9eaa-4a85-aa2b-6faa1ab7c995
master
adeniz před 10 roky
rodič
revize
d9bb8b5477
1 změnil soubory, kde provedl 10 přidání a 1 odebrání
  1. 10
    1
      TestChild/testChild.cpp

+ 10
- 1
TestChild/testChild.cpp Zobrazit soubor

@@ -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;
}

Načítá se…
Zrušit
Uložit