3 # Copyright (c) 2011 David Bremner
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'
10 test_description='exception symbol hiding'
15 result=$(LD_LIBRARY_PATH="$TEST_DIRECTORY/../lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" $TEST_DIRECTORY/symbol-test 2>&1)
18 output="A Xapian exception occurred opening database: Couldn't stat 'fakedb/.notmuch/xapian'
19 caught No chert database found at path \`./nonexistant'"
21 mkdir -p fakedb/.notmuch
23 test_expect_success 'running test' run_test
25 test_begin_subtest 'checking output'
26 test_expect_equal "$result" "$output"
28 test_begin_subtest 'comparing existing to exported symbols'
29 objdump -t $TEST_DIRECTORY/../lib/*.o | awk '$4 == ".text" && $6 ~ "^notmuch" {print $6}' | sort | uniq > ACTUAL
30 sed -n 's/[[:blank:]]*\(notmuch_[^;]*\);/\1/p' $TEST_DIRECTORY/../notmuch.sym | sort | uniq > EXPORTED
31 test_expect_equal_file EXPORTED ACTUAL