summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/CreateTest.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-12-11 11:31:18 -0330
committerMatthew Newhook <matthew@zeroc.com>2014-12-11 11:31:18 -0330
commit46e50f05c65f78130f9474cd70d4849574221c47 (patch)
tree4d31ce8cabf3f32265600f510d4e41310c4fcf15 /cpp/test/IceUtil/thread/CreateTest.cpp
parentFixed (ICE-6131) - WinRT testsuite access exception (diff)
downloadice-46e50f05c65f78130f9474cd70d4849574221c47.tar.bz2
ice-46e50f05c65f78130f9474cd70d4849574221c47.tar.xz
ice-46e50f05c65f78130f9474cd70d4849574221c47.zip
ICE-6114 IceUtil/thread prints garbage to stdout
Diffstat (limited to 'cpp/test/IceUtil/thread/CreateTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/CreateTest.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpp/test/IceUtil/thread/CreateTest.cpp b/cpp/test/IceUtil/thread/CreateTest.cpp
index aa938d3352f..e287041d94d 100644
--- a/cpp/test/IceUtil/thread/CreateTest.cpp
+++ b/cpp/test/IceUtil/thread/CreateTest.cpp
@@ -10,8 +10,6 @@
#include <IceUtil/DisableWarnings.h>
#include <IceUtil/IceUtil.h>
-#include <stdio.h>
-
#include <CreateTest.h>
#include <TestCommon.h>
@@ -53,12 +51,5 @@ CreateTest::run()
ThreadControl control = t->start();
control.join();
test(t->threadran);
- if((i % 256) == 0)
- {
- char buf[5];
- sprintf(buf, "%04d", i);
- cout << buf << "" << flush;
- }
}
- cout << " " << flush;
}