diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-07-02 08:05:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 08:05:02 +0800 |
commit | 54807231c03495d6a322885d3ae7061e47cac490 (patch) | |
tree | adc77d11f598aa94234b66a2952c09f4fc9b96f8 /test/functional/legacy | |
parent | bbaee29add9b6911ce0778bd93e21b93e034e548 (diff) | |
download | rneovim-54807231c03495d6a322885d3ae7061e47cac490.tar.gz rneovim-54807231c03495d6a322885d3ae7061e47cac490.tar.bz2 rneovim-54807231c03495d6a322885d3ae7061e47cac490.zip |
test: check for ASAN properly (#24224)
Follow-up to #24195.
Diffstat (limited to 'test/functional/legacy')
-rw-r--r-- | test/functional/legacy/memory_usage_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/memory_usage_spec.lua b/test/functional/legacy/memory_usage_spec.lua index 59839157ea..bf37315914 100644 --- a/test/functional/legacy/memory_usage_spec.lua +++ b/test/functional/legacy/memory_usage_spec.lua @@ -13,7 +13,7 @@ local is_os = helpers.is_os local is_ci = helpers.is_ci local function isasan() - local version = eval('execute("version")') + local version = eval('execute("verbose version")') return version:match('-fsanitize=[a-z,]*address') end |