Skip to content

Commit 44ce281

Browse files
committed
alloc_is_installd: add an exemption for system allocator
1 parent e145540 commit 44ce281

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bench.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ function alloc_is_installed { # <path> : path to .$extso-file
216216
}
217217

218218
function alloc_run_add { # <allocator> :add to runnable
219+
if test "$1" = "sys"; then
220+
alloc_run="$alloc_run $1"
221+
return
222+
fi
219223
if alloc_is_installed $(get_so_path "$1"); then
220224
alloc_run="$alloc_run $1"
221225
fi

0 commit comments

Comments
 (0)