Skip to content
Snippets Groups Projects
Unverified Commit eeaf445c authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #1545 from dcermak/master

Only check OPENSSL_BUILT_ON if it is not ""
parents e0998470 d96e294b
Branches
Tags
No related merge requests found
......@@ -127,6 +127,9 @@ fn test_versions() {
assert!(number() > 0);
assert!(version().starts_with(expected_name()));
assert!(c_flags().starts_with("compiler:"));
// some distributions patch out dates out of openssl so that the builds are reproducible
if !built_on().is_empty() {
assert!(built_on().starts_with("built on:"));
}
assert!(dir().starts_with("OPENSSLDIR:"));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment