summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-09-09 23:52:43 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2021-09-13 11:05:44 +0200
commit44b309f202a0abfad19300f0681faa64ea3124a1 (patch)
treec3ac3d7507ecca7117dd0fb05db31569d82e7c66
parent3831932228c2271d722ac9785f2dc4a6c8d88686 (diff)
build: Remove unnecessary MALLOC_PERTURB_ variable set
meson's test function already sets the `MALLOC_PERTURB_` environment variable[0], so there is no need to set it. [0] https://mesonbuild.com/Reference-manual.html#test
-rw-r--r--meson.build3
1 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 9cee511..a83eab7 100644
--- a/meson.build
+++ b/meson.build
@@ -223,12 +223,9 @@ if enable_gir
dependency('gobject-introspection-1.0', version: '>= 0.9.6')
endif
-random_number = qmi_minor_version + meson.version().split('.').get(1).to_int()
-
test_env = {
'G_DEBUG': 'gc-friendly',
'MALLOC_CHECK_': '2',
- 'MALLOC_PERTURB_': (random_number % 256).to_string(),
}
subdir('src')