]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: drop log_trace() in test-random-util
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 5 May 2021 18:47:58 +0000 (03:47 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 6 May 2021 03:46:31 +0000 (12:46 +0900)
It provides almost no inoformation. Moreover, it massively increases
logs, and firefox cannot show the results of Ubuntu CIs due to this.

src/test/test-random-util.c

index 44103efa62a24a6fd3eb45486b68bf75b491c037..42d7a746da6965a13a8f1e589f107dae4c3a56f9 100644 (file)
@@ -68,7 +68,6 @@ static void test_random_u64_range_one(unsigned mod) {
 
                 x = random_u64_range(mod);
 
-                log_trace("%05u: %"PRIu64, i, x);
                 count[x]++;
                 max = MAX(max, count[x]);
         }