-
Notifications
You must be signed in to change notification settings - Fork 501
[BUILD] Use -dev versions in main branch #3609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
31f7e07
74e23d5
b480fdf
5711b71
aebff71
41a5ade
b5f3bda
c39143f
163aa2e
9fb44c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,7 @@ TEST(VersionTest, Consistency) | |
OPENTELEMETRY_VERSION_MINOR, OPENTELEMETRY_VERSION_PATCH); | ||
|
||
std::string actual = OPENTELEMETRY_VERSION; | ||
EXPECT_EQ(actual, expected); | ||
/* OPENTELEMETRY_VERSION may contain a -dev suffix */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check the exact suffix? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The There is no This code change in the unit test is sufficient to pass with both "1.23.0" and "1.23.0-dev". |
||
std::string prefix = actual.substr(0, strlen(expected)); | ||
EXPECT_EQ(prefix, expected); | ||
} |
Uh oh!
There was an error while loading. Please reload this page.