unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 463bd386f800601270bea63ac40e09a75f661aba 967 bytes (raw)
name: test/T800-asan.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 
#!/usr/bin/env bash
test_description='run code with ASAN enabled against the library'
. $(dirname "$0")/test-lib.sh || exit 1

if [[ $NOTMUCH_HAVE_ASAN -ne 1 ]]; then
    printf "Skipping due to missing ASAN support\n"
    test_done
fi

add_email_corpus

TEST_CFLAGS="${TEST_CFLAGS:-} -fsanitize=address"

test_begin_subtest "open and destroy"
test_C ${MAIL_DIR} ${NOTMUCH_CONFIG} <<EOF
#include <notmuch.h>
#include <stdio.h>

int main(int argc, char **argv) {
  notmuch_database_t *db = NULL;

  notmuch_status_t st = notmuch_database_open_with_config(argv[1],
                                                          NOTMUCH_DATABASE_MODE_READ_ONLY,
                                                          argv[2], NULL, &db, NULL);

  printf("db != NULL: %d\n", db != NULL);
  if (db != NULL)
    notmuch_database_destroy(db);
  return 0;
}
EOF
cat <<EOF > EXPECTED
== stdout ==
db != NULL: 1
== stderr ==
EOF
test_expect_equal_file EXPECTED OUTPUT

test_done

debug log:

solving 463bd386 ...
found 463bd386 in https://yhetil.org/notmuch/20230409142627.2216080-2-david@tethera.net/
found 5055c93e in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100755 5055c93e122b2c82449e5df4cf5d38632d971545	test/T800-asan.sh

applying [1/1] https://yhetil.org/notmuch/20230409142627.2216080-2-david@tethera.net/
diff --git a/test/T800-asan.sh b/test/T800-asan.sh
index 5055c93e..463bd386 100755

Checking patch test/T800-asan.sh...
Applied patch test/T800-asan.sh cleanly.

index at:
100755 463bd386f800601270bea63ac40e09a75f661aba	test/T800-asan.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).