unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 8c29457822fd696278260e0aee8b98ab17c9621c 974 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
40
 
#!/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="-fsanitize=address"

test_begin_subtest "open and destroy"
test_subtest_known_broken
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 8c294578 ...
found 8c294578 in https://yhetil.org/notmuch.git/

(*) 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).