summaryrefslogtreecommitdiffhomepage
path: root/test/unit/applications/lang/perl.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/unit/applications/lang/perl.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/unit/applications/lang/perl.py b/test/unit/applications/lang/perl.py
index d32aca33..a27c7649 100644
--- a/test/unit/applications/lang/perl.py
+++ b/test/unit/applications/lang/perl.py
@@ -1,3 +1,4 @@
+from conftest import option
from unit.applications.proto import TestApplicationProto
@@ -5,14 +6,18 @@ class TestApplicationPerl(TestApplicationProto):
application_type = "perl"
def load(self, script, name='psgi.pl', **kwargs):
- script_path = self.current_dir + '/perl/' + script
+ 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,