]> git.notmuchmail.org Git - notmuch/blob - test/symbol-hiding
emacs: add invisible space after the search widget field in notmuch-hello
[notmuch] / test / symbol-hiding
1 #!/usr/bin/env bash
2 #
3 # Copyright (c) 2011 David Bremner
4 #
5
6 # This test tests whether hiding Xapian::Error symbols in libnotmuch
7 # also hides them for other users of libxapian. This is motivated by
8 # the discussion in http://gcc.gnu.org/wiki/Visibility'
9
10 test_description='exception symbol hiding'
11
12 . ./test-lib.sh
13
14 run_test(){
15     result=$(LD_LIBRARY_PATH=$TEST_DIRECTORY/../lib ./symbol-test 2>&1)
16 }
17
18 output="A Xapian exception occurred opening database: Couldn't stat 'fakedb/.notmuch/xapian'
19 caught No chert database found at path \`./nonexistant'"
20
21 g++ -o symbol-test -I$TEST_DIRECTORY/../lib $TEST_DIRECTORY/symbol-test.cc -L$TEST_DIRECTORY/../lib -lnotmuch -lxapian
22 mkdir -p fakedb/.notmuch
23 test_expect_success 'running test' run_test
24 test_begin_subtest 'checking output'
25 test_expect_equal "$result" "$output" 
26 test_done