about summary refs log tree commit diff
path: root/src/libtest
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-27 10:59:59 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-27 13:41:49 -0800
commitad1489195763b5f2603675dc75b0d86d903333db (patch)
tree4dbaa50c73f832b50e7678718ad804b9f607137b /src/libtest
parentbd0d8e47e53f25bbd50418a0f117973c366c1b08 (diff)
downloadrust-ad1489195763b5f2603675dc75b0d86d903333db.tar.gz
rust-ad1489195763b5f2603675dc75b0d86d903333db.zip
std: Stabilize the `env` module
Now that the `std::env` module has had some time to bake this commit marks most
of its APIs as `#[stable]`. Some notable APIs that are **not** stable (and still
use the same `env` feature gate) are:

* `{set,get}_exit_status` - there are still questions about whether this is the
  right interface for setting/getting the exit status of a process.
* `page_size` - this may change location in the future or perhaps name as well.

This also effectively closes #22122 as the variants of `VarError` are
`#[stable]` now. (this is done intentionally)
Diffstat (limited to 'src/libtest')
-rw-r--r--src/libtest/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index 82c1a4b1195..1e3428c3ff0 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -36,7 +36,6 @@
 #![feature(box_syntax)]
 #![feature(collections)]
 #![feature(core)]
-#![feature(env)]
 #![feature(int_uint)]
 #![feature(old_io)]
 #![feature(old_path)]