From: David Bremner Date: Sat, 18 Mar 2017 19:35:51 +0000 (-0300) Subject: perf-test/mem: add simple memory tests for notmuch search X-Git-Tag: 0.25_rc0~101 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=2571d535a35a90f7ed4419d7c33c575b647cb614 perf-test/mem: add simple memory tests for notmuch search Just copy and replace from the show tests. Currently these show no major leaks. --- diff --git a/performance-test/M03-search.sh b/performance-test/M03-search.sh new file mode 100755 index 00000000..8d026eee --- /dev/null +++ b/performance-test/M03-search.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +test_description='search' + +. ./perf-test-lib.sh || exit 1 + +memory_start + +memory_run 'search *' "notmuch search '*' 1>/dev/null" +memory_run 'search --format=json *' "notmuch search --format=json '*' 1>/dev/null" +memory_run 'search --format=sexp *' "notmuch search --format=sexp '*' 1>/dev/null" + +memory_done