Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 037D8429E5F for ; Wed, 29 Jun 2011 04:56:51 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2.3 X-Spam-Level: X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PNb+nAlOA+ho for ; Wed, 29 Jun 2011 04:56:50 -0700 (PDT) Received: from tempo.its.unb.ca (tempo.its.unb.ca [131.202.1.21]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 11912429E5B for ; Wed, 29 Jun 2011 04:56:49 -0700 (PDT) Received: from zancas.localnet (fctnnbsc30w-142167176081.pppoe-dynamic.High-Speed.nb.bellaliant.net [142.167.176.81]) (authenticated bits=0) by tempo.its.unb.ca (8.13.8/8.13.8) with ESMTP id p5TBuiL3028217 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Wed, 29 Jun 2011 08:56:45 -0300 Received: from bremner by zancas.localnet with local (Exim 4.76) (envelope-from ) id 1QbtNs-00055P-GZ; Wed, 29 Jun 2011 08:56:44 -0300 From: david@tethera.net To: notmuch@notmuchmail.org Subject: [PATCH 1/2] test/symbol-hiding: rename to test/libnotmuch-abi, prepare to add more subtests Date: Wed, 29 Jun 2011 08:56:34 -0300 Message-Id: <1309348595-19503-1-git-send-email-david@tethera.net> X-Mailer: git-send-email 1.7.5.4 Cc: David Bremner X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Jun 2011 11:56:51 -0000 From: David Bremner Test descriptions changed to accomodate more subtests. The generic 'run_test' is renamed 'run_exception_test', symbol-test(.cc) is renamed exception-test(.cc). --- I'm not sure if it would be better to start a new test script rather than this fuss about renaming, but "symbol-test.cc" is probably to generic as a name anyway. Arguably exception-test.cc is pretty generic too. test/basic | 2 +- test/exception-test.cc | 17 +++++++++++++++++ test/libnotmuch-abi | 26 ++++++++++++++++++++++++++ test/notmuch-test | 2 +- test/symbol-hiding | 26 -------------------------- test/symbol-test.cc | 17 ----------------- 6 files changed, 45 insertions(+), 45 deletions(-) create mode 100644 test/exception-test.cc create mode 100755 test/libnotmuch-abi delete mode 100755 test/symbol-hiding delete mode 100644 test/symbol-test.cc diff --git a/test/basic b/test/basic index 33bf711..9b8542f 100755 --- a/test/basic +++ b/test/basic @@ -56,7 +56,7 @@ tests_in_suite=$(for i in $TESTS; do echo $i; done | sort) available=$(ls -1 $TEST_DIRECTORY/ | \ sed -r -e "/^(aggregate-results.sh|Makefile|Makefile.local|notmuch-test)/d" \ -e "/^(README|test-lib.sh|test-lib.el|test-results|tmp.*|valgrind|corpus*)/d" \ - -e "/^(emacs.expected-output|smtp-dummy|smtp-dummy.c|test-verbose|symbol-test.cc)/d" \ + -e "/^(emacs.expected-output|smtp-dummy|smtp-dummy.c|test-verbose|exception-test.cc)/d" \ -e "/^(test.expected-output|.*~)/d" \ -e "/^(gnupg-secret-key.asc)/d" \ -e "/^(gnupg-secret-key.NOTE)/d" \ diff --git a/test/exception-test.cc b/test/exception-test.cc new file mode 100644 index 0000000..1de06ea --- /dev/null +++ b/test/exception-test.cc @@ -0,0 +1,17 @@ +#include +#include +#include +main (int argc, char **argv){ + + notmuch_database_t *notmuch + = notmuch_database_open ("fakedb", + NOTMUCH_DATABASE_MODE_READ_ONLY); + + try{ + (void)new Xapian::WritableDatabase ("./nonexistant", Xapian::DB_OPEN); + } catch (const Xapian::Error &error) { + printf("caught %s\n",error.get_msg().c_str()); + return 0; + } + return 1; +} diff --git a/test/libnotmuch-abi b/test/libnotmuch-abi new file mode 100755 index 0000000..a7467b8 --- /dev/null +++ b/test/libnotmuch-abi @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# +# Copyright (c) 2011 David Bremner +# + +test_description='libnotmuch symbol export and hiding' + +# This subtest tests whether hiding Xapian::Error symbols in libnotmuch +# also hides them for other users of libxapian. This is motivated by +# the discussion in http://gcc.gnu.org/wiki/Visibility' + +. ./test-lib.sh + +run_exception_test(){ + result=$(LD_LIBRARY_PATH=$TEST_DIRECTORY/../lib ./exception-test 2>&1) +} + +output="A Xapian exception occurred opening database: Couldn't stat 'fakedb/.notmuch/xapian' +caught No chert database found at path \`./nonexistant'" + +g++ -o exception-test -I$TEST_DIRECTORY/../lib $TEST_DIRECTORY/exception-test.cc -L$TEST_DIRECTORY/../lib -lnotmuch -lxapian +mkdir -p fakedb/.notmuch +test_expect_success 'running exception test' run_exception_test +test_begin_subtest 'checking output' +test_expect_equal "$result" "$output" +test_done diff --git a/test/notmuch-test b/test/notmuch-test index fe85c6a..c7296fa 100755 --- a/test/notmuch-test +++ b/test/notmuch-test @@ -40,7 +40,7 @@ TESTS=" emacs-large-search-buffer maildir-sync crypto - symbol-hiding + libnotmuch-abi " TESTS=${NOTMUCH_TESTS:=$TESTS} diff --git a/test/symbol-hiding b/test/symbol-hiding deleted file mode 100755 index d0b31ae..0000000 --- a/test/symbol-hiding +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2011 David Bremner -# - -# This test tests whether hiding Xapian::Error symbols in libnotmuch -# also hides them for other users of libxapian. This is motivated by -# the discussion in http://gcc.gnu.org/wiki/Visibility' - -test_description='exception symbol hiding' - -. ./test-lib.sh - -run_test(){ - result=$(LD_LIBRARY_PATH=$TEST_DIRECTORY/../lib ./symbol-test 2>&1) -} - -output="A Xapian exception occurred opening database: Couldn't stat 'fakedb/.notmuch/xapian' -caught No chert database found at path \`./nonexistant'" - -g++ -o symbol-test -I$TEST_DIRECTORY/../lib $TEST_DIRECTORY/symbol-test.cc -L$TEST_DIRECTORY/../lib -lnotmuch -lxapian -mkdir -p fakedb/.notmuch -test_expect_success 'running test' run_test -test_begin_subtest 'checking output' -test_expect_equal "$result" "$output" -test_done diff --git a/test/symbol-test.cc b/test/symbol-test.cc deleted file mode 100644 index 1de06ea..0000000 --- a/test/symbol-test.cc +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include -#include -main (int argc, char **argv){ - - notmuch_database_t *notmuch - = notmuch_database_open ("fakedb", - NOTMUCH_DATABASE_MODE_READ_ONLY); - - try{ - (void)new Xapian::WritableDatabase ("./nonexistant", Xapian::DB_OPEN); - } catch (const Xapian::Error &error) { - printf("caught %s\n",error.get_msg().c_str()); - return 0; - } - return 1; -} -- 1.7.5.4