Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Don't run an openssl-dependent test is openssl isn't installed
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet authored and jvoisin committed Jul 9, 2019
1 parent 11154bd commit 56e0163
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tests/stream_wrapper/stream_wrapper.phpt
@@ -1,7 +1,10 @@
--TEST--
Stream wrapper
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) print "skip"; ?>
<?php
if (!extension_loaded("snuffleupagus")) print "skip snuffleupagus extension missing";
if (!extension_loaded("openssl")) print "skip openssl extension missing";
?>
--INI--
sp.configuration_file={PWD}/config/config_stream_wrapper.ini
--FILE--
Expand Down

0 comments on commit 56e0163

Please sign in to comment.