Skip to content

Commit

Permalink
Merge pull request #642 from taiki-e/update-links
Browse files Browse the repository at this point in the history
Update some links
  • Loading branch information
RalfJung committed Feb 23, 2019
2 parents 76138c5 + 441442e commit e9be422
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Scott Olson <scott@solson.me>"]
description = "An experimental interpreter for Rust MIR."
license = "MIT/Apache-2.0"
name = "miri"
repository = "https://github.com/solson/miri"
repository = "https://github.com/rust-lang/miri"
version = "0.1.0"
build = "build.rs"
default-run = "miri"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Miri [![Build Status](https://travis-ci.org/solson/miri.svg?branch=master)](https://travis-ci.org/solson/miri) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/solson/miri?svg=true)](https://ci.appveyor.com/project/solson63299/miri)
# Miri [![Build Status](https://travis-ci.com/rust-lang/miri.svg?branch=master)](https://travis-ci.com/rust-lang/miri) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/rust-lang/miri?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/miri)


An experimental interpreter for [Rust][rust]'s
Expand Down Expand Up @@ -28,11 +28,11 @@ Miri has already discovered some [real-world bugs](#bugs-found-by-miri).
Install Miri as a cargo subcommand:

```sh
cargo +nightly install --force --git https://github.com/solson/miri miri
cargo +nightly install --force --git https://github.com/rust-lang/miri miri
```

If this does not work, try using the nightly version given in
[this file](https://raw.githubusercontent.com/solson/miri/master/rust-version). CI
[this file](https://raw.githubusercontent.com/rust-lang/miri/master/rust-version). CI
should ensure that this nightly always works.

You have to use a consistent Rust version for building miri and your project, so
Expand Down
2 changes: 1 addition & 1 deletion tests/run-pass/validation_lifetime_resolution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fn foo<T>(mut x: T) where for<'a> &'a mut T: Id
let _y = x.id();
// Inspecting the trace should show that _y has a type involving a local lifetime, when it gets validated.
// Unfortunately, there doesn't seem to be a way to actually have a test fail if it does not have the right
// type. Currently, this is NOT working correctly; see <https://github.com/solson/miri/issues/298>.
// type. Currently, this is NOT working correctly; see <https://github.com/rust-lang/miri/issues/298>.
}

fn main() {
Expand Down

0 comments on commit e9be422

Please sign in to comment.