aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-05-09 20:08:31 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-05-09 20:08:31 +0200
commite043763905171e332a28098c4dc5005b2ef2d57c (patch)
treee0f950d16f78724797389f4614a85c085ce26f21
parent3327739290fe9d953a813fe8649605cee617d06b (diff)
parentf9325bfdeb74f8d4479b40c050063dde81aa2857 (diff)
downloadforums-e043763905171e332a28098c4dc5005b2ef2d57c.tar
forums-e043763905171e332a28098c4dc5005b2ef2d57c.tar.gz
forums-e043763905171e332a28098c4dc5005b2ef2d57c.tar.bz2
forums-e043763905171e332a28098c4dc5005b2ef2d57c.tar.xz
forums-e043763905171e332a28098c4dc5005b2ef2d57c.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/11529] Format markdown code correctly [ticket/11529] Rename RUNNING_TESTS.txt to RUNNING_TESTS.md
-rw-r--r--tests/RUNNING_TESTS.md (renamed from tests/RUNNING_TESTS.txt)8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/RUNNING_TESTS.txt b/tests/RUNNING_TESTS.md
index fdca3aa178..f89c1fefeb 100644
--- a/tests/RUNNING_TESTS.txt
+++ b/tests/RUNNING_TESTS.md
@@ -82,14 +82,16 @@ In order to run tests on some of the databases that we support, it will be
necessary to provide a custom DSN string in test_config.php. This is only
needed for MSSQL 2000+ (PHP module), MSSQL via ODBC, and Firebird when
PDO_Firebird does not work on your system
-(https://bugs.php.net/bug.php?id=61183). The variable must be named $custom_dsn.
+(https://bugs.php.net/bug.php?id=61183). The variable must be named `$custom_dsn`.
Examples:
Firebird using http://www.firebirdsql.org/en/odbc-driver/
-$custom_dsn = "Driver={Firebird/InterBase(r) driver};dbname=$dbhost:$dbname";
+
+ $custom_dsn = "Driver={Firebird/InterBase(r) driver};dbname=$dbhost:$dbname";
MSSQL
-$custom_dsn = "Driver={SQL Server Native Client 10.0};Server=$dbhost;Database=$dbname";
+
+ $custom_dsn = "Driver={SQL Server Native Client 10.0};Server=$dbhost;Database=$dbname";
The other fields in test_config.php should be filled out as you would normally
to connect to that database in phpBB.