diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-15 00:29:47 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-15 00:29:47 +0200 |
commit | bf99d9233c52f1af314d3e634456df8ba032e7ba (patch) | |
tree | beeac487558414a166a4f9df648655afcd4bffa0 /tests/preseed-config.php | |
parent | e3489b36ffe2336ff685b63126aa56d17d69b123 (diff) | |
download | nextcloud-server-bf99d9233c52f1af314d3e634456df8ba032e7ba.tar.gz nextcloud-server-bf99d9233c52f1af314d3e634456df8ba032e7ba.zip |
on windows we supply an openssl.cnf file in order to execute the unit tests properly
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 9791e713dac..6210aa875ab 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -16,4 +16,9 @@ $CONFIG = array ( 'writable' => false, ) ), + ); + +if(substr(strtolower(PHP_OS), 0, 3) == "win") { + $CONFIG['openssl'] = OC::$SERVERROOT.'/tests/data/openssl.cnf'; +} |