Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: test/cctest/test-version.cc

Issue 2643393004: Revert of [build] Introduce an embedder version string (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-version.cc
diff --git a/test/cctest/test-version.cc b/test/cctest/test-version.cc
index 464505e5c957367e12e4da39fd02354b7ff4fe28..50fca16871a335331fad1481e110be558db8dba3 100644
--- a/test/cctest/test-version.cc
+++ b/test/cctest/test-version.cc
@@ -37,12 +37,11 @@
namespace internal {
void SetVersion(int major, int minor, int build, int patch,
- const char* embedder, bool candidate, const char* soname) {
+ bool candidate, const char* soname) {
Version::major_ = major;
Version::minor_ = minor;
Version::build_ = build;
Version::patch_ = patch;
- Version::embedder_ = embedder;
Version::candidate_ = candidate;
Version::soname_ = soname;
}
@@ -50,14 +49,16 @@
} // namespace internal
} // namespace v8
-static void CheckVersion(int major, int minor, int build, int patch,
- const char* embedder, bool candidate,
+
+static void CheckVersion(int major, int minor, int build,
+ int patch, bool candidate,
const char* expected_version_string,
const char* expected_generic_soname) {
static v8::internal::EmbeddedVector<char, 128> version_str;
static v8::internal::EmbeddedVector<char, 128> soname_str;
+
// Test version without specific SONAME.
- SetVersion(major, minor, build, patch, embedder, candidate, "");
+ SetVersion(major, minor, build, patch, candidate, "");
Version::GetString(version_str);
CHECK_EQ(0, strcmp(expected_version_string, version_str.start()));
Version::GetSONAME(soname_str);
@@ -65,7 +66,7 @@
// Test version with specific SONAME.
const char* soname = "libv8.so.1";
- SetVersion(major, minor, build, patch, embedder, candidate, soname);
+ SetVersion(major, minor, build, patch, candidate, soname);
Version::GetString(version_str);
CHECK_EQ(0, strcmp(expected_version_string, version_str.start()));
Version::GetSONAME(soname_str);
@@ -75,40 +76,30 @@
TEST(VersionString) {
#ifdef USE_SIMULATOR
- CheckVersion(0, 0, 0, 0, "", false, "0.0.0 SIMULATOR", "libv8-0.0.0.so");
- CheckVersion(0, 0, 0, 0, "", true, "0.0.0 (candidate) SIMULATOR",
- "libv8-0.0.0-candidate.so");
- CheckVersion(1, 0, 0, 0, "", false, "1.0.0 SIMULATOR", "libv8-1.0.0.so");
- CheckVersion(1, 0, 0, 0, "", true, "1.0.0 (candidate) SIMULATOR",
- "libv8-1.0.0-candidate.so");
- CheckVersion(1, 0, 0, 1, "", false, "1.0.0.1 SIMULATOR", "libv8-1.0.0.1.so");
- CheckVersion(1, 0, 0, 1, "", true, "1.0.0.1 (candidate) SIMULATOR",
- "libv8-1.0.0.1-candidate.so");
- CheckVersion(2, 5, 10, 7, "", false, "2.5.10.7 SIMULATOR",
- "libv8-2.5.10.7.so");
- CheckVersion(2, 5, 10, 7, "", true, "2.5.10.7 (candidate) SIMULATOR",
- "libv8-2.5.10.7-candidate.so");
- CheckVersion(2, 5, 10, 7, ".emb.1", false, "2.5.10.7.emb.1 SIMULATOR",
- "libv8-2.5.10.7.emb.1.so");
- CheckVersion(2, 5, 10, 7, ".emb.1", true,
- "2.5.10.7.emb.1 (candidate) SIMULATOR",
- "libv8-2.5.10.7.emb.1-candidate.so");
+ CheckVersion(0, 0, 0, 0, false, "0.0.0 SIMULATOR", "libv8-0.0.0.so");
+ CheckVersion(0, 0, 0, 0, true,
+ "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so");
+ CheckVersion(1, 0, 0, 0, false, "1.0.0 SIMULATOR", "libv8-1.0.0.so");
+ CheckVersion(1, 0, 0, 0, true,
+ "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so");
+ CheckVersion(1, 0, 0, 1, false, "1.0.0.1 SIMULATOR", "libv8-1.0.0.1.so");
+ CheckVersion(1, 0, 0, 1, true,
+ "1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so");
+ CheckVersion(2, 5, 10, 7, false, "2.5.10.7 SIMULATOR", "libv8-2.5.10.7.so");
+ CheckVersion(2, 5, 10, 7, true,
+ "2.5.10.7 (candidate) SIMULATOR", "libv8-2.5.10.7-candidate.so");
#else
- CheckVersion(0, 0, 0, 0, "", false, "0.0.0", "libv8-0.0.0.so");
- CheckVersion(0, 0, 0, 0, "", true, "0.0.0 (candidate)",
- "libv8-0.0.0-candidate.so");
- CheckVersion(1, 0, 0, 0, "", false, "1.0.0", "libv8-1.0.0.so");
- CheckVersion(1, 0, 0, 0, "", true, "1.0.0 (candidate)",
- "libv8-1.0.0-candidate.so");
- CheckVersion(1, 0, 0, 1, "", false, "1.0.0.1", "libv8-1.0.0.1.so");
- CheckVersion(1, 0, 0, 1, "", true, "1.0.0.1 (candidate)",
- "libv8-1.0.0.1-candidate.so");
- CheckVersion(2, 5, 10, 7, "", false, "2.5.10.7", "libv8-2.5.10.7.so");
- CheckVersion(2, 5, 10, 7, "", true, "2.5.10.7 (candidate)",
- "libv8-2.5.10.7-candidate.so");
- CheckVersion(2, 5, 10, 7, ".emb.1", false, "2.5.10.7.emb.1",
- "libv8-2.5.10.7.emb.1.so");
- CheckVersion(2, 5, 10, 7, ".emb.1", true, "2.5.10.7.emb.1 (candidate)",
- "libv8-2.5.10.7.emb.1-candidate.so");
+ CheckVersion(0, 0, 0, 0, false, "0.0.0", "libv8-0.0.0.so");
+ CheckVersion(0, 0, 0, 0, true,
+ "0.0.0 (candidate)", "libv8-0.0.0-candidate.so");
+ CheckVersion(1, 0, 0, 0, false, "1.0.0", "libv8-1.0.0.so");
+ CheckVersion(1, 0, 0, 0, true,
+ "1.0.0 (candidate)", "libv8-1.0.0-candidate.so");
+ CheckVersion(1, 0, 0, 1, false, "1.0.0.1", "libv8-1.0.0.1.so");
+ CheckVersion(1, 0, 0, 1, true,
+ "1.0.0.1 (candidate)", "libv8-1.0.0.1-candidate.so");
+ CheckVersion(2, 5, 10, 7, false, "2.5.10.7", "libv8-2.5.10.7.so");
+ CheckVersion(2, 5, 10, 7, true,
+ "2.5.10.7 (candidate)", "libv8-2.5.10.7-candidate.so");
#endif
}
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698