Skip to content

Commit

Permalink
Disable ThirdPartyTest.Base on Win
Browse files Browse the repository at this point in the history
[email protected]
NOTRY=true

Bug: 874556
Change-Id: I3118312936415efcdbf4c5054f96d8a7a04b236c
Reviewed-on: https://chromium-review.googlesource.com/1176341
Reviewed-by: Xida Chen <[email protected]>
Commit-Queue: Xida Chen <[email protected]>
Cr-Commit-Position: refs/heads/master@{#583371}
  • Loading branch information
xidachen authored and Commit Bot committed Aug 15, 2018
1 parent 1f43ac6 commit 44a1bdc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion chrome_elf/third_party_dlls/main_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,13 @@ class ThirdPartyTest : public testing::Test {
// configurations.
//------------------------------------------------------------------------------

#if defined(OS_WIN)
#define MAYBE_Base DISABLED_Base
#else
#define MAYBE_Base Base
#endif
// Note: The test module used in this unittest has no export table.
TEST_F(ThirdPartyTest, Base) {
TEST_F(ThirdPartyTest, MAYBE_Base) {
// 1. Spawn the test process with NO blacklist. Expect successful
// initialization.
base::CommandLine cmd_line1 = base::CommandLine::FromString(kTestExeFilename);
Expand Down

0 comments on commit 44a1bdc

Please sign in to comment.