diff options
author | L. E. Segovia <amy@centricular.com> | 2024-08-27 22:21:04 -0300 |
---|---|---|
committer | L. E. Segovia <amy@centricular.com> | 2024-09-10 11:10:41 -0300 |
commit | 43b7f703325c69cac40ab9bdcf54f58cf27d2fb0 (patch) | |
tree | ab5c4e5965c3130ba3dfbf745adf44d90fa3c933 /recipes | |
parent | 67cdf40498b542dcd8777eb1853831d77a4fe28f (diff) |
openssl: Skip tests on Windows
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1149>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/openssl.recipe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/openssl.recipe b/recipes/openssl.recipe index dfc9572a..a900185e 100644 --- a/recipes/openssl.recipe +++ b/recipes/openssl.recipe @@ -222,6 +222,9 @@ class Recipe(recipe.Recipe): else: raise AssertionError + if self.config.platform == Platform.WINDOWS: + config_sh += ' no-tests ' + await shell.async_call(config_sh + self.openssl_platform, self.build_dir, logfile=self.logfile, env=self.env) |