Some extra debugging to show it's dying on shutdown 2
authorDerek Atkins <derek@ihtfp.com>
Fri, 23 Apr 2004 22:14:58 +0000 (22:14 +0000)
committerDerek Atkins <derek@ihtfp.com>
Fri, 23 Apr 2004 22:14:58 +0000 (22:14 +0000)
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);
 }