Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rust Openssl
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Public Repositories
Rust Openssl
Commits
eeaf445c
Unverified
Commit
eeaf445c
authored
Oct 27, 2021
by
Steven Fackler
Committed by
GitHub
Oct 27, 2021
Browse files
Options
Downloads
Plain Diff
Merge pull request #1545 from dcermak/master
Only check OPENSSL_BUILT_ON if it is not ""
parents
e0998470
d96e294b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
openssl/src/version.rs
+4
-1
4 additions, 1 deletion
openssl/src/version.rs
with
4 additions
and
1 deletion
openssl/src/version.rs
+
4
−
1
View file @
eeaf445c
...
...
@@ -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:"
));
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment