summaryrefslogtreecommitdiffstats
path: root/libraries/LucenePlusPlus/LuceneTestFixture.patch
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-02-08 15:51:37 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-02-08 15:51:37 +0700
commitb4f7c7d98fddc65a1b0fb716af4f26a1e28d5a1f (patch)
treee7d3efd88ea2059a962a6085c5a67e6dfebefd9e /libraries/LucenePlusPlus/LuceneTestFixture.patch
parent46be8fe6a2a3a2d9afbdea1f7621b48796dfbe71 (diff)
downloadslackbuilds-b4f7c7d98fddc65a1b0fb716af4f26a1e28d5a1f.tar.gz
slackbuilds-b4f7c7d98fddc65a1b0fb716af4f26a1e28d5a1f.tar.xz
libraries/LucenePlusPlus: Updated for version 3.0.7.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--libraries/LucenePlusPlus/LuceneTestFixture.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/libraries/LucenePlusPlus/LuceneTestFixture.patch b/libraries/LucenePlusPlus/LuceneTestFixture.patch
deleted file mode 100644
index b36068eee6..0000000000
--- a/libraries/LucenePlusPlus/LuceneTestFixture.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 4c1f1371e98c387cb07043c26b99beff5b5111a8
-Author: Alan Wright <alan@spotify.com>
-Date: Mon Apr 28 13:53:48 2014 +0100
-
- Throw exception in fixture destructor instead of FAIL().
-
-diff --git a/src/test/util/LuceneTestFixture.cpp b/src/test/util/LuceneTestFixture.cpp
-index 27c61e0..e737bdb 100644
---- a/src/test/util/LuceneTestFixture.cpp
-+++ b/src/test/util/LuceneTestFixture.cpp
-@@ -21,7 +21,7 @@ LuceneTestFixture::~LuceneTestFixture() {
- if (ConcurrentMergeScheduler::anyUnhandledExceptions()) {
- // Clear the failure so that we don't just keep failing subsequent test cases
- ConcurrentMergeScheduler::clearUnhandledExceptions();
-- FAIL() << "ConcurrentMergeScheduler hit unhandled exceptions";
-+ boost::throw_exception(RuntimeException(L"ConcurrentMergeScheduler hit unhandled exceptions"));
- }
- }
-