JosiahWI commented on code in PR #13264:
URL: https://github.com/apache/trafficserver/pull/13264#discussion_r3427847147
##########
tests/gold_tests/tls/tls_engine.test.py:
##########
@@ -25,16 +25,19 @@
Test tls via the async interface with the sample async_engine
'''
+async_engine = os.path.join(Test.Variables.AtsTestPluginsDir,
'async_engine.so')
+
Test.SkipUnless(
Condition.HasOpenSSLVersion('1.1.1'),
Condition.IsOpenSSL(),
+ Condition(lambda: os.path.isfile(async_engine), async_engine + " not
found."),
Review Comment:
Good. We can't use `Condition.PluginExists` because the test plugin isn't
already in the runtime plugin directory.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]