Skip to content

Commit 0a465fd

Browse files
committedAug 26, 2019
disable tests if corresponding module isn't installed
1 parent f3cdcda commit 0a465fd

File tree

78 files changed

+81
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+81
-0
lines changed
 

‎secp256k1/tests/secp256k1_ecdh_basic.phpt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ secp256k1_ecdh works
33
--SKIPIF--
44
<?php
55
if (!extension_loaded("secp256k1")) print "skip extension not loaded";
6+
if (!function_exists("secp256k1_ecdh")) print "skip no ecdh support";
67
?>
78
--FILE--
89
<?php

‎secp256k1/tests/secp256k1_ecdh_customhash_can_fail.phpt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ secp256k1_ecdh - a custom hash function can cause operation to fail
33
--SKIPIF--
44
<?php
55
if (!extension_loaded("secp256k1")) print "skip extension not loaded";
6+
if (!function_exists("secp256k1_ecdh")) print "skip no ecdh support";
67
?>
78
--FILE--
89
<?php

0 commit comments

Comments
 (0)
Please sign in to comment.