aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-07-02 08:05:02 +0800
committerGitHub <noreply@github.com>2023-07-02 08:05:02 +0800
commit54807231c03495d6a322885d3ae7061e47cac490 (patch)
treeadc77d11f598aa94234b66a2952c09f4fc9b96f8 /test/functional/legacy
parentbbaee29add9b6911ce0778bd93e21b93e034e548 (diff)
downloadrneovim-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.lua2
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