| Index: runtime/vm/thread_test.cc
|
| ===================================================================
|
| --- runtime/vm/thread_test.cc (revision 3366)
|
| +++ runtime/vm/thread_test.cc (working copy)
|
| @@ -11,7 +11,7 @@
|
|
|
| UNIT_TEST_CASE(Mutex) {
|
| // This unit test case needs a running isolate.
|
| - Isolate* isolate = Isolate::Init();
|
| + Isolate* isolate = Isolate::Init(NULL);
|
|
|
| Mutex* mutex = new Mutex();
|
| mutex->Lock();
|
| @@ -33,7 +33,7 @@
|
|
|
| UNIT_TEST_CASE(Monitor) {
|
| // This unit test case needs a running isolate.
|
| - Isolate* isolate = Isolate::Init();
|
| + Isolate* isolate = Isolate::Init(NULL);
|
|
|
| Monitor* monitor = new Monitor();
|
| monitor->Enter();
|
|
|