| Index: test/cctest/test-thread-termination.cc
 | 
| diff --git a/test/cctest/test-thread-termination.cc b/test/cctest/test-thread-termination.cc
 | 
| index b1ffd691c50894556a7a1cc31c4214ca34d39c45..5635b1761c639829b4bce3ff555e6689fb899a87 100644
 | 
| --- a/test/cctest/test-thread-termination.cc
 | 
| +++ b/test/cctest/test-thread-termination.cc
 | 
| @@ -160,7 +160,8 @@ TEST(TerminateOnlyV8ThreadFromThreadItselfNoLoop) {
 | 
|  
 | 
|  class TerminatorThread : public v8::internal::Thread {
 | 
|   public:
 | 
| -  explicit TerminatorThread(i::Isolate* isolate) : Thread(isolate) { }
 | 
| +  explicit TerminatorThread(i::Isolate* isolate)
 | 
| +      : Thread(isolate, "TerminatorThread") { }
 | 
|    void Run() {
 | 
|      semaphore->Wait();
 | 
|      CHECK(!v8::V8::IsExecutionTerminating());
 | 
| @@ -195,7 +196,8 @@ TEST(TerminateOnlyV8ThreadFromOtherThread) {
 | 
|  
 | 
|  class LoopingThread : public v8::internal::Thread {
 | 
|   public:
 | 
| -  explicit LoopingThread(i::Isolate* isolate) : Thread(isolate) { }
 | 
| +  explicit LoopingThread(i::Isolate* isolate)
 | 
| +      : Thread(isolate, "LoopingThread") { }
 | 
|    void Run() {
 | 
|      v8::Locker locker;
 | 
|      v8::HandleScope scope;
 | 
| 
 |