aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-02-09 05:57:59 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2024-02-13 00:18:38 +0200
commit6c2c4612cc8f141e27ab2dd8ccacd92894c29552 (patch)
treedfa0c6b3c5ebac0e7bef8145632c0d10555ecf3a
parent152a45a360e01d8911b4f2dfe17b330161618376 (diff)
downloadmeson-6c2c4612cc8f141e27ab2dd8ccacd92894c29552.zip
meson-6c2c4612cc8f141e27ab2dd8ccacd92894c29552.tar.gz
meson-6c2c4612cc8f141e27ab2dd8ccacd92894c29552.tar.bz2
Fix comment typo
Oops. Fixes: 7b7d2e060b447de9c2642848847370a58711ac1c Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--mesonbuild/mtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py
index c0775ef..d9ae783 100644
--- a/mesonbuild/mtest.py
+++ b/mesonbuild/mtest.py
@@ -1408,7 +1408,7 @@ class SingleTestRunner:
# Sanitizers do not default to aborting on error. This is counter to
# expectations when using -Db_sanitize and has led to confusion in the wild
- # in CI. Set our own values of {ASAN,UBSAN}_OPTOINS to rectify this, but
+ # in CI. Set our own values of {ASAN,UBSAN}_OPTIONS to rectify this, but
# only if the user has not defined them.
if ('ASAN_OPTIONS' not in env or not env['ASAN_OPTIONS']):
env['ASAN_OPTIONS'] = 'halt_on_error=1:abort_on_error=1:print_summary=1'