This is an automated email from the ASF dual-hosted git repository.

dragon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 79e3bf87e392b7ccb421c3676a8d0d8444ca70fb
Author: = <bill.j....@gmail.com>
AuthorDate: Thu Oct 12 18:27:14 2017 -0500

    added plugin exists condition
---
 tests/gold_tests/autest-site/conditions.test.ext | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/gold_tests/autest-site/conditions.test.ext 
b/tests/gold_tests/autest-site/conditions.test.ext
index ff12378..21b21c2 100644
--- a/tests/gold_tests/autest-site/conditions.test.ext
+++ b/tests/gold_tests/autest-site/conditions.test.ext
@@ -47,6 +47,14 @@ def HasATSFeature(self, feature):
         "ATS feature not enabled: {feature}".format(feature=feature)
     )
 
+#test if a plugin exists in the libexec folder
+def PluginExists(self, pluginname):
+
+    path = self.Variables.PLUGINDIR + "/"
+    return self.Condition(lambda: os.path.isfile(path + pluginname) == True, 
"The plugin: " + pluginname + " does not exist in " + path )
+
 
 ExtendCondition(HasATSFeature)
 ExtendCondition(HasCurlFeature)
+ExtendCondition(PluginExists)
+

-- 
To stop receiving notification emails like this one, please contact
"commits@trafficserver.apache.org" <commits@trafficserver.apache.org>.

Reply via email to