From 2eda2564387ad87611ee0ffe3c2f16936ceb3ba4 Mon Sep 17 00:00:00 2001
From: Matthieu Napoli <matthieu@mnapoli.fr>
Date: Thu, 8 Jan 2015 18:15:53 +1300
Subject: [PATCH] Logging in case dropping the test database failed

---
 tests/PHPUnit/Framework/Fixture.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/PHPUnit/Framework/Fixture.php b/tests/PHPUnit/Framework/Fixture.php
index e3a6aa55db..4dc2ad5183 100644
--- a/tests/PHPUnit/Framework/Fixture.php
+++ b/tests/PHPUnit/Framework/Fixture.php
@@ -833,6 +833,7 @@ class Fixture extends \PHPUnit_Framework_Assert
         try {
             DbHelper::dropDatabase($dbName);
         } catch (Exception $e) {
+            printf("Dropping database %s failed: %s\n", $dbName, $e->getMessage());
         }
     }
 
-- 
GitLab