Some extra debugging to show it's dying on shutdown 2
authorwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 23 Apr 2004 22:14:58 +0000 (22:14 +0000)
committerwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 23 Apr 2004 22:14:58 +0000 (22:14 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1047 cb58f699-b61c-0410-a6fe-9272a202ed29

test/inittest.cpp

index f971204..aaff601 100644 (file)
@@ -89,9 +89,14 @@ void init(void)
 
 int main(int argc, char* argv[])
 {
+  cout << "Running init 1.." << endl;
   init();
+  cout << "Running shutdown 1.." << endl;
   shutdown();
+  cout << "Running init 2.." << endl;
   init();
+  cout << "Running shutdown 2.." << endl;
   shutdown();
+  cout << "Done." << endl;
   exit(0);
 }