create more fake files for cdylibs and staticlibs

This commit is contained in:
Ralf Jung 2021-02-27 12:32:06 +01:00
parent f85bb0fb09
commit 3e987e127c
2 changed files with 16 additions and 10 deletions

View File

@ -692,12 +692,17 @@ fn phase_cargo_rustc(mut args: env::Args) {
exec(cmd);
// Create a stub .rlib file if "link" was requested by cargo.
// This is necessary to prevent cargo from doing rebuilds all the time.
if emit_link_hack {
// Some platforms prepend "lib", some do not... let's just create both files.
let filename = out_filename("lib", ".rlib");
File::create(filename).expect("failed to create rlib file");
let filename = out_filename("", ".rlib");
File::create(filename).expect("failed to create rlib file");
File::create(out_filename("lib", ".rlib")).expect("failed to create fake .rlib file");
File::create(out_filename("", ".rlib")).expect("failed to create fake .rlib file");
// Just in case this is a cdylib or staticlib, also create those fake files.
File::create(out_filename("lib", ".so")).expect("failed to create fake .so file");
File::create(out_filename("lib", ".a")).expect("failed to create fake .a file");
File::create(out_filename("lib", ".dylib")).expect("failed to create fake .dylib file");
File::create(out_filename("", ".dll")).expect("failed to create fake .dll file");
File::create(out_filename("", ".lib")).expect("failed to create fake .lib file");
}
}

View File

@ -50,7 +50,7 @@ def test(name, cmd, stdout_ref, stderr_ref, stdin=b'', env={}):
print("--- END stderr ---")
fail("exit code was {}".format(p.returncode))
def test_rebuild(name, cmd, rebuild_count_expected):
def test_no_rebuild(name, cmd):
print("Testing {}...".format(name))
p = subprocess.Popen(
cmd,
@ -62,12 +62,12 @@ def test_rebuild(name, cmd, rebuild_count_expected):
stderr = stderr.decode("UTF-8")
if p.returncode != 0:
fail("rebuild failed");
rebuild_count = stderr.count(" Compiling ");
if rebuild_count != rebuild_count_expected:
# Also check for 'Running' as a sanity check.
if stderr.count(" Compiling ") > 0 or stderr.count(" Running ") == 0:
print("--- BEGIN stderr ---")
print(stderr, end="")
print("--- END stderr ---")
fail("Expected {} rebuild(s), but got {}".format(rebuild_count_expected, rebuild_count));
fail("Something was being rebuilt when it should not be (or we got no output)");
def test_cargo_miri_run():
test("`cargo miri run` (no isolation)",
@ -89,9 +89,10 @@ def test_cargo_miri_run():
env={'MIRIFLAGS': "-Zmiri-disable-isolation"},
)
# Special test: run it again *without* `-q` to make sure nothing is being rebuilt (Miri issue #1722)
test_rebuild("`cargo miri run` (clean rebuild)",
# FIXME: move this test up to right after the first `test`
# (currently that fails, only the 3rd and later runs are really clean... see Miri issue #1722)
test_no_rebuild("`cargo miri run` (no rebuild)",
cargo_miri("run", quiet=False) + ["--", ""],
rebuild_count_expected=1,
)
def test_cargo_miri_test():