-
Notifications
You must be signed in to change notification settings - Fork 7.9k
make test fail while soap extention build #8426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Apparently, the soap extension has not been loaded, and the test currently caters to Windows only wrt. to dynamically built ext/soap: php-src/ext/soap/tests/bug73037.phpt Lines 62 to 63 in 15ee285
|
Sure, I tried to check this idea here $router = "bug73037_server.php";
$args = substr(PHP_OS, 0, 3) == 'WIN'
? ["-d", "extension_dir=" . ini_get("extension_dir"), "-d", "extension=php_soap.dll"] : [];
$code = <<<'PHP'
if (!extension_loaded('soap')) {
throw new \Exception('soap not loaded');
} and it throw exception |
Why did you close this ticket? The issue already has been acknowledged as bug, and even if you don't need this bug to be fixed, I don't see a reason to close it prematurely. |
My apologies, I don't want to spend your time waste, I solve this problem locally and that's why I've closed all issue, but if you would like to solve it, please do it. |
If you build soap as a shared object, then these tests fail on non-Windows, or when the PHP install hasn't been make install-ed yet, but is executed from the development directory.
If you build soap as a shared object, then these tests fail on non-Windows, or when the PHP install hasn't been make install-ed yet, but is executed from the development directory.
* PHP-8.1: Fix GH-8426: make test fail while soap extension build
* PHP-8.2: Fix GH-8426: make test fail while soap extension build
Uh oh!
There was an error while loading. Please reload this page.
Description
I have faced with problem in soap extension while building and testing
tests/bug73037.phpt
Resulted in this output:
PHP Version
PHP 8.1.5 PHP 7.4.29
Operating System
REHL
The text was updated successfully, but these errors were encountered: