| Index: base/test/expectations/expectation_unittest.cc
|
| diff --git a/base/test/expectations/expectation_unittest.cc b/base/test/expectations/expectation_unittest.cc
|
| index c355d1a6d736632fb869c719e6b60e7dd623e4fb..8a7af71a97eb0274eb77734c818bb2b412c539c2 100644
|
| --- a/base/test/expectations/expectation_unittest.cc
|
| +++ b/base/test/expectations/expectation_unittest.cc
|
| @@ -82,8 +82,8 @@ TEST(TestExpectationsFunctionsTest, IsValidPlatform) {
|
| "Mac-10.7",
|
| "Mac-10.8",
|
| "Linux",
|
| - "Linux-x32",
|
| - "Linux-x64",
|
| + "Linux-32",
|
| + "Linux-64",
|
| "ChromeOS",
|
| "iOS",
|
| "Android",
|
| @@ -106,3 +106,15 @@ TEST(TestExpectationsFunctionsTest, IsValidPlatform) {
|
| kInvalidPlatforms[i], &platform)) << kInvalidPlatforms[i];
|
| }
|
| }
|
| +
|
| +TEST(TestExpectationsFunctionsTest, CurrentPlatform) {
|
| + test_expectations::Platform current =
|
| + test_expectations::GetCurrentPlatform();
|
| + EXPECT_FALSE(current.name.empty());
|
| +}
|
| +
|
| +TEST(TestExpectationsFunctionsTest, CurrentConfiguration) {
|
| + test_expectations::Configuration current =
|
| + test_expectations::GetCurrentConfiguration();
|
| + EXPECT_NE(test_expectations::CONFIGURATION_UNSPECIFIED, current);
|
| +}
|
|
|