* tests/test-get-rusage-data.c (main): Don't expect a strict increase on
FreeBSD systems.
+2020-12-07 Bruno Haible <bruno@clisp.org>
+
+ get-rusage-data tests: Avoid test failure on FreeBSD/x86_64.
+ * tests/test-get-rusage-data.c (main): Don't expect a strict increase on
+ FreeBSD systems.
+
2020-12-07 Bruno Haible <bruno@clisp.org>
get-rusage-data: Fix link error on FreeBSD 12.2/arm64.
ASSERT (value2 >= value1);
ASSERT (value3 >= value2);
-#if !(__GLIBC__ == 2 || (defined __APPLE__ && defined __MACH__) || defined __DragonFly__ || defined __OpenBSD__ || defined _WIN32 || defined __CYGWIN__)
+#if !(__GLIBC__ == 2 || (defined __APPLE__ && defined __MACH__) || defined __FreeBSD__ || defined __DragonFly__ || defined __OpenBSD__ || defined _WIN32 || defined __CYGWIN__)
/* Allocating 2.5 MB of memory should increase the data segment size. */
ASSERT (value3 > value1);
#endif