Tests: fixed loading selected module version.

Previously, for PHP, Ruby, and Perl the latest version was always loaded
in multi-version tests.
This commit is contained in:
Valentin Bartenev
2020-10-07 22:04:54 +03:00
parent 3f513f434f
commit 645683f432
3 changed files with 15 additions and 3 deletions

View File

@@ -7,13 +7,17 @@ class TestApplicationPerl(TestApplicationProto):
def load(self, script, name='psgi.pl', **kwargs):
script_path = option.test_dir + '/perl/' + script
appication_type = self.get_appication_type()
if appication_type is None:
appication_type = self.application_type
self._load_conf(
{
"listeners": {"*:7080": {"pass": "applications/" + script}},
"applications": {
script: {
"type": self.application_type,
"type": appication_type,
"processes": {"spare": 0},
"working_directory": script_path,
"script": script_path + '/' + name,