| Index: runtime/vm/unit_test.cc
|
| diff --git a/runtime/vm/unit_test.cc b/runtime/vm/unit_test.cc
|
| index 179e53762c10c5c5551a77b7c4c799bb34c16f91..5490c6118aaec160af52ac4b4454b26bfe723c1f 100644
|
| --- a/runtime/vm/unit_test.cc
|
| +++ b/runtime/vm/unit_test.cc
|
| @@ -191,7 +191,8 @@ char* TestCase::CompileTestScriptWithDFE(const char* url,
|
| bool incrementally) {
|
| Zone* zone = Thread::Current()->zone();
|
| Dart_KernelCompilationResult compilation_result = Dart_CompileSourcesToKernel(
|
| - url, sourcefiles_count, sourcefiles, incrementally);
|
| + url, NULL /* platform binary can be found at the default location */,
|
| + sourcefiles_count, sourcefiles, incrementally);
|
|
|
| if (compilation_result.status != Dart_KernelCompilationStatus_Ok) {
|
| return OS::SCreate(zone, "Compilation failed %s", compilation_result.error);
|
|
|