Removed bogus threading test to make TSAN happy.

TSAN hits an internal assertion on a self-join, and the test is not
really that useful, so let's just remove it.

BUG=https://code.google.com/p/thread-sanitizer/issues/detail?id=88
LOG=n

Review URL: https://codereview.chromium.org/824243007

Cr-Commit-Position: refs/heads/master@{#26217}
This commit is contained in:
svenpanne 2015-01-22 02:23:49 -08:00 committed by Commit bot
parent 4d65e0c241
commit 8fb593047a

View File

@ -34,24 +34,6 @@ TEST(OS, GetCurrentProcessId) {
}
namespace {
class SelfJoinThread FINAL : public Thread {
public:
SelfJoinThread() : Thread(Options("SelfJoinThread")) {}
void Run() FINAL { Join(); }
};
} // namespace
TEST(Thread, DISABLE_ON_ANDROID(SelfJoin)) {
SelfJoinThread thread;
thread.Start();
thread.Join();
}
namespace {
class ThreadLocalStorageTest : public Thread, public ::testing::Test {