bump Rust version, fix test-cargo-miri and it no longer needs to disable validation

This commit is contained in:
Ralf Jung 2018-12-18 18:40:06 +01:00
parent 93b8c23f7b
commit 3e603c38d7
2 changed files with 3 additions and 4 deletions

View File

@ -1 +1 @@
nightly-2018-12-14
nightly-2018-12-18

View File

@ -34,11 +34,10 @@ def test(name, cmd, stdout_ref, stderr_ref):
sys.exit(1)
def test_cargo_miri_run():
test("cargo miri run", ["cargo", "miri", "run", "-q"], "stout.ref", "stderr.ref")
test("cargo miri run", ["cargo", "miri", "run", "-q"], "stdout.ref", "stderr.ref")
def test_cargo_miri_test():
# FIXME: validation disabled for now because of https://github.com/rust-lang/rust/issues/54957
test("cargo miri test", ["cargo", "miri", "test", "-q", "--", "-Zmiri-disable-validation"], "stout.ref", "stderr.ref")
test("cargo miri test", ["cargo", "miri", "test", "-q"], "test.stdout.ref", "test.stderr.ref")
test_cargo_miri_run()
test_cargo_miri_test()