diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-12-13 21:14:08 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-12-24 19:59:53 -0800 |
| commit | 282f3d99a5ad85acbc58c03b5dfcdabf649c0c85 (patch) | |
| tree | ec391a6b37f99ba63cadb50757040e92f432c1b4 /src/libnative | |
| parent | 39dbcd7b012da733f378b0fadf1e7d2519dc0d0c (diff) | |
| download | rust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.tar.gz rust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.zip | |
Test fixes and rebase problems
Note that this removes a number of run-pass tests which are exercising behavior of the old runtime. This functionality no longer exists and is thoroughly tested inside of libgreen and libnative. There isn't really the notion of "starting the runtime" any more. The major notion now is "bootstrapping the initial task".
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index b97d9127277..44b66a7804d 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -14,6 +14,7 @@ //! runtime. In addition, all I/O provided by this crate is the thread blocking //! version of I/O. +#[pkgid = "native#0.9-pre"]; #[link(name = "native", package_id = "native", vers = "0.9-pre", @@ -24,6 +25,7 @@ #[crate_type = "rlib"]; #[crate_type = "dylib"]; +// Allow check-stage0-native for now #[cfg(stage0, test)] extern mod green; // NB this crate explicitly does *not* allow glob imports, please seriously |
