aboutsummaryrefslogtreecommitdiffstats
path: root/fnet
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2021-04-30 16:32:45 +0200
committerTor Egge <Tor.Egge@online.no>2021-04-30 16:32:45 +0200
commit66077a713c6e3d5c0f73e1f6604c9ad0973989a8 (patch)
treee4831d97e6e33fd97ec3e31ac2ff5d4a1acaf7be /fnet
parent7432ae34d04924cd98e33c608d30b8f1c8b773e2 (diff)
Track mutex size for Amazon Linux 2 on arm cpu.
Diffstat (limited to 'fnet')
-rw-r--r--fnet/src/tests/info/info.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/fnet/src/tests/info/info.cpp b/fnet/src/tests/info/info.cpp
index 3422efe1da6..d093ee1da06 100644
--- a/fnet/src/tests/info/info.cpp
+++ b/fnet/src/tests/info/info.cpp
@@ -72,6 +72,8 @@ TEST("size of important objects")
{
#ifdef __APPLE__
constexpr size_t MUTEX_SIZE = 64u;
+#elif defined(__aarch64__)
+ constexpr size_t MUTEX_SIZE = 48u;
#else
constexpr size_t MUTEX_SIZE = 40u;
#endif