Revert "name-test C tests: produce structured (TAP) output"
authorSimon McVittie <simon.mcvittie@collabora.co.uk>
Fri, 12 Feb 2016 15:25:13 +0000 (15:25 +0000)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Fri, 12 Feb 2016 15:25:13 +0000 (15:25 +0000)
This reverts commit fec99c9b3d8318e3abae432f2aca50802a87f90e.
This change was intended for 1.11.

test/name-test/test-ids.c
test/name-test/test-pending-call-dispatch.c
test/name-test/test-pending-call-timeout.c
test/name-test/test-privserver-client.c
test/name-test/test-privserver.c
test/name-test/test-shutdown.c
test/name-test/test-threads-init.c

index f73a505..8f63d04 100644 (file)
 static void
 die (const char *message)
 {
-  printf ("Bail out! test-ids: %s\n", message);
+  fprintf (stderr, "*** test-ids: %s", message);
   exit (1);
 }
 
-static int test_num = 0;
-
-/* This test outputs TAP syntax: http://testanything.org/ */
 int
 main (int    argc,
       char **argv)
@@ -26,7 +23,7 @@ main (int    argc,
   DBusConnection *connection;
   char *id;
   char *server_id;
-
+  
   dbus_error_init (&error);
   connection = dbus_bus_get (DBUS_BUS_SESSION, &error);
   if (connection == NULL)
@@ -36,35 +33,24 @@ main (int    argc,
       dbus_error_free (&error);
       return 1;
     }
-  printf ("ok %d - connected to session bus\n", ++test_num);
 
   server_id = dbus_connection_get_server_id (connection);
-
   if (server_id == NULL)
     die ("No bus server ID retrieved\n");
-
-  printf ("ok %d - session bus server ID is %s\n", ++test_num, server_id);
-
+  /* printf("'%s'\n", server_id); */
   if (strlen (server_id) != 32)
     die ("Bus server id should have length 32\n");
-
-  printf ("ok %d - session bus server ID length is 32\n", ++test_num);
-
   dbus_free (server_id);
 
   id = dbus_bus_get_id (connection, NULL);
   if (id == NULL)
     die ("No bus ID retrieved\n");
-
-  printf ("ok %d - session bus ID is %s\n", ++test_num, id);
-
+  /* printf("'%s'\n", id); */
   if (strlen (id) != 32)
     die ("Bus ID should have length 32\n");
-
-  printf ("ok %d - session bus ID length is 32\n", ++test_num);
-
   dbus_free (id);  
-
-  printf ("1..%d\n", test_num);
+  
+  _dbus_verbose ("*** Test IDs exiting\n");
+  
   return 0;
 }
index 7785564..c8b5a46 100644 (file)
@@ -56,13 +56,13 @@ _run_iteration (DBusConnection *conn)
 
   if (reply == NULL)
     {
-      printf ("Bail out! Reply is NULL ***\n");
+      printf ("Failed: Reply is NULL ***\n");
       exit (1);
     }
 
   if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
     {
-      printf ("Bail out! Reply is error: %s ***\n", dbus_message_get_error_name (reply));
+      printf ("Failed: Reply is error: %s ***\n", dbus_message_get_error_name (reply));
       exit (1);
     } 
 
@@ -72,7 +72,6 @@ _run_iteration (DBusConnection *conn)
   
 }
 
-/* This test outputs TAP syntax: http://testanything.org/ */
 int
 main (int argc, char *argv[])
 {
@@ -88,7 +87,7 @@ main (int argc, char *argv[])
      but if it does and we are stuck in a poll call then we know the 
      stuck in poll bug has come back to haunt us */
 
-  printf ("# Testing stuck in poll\n");
+  printf ("*** Testing stuck in poll\n");
 
   dbus_error_init (&error);
 
@@ -105,10 +104,10 @@ main (int argc, char *argv[])
 
       /* we just care about seconds */
       delta = end_tv_sec - start_tv_sec;
-      printf ("ok %d - %lis\n", i + 1, delta);
+      printf ("Iter %i: %lis\n", i, delta);
       if (delta >= 5)
         {
-         printf ("Bail out! Looks like we might have been be stuck in poll ***\n");
+         printf ("Failed: looks like we might have been be stuck in poll ***\n");
          exit (1);
        }
     }
@@ -120,6 +119,6 @@ main (int argc, char *argv[])
   dbus_connection_send (conn, method, NULL);
   dbus_message_unref (method);
 
-  printf ("# Testing completed\n1..%d\n", i);
+  printf ("Success ***\n");
   exit (0);
 }
index be6b849..d051fab 100644 (file)
@@ -39,13 +39,13 @@ _method_call (DBusConnection *conn,
 
   if (reply == NULL)
     {
-      printf ("Bail out! Reply is NULL ***\n");
+      printf ("Failed: Reply is NULL ***\n");
       exit (1);
     }
 
   if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
     {
-      printf ("Bail out! Reply is error: %s ***\n", dbus_message_get_error_name (reply));
+      printf ("Failed: Reply is error: %s ***\n", dbus_message_get_error_name (reply));
       exit (1);
     } 
 
@@ -61,7 +61,6 @@ _run_iteration (DBusConnection *conn)
   _method_call (conn, INT_MAX);
 }
 
-/* This test outputs TAP syntax: http://testanything.org/ */
 int
 main (int argc, char *argv[])
 {
@@ -72,7 +71,7 @@ main (int argc, char *argv[])
   DBusConnection *conn;
   DBusError error;
 
-  printf ("# Testing pending call timeouts\n");
+  printf ("*** Testing pending call timeouts\n");
 
   dbus_error_init (&error);
 
@@ -89,7 +88,7 @@ main (int argc, char *argv[])
 
       /* we just care about seconds */
       delta = end_tv_sec - start_tv_sec;
-      printf ("ok %d - %lis\n", i + 1, delta);
+      printf ("Iter %i: %lis\n", i, delta);
     }
  
   method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService",
@@ -99,6 +98,6 @@ main (int argc, char *argv[])
   dbus_connection_send (conn, method, NULL);
   dbus_message_unref (method);
 
-  printf ("# Testing completed\n1..%d\n", i);
+  printf ("Success ***\n");
   exit (0);
 }
index 56b553c..e7f4896 100644 (file)
@@ -102,7 +102,7 @@ open_shutdown_private_connection (dbus_bool_t use_guid)
   dbus_message_unref (msg);
   if (!dbus_message_get_args (reply, &error, DBUS_TYPE_STRING, &addr, DBUS_TYPE_INVALID))
     die ("couldn't parse message replym\n");
-  printf ("got private temp address %s\n", addr);
+  printf ("got private temp address %s\n", addr);
   addr = strdup (addr);
   if (!use_guid)
     {
@@ -145,32 +145,24 @@ open_shutdown_private_connection (dbus_bool_t use_guid)
   _dbus_loop_unref (loop);
 }
 
-/* This test outputs TAP syntax: http://testanything.org/ */
 int
 main (int argc, char *argv[])
 {
-  int test_num = 0;
-
   open_shutdown_private_connection (TRUE);
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
   open_shutdown_private_connection (TRUE);
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
   open_shutdown_private_connection (FALSE);
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
   open_shutdown_private_connection (FALSE);
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
-  printf ("1..%d\n", test_num);
   return 0;
 }
index 367c809..39a98b7 100644 (file)
@@ -97,7 +97,7 @@ main (int argc, char *argv[])
   if (!server)
     die (error.message);
   testdata->private_addr = dbus_server_get_address (server);
-  fprintf (stderr, "test server listening on %s\n", testdata->private_addr);
+  printf ("test server listening on %s\n", testdata->private_addr);
 
   dbus_server_set_new_connection_function (server, new_connection_callback,
                                            testdata, NULL);
index 39612f1..526c1cb 100644 (file)
@@ -7,7 +7,7 @@ static DBusLoop *loop;
 static void
 die (const char *message)
 {
-  printf ("Bail out! test-shutdown: %s", message);
+  fprintf (stderr, "*** test-shutdown: %s", message);
   exit (1);
 }
 
@@ -46,28 +46,23 @@ open_destroy_shared_session_bus_connection (void)
   dbus_connection_unref (connection); 
 }
 
-/* This test outputs TAP syntax: http://testanything.org/ */
 int
 main (int    argc,
       char **argv)
 {
-  int test_num = 0;
-
   open_destroy_shared_session_bus_connection ();
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
   open_destroy_shared_session_bus_connection ();
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
   open_destroy_shared_session_bus_connection ();
 
   dbus_shutdown ();
-  printf ("ok %d\n", ++test_num);
 
-  printf ("1..%d\n", test_num);
+  _dbus_verbose ("*** Test shutdown exiting\n");
+  
   return 0;
 }
index 6285715..a517e2a 100644 (file)
@@ -105,7 +105,7 @@ check_condvar_lock (DBusCondVar *condvar1,
     }
 }
 
-/* This test outputs TAP syntax: http://testanything.org/ */
+
 int
 main (int argc, char *argv[])
 {
@@ -116,7 +116,6 @@ main (int argc, char *argv[])
   DBusCondVar *dispatch_cond1, *io_path_cond1;
   DBusMutex *mutex2, *dispatch_mutex2, *io_path_mutex2;
   DBusCondVar *dispatch_cond2, *io_path_cond2;
-  int test_num = 0;
 
   printf ("*** Testing late thread init\n");
 
@@ -141,7 +140,6 @@ main (int argc, char *argv[])
   check_mutex_lock (io_path_mutex1, io_path_mutex2, TRUE);
   check_condvar_lock (dispatch_cond1, dispatch_cond2, TRUE);
   check_condvar_lock (io_path_cond1, io_path_cond2, TRUE);
-  printf ("ok %d\n", ++test_num);
 
   dbus_threads_init_default ();
 
@@ -163,7 +161,6 @@ main (int argc, char *argv[])
   check_mutex_lock (io_path_mutex1, io_path_mutex2, TRUE);
   check_condvar_lock (dispatch_cond1, dispatch_cond2, TRUE);
   check_condvar_lock (io_path_cond1, io_path_cond2, TRUE);
-  printf ("ok %d\n", ++test_num);
 
   method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService",
                                          "/org/freedesktop/TestSuite",
@@ -172,6 +169,6 @@ main (int argc, char *argv[])
   dbus_connection_send (conn, method, NULL);
   dbus_message_unref (method);
 
-  printf ("Testing completed\n1..%d\n", test_num);
+  printf ("Success ***\n");
   exit (0);
 }