diff options
| -rw-r--r-- | src/bootstrap/test.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 335a1731002..ef2790e3f38 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1932,8 +1932,7 @@ impl Step for RemoteCopyLibs { builder.info(&format!("REMOTE copy libs to emulator ({})", target)); t!(fs::create_dir_all(builder.out.join("tmp"))); - let server = - builder.ensure(tool::RemoteTestServer { compiler: compiler.with_stage(0), target }); + let server = builder.ensure(tool::RemoteTestServer { compiler, target }); // Spawn the emulator and wait for it to come online let tool = builder.tool_exe(Tool::RemoteTestClient); |
