From 64f5f4617729d0c428edc82927214dad08e2827a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 29 Oct 2009 17:56:15 +0000 Subject: [PATCH] nicer output for attach test --- tools/attachtest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/attachtest.cpp b/tools/attachtest.cpp index bf9fe0176..82ba86529 100644 --- a/tools/attachtest.cpp +++ b/tools/attachtest.cpp @@ -36,6 +36,7 @@ int main (void) bool all_ok = true; for (int i = 0; i < 1000; i++) { + cout << "Try " << i << endl; if(DF.Attach()) { if(DF.Detach()) @@ -53,6 +54,7 @@ int main (void) cout << "cycle " << i << ", attach failed" << endl; all_ok = false; } + cout << endl; } if(!all_ok) {