[glib: 12/16] tests: Allow bitlock performance test to be smoketested




commit 419f882952153a2bc6fd1548b2c551531209f622
Author: Philip Withnall <pwithnall endlessos org>
Date:   Tue Jun 14 16:58:34 2022 +0100

    tests: Allow bitlock performance test to be smoketested
    
    Allow it to be run with a reduced iteration count when not run as `-m
    perf`, in order to check that the test still works.
    
    Previously it would do nothing when run without `-m perf`.
    
    Signed-off-by: Philip Withnall <pwithnall endlessos org>

 glib/tests/bitlock.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/glib/tests/bitlock.c b/glib/tests/bitlock.c
index 694fe6dd1e..a216720999 100644
--- a/glib/tests/bitlock.c
+++ b/glib/tests/bitlock.c
@@ -1,15 +1,16 @@
 #include <glib.h>
 
-#define ITERATIONS 100000000
-
 static void
 test_bitlocks (void)
 {
   guint64 start = g_get_monotonic_time ();
   gint lock = 0;
-  gint i;
+  guint i;
+  guint n_iterations;
+
+  n_iterations = g_test_perf () ? 100000000 : 1;
 
-  for (i = 0; i < ITERATIONS; i++)
+  for (i = 0; i < n_iterations; i++)
     {
       g_bit_lock (&lock, 0);
       g_bit_unlock (&lock, 0);
@@ -21,7 +22,7 @@ test_bitlocks (void)
 
     elapsed = g_get_monotonic_time () - start;
     elapsed /= 1000000;
-    rate = ITERATIONS / elapsed;
+    rate = n_iterations / elapsed;
 
     g_test_maximized_result (rate, "iterations per second");
   }
@@ -32,8 +33,7 @@ main (int argc, char **argv)
 {
   g_test_init (&argc, &argv, NULL);
 
-  if (g_test_perf ())
-    g_test_add_func ("/bitlock/performance/uncontended", test_bitlocks);
+  g_test_add_func ("/bitlock/performance/uncontended", test_bitlocks);
 
   return g_test_run ();
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]