Skip to content

Commit c425fac

Browse files
committed
---
yaml --- r: 227743 b: refs/heads/try c: 5c5753e h: refs/heads/master i: 227741: 53008db 227739: 3e6233c 227735: 1e8e2b4 227727: 395e3fc 227711: 8160d56 v: v3
1 parent 1e51c3c commit c425fac

File tree

7 files changed

+345
-362
lines changed

7 files changed

+345
-362
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 6f7b4ce65a286aa2a99d6028ce4b08889907a0c5
4+
refs/heads/try: 5c5753e876a437bb779e031e1a2c5dff59323028
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/libstd/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,6 @@
148148
#![feature(vec_push_all)]
149149
#![feature(wrapping)]
150150
#![feature(zero_one)]
151-
#![cfg_attr(all(unix, not(target_os = "macos"), not(target_os = "ios")),
152-
feature(num_bits_bytes))]
153151
#![cfg_attr(windows, feature(str_utf16))]
154152
#![cfg_attr(test, feature(float_from_str_radix, range_inclusive, float_extras))]
155153
#![cfg_attr(test, feature(test, rustc_private, float_consts))]

branches/try/src/libstd/process.rs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -769,24 +769,6 @@ mod tests {
769769
}
770770
}
771771

772-
#[cfg(all(unix, not(target_os="android")))]
773-
pub fn pwd_cmd() -> Command {
774-
Command::new("pwd")
775-
}
776-
#[cfg(target_os="android")]
777-
pub fn pwd_cmd() -> Command {
778-
let mut cmd = Command::new("/system/bin/sh");
779-
cmd.arg("-c").arg("pwd");
780-
cmd
781-
}
782-
783-
#[cfg(windows)]
784-
pub fn pwd_cmd() -> Command {
785-
let mut cmd = Command::new("cmd");
786-
cmd.arg("/c").arg("cd");
787-
cmd
788-
}
789-
790772
#[cfg(all(unix, not(target_os="android")))]
791773
pub fn env_cmd() -> Command {
792774
Command::new("env")

0 commit comments

Comments
 (0)