Skip to content

Commit 5e22741

Browse files
committed
---
yaml --- r: 219501 b: refs/heads/snap-stage3 c: 5c5753e h: refs/heads/master i: 219499: 7dbdefb v: v3
1 parent c9e0504 commit 5e22741

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,6 +1,6 @@
11
---
22
refs/heads/master: c044791d80ea0dc5c4b57b6030a67b69f8510239
3-
refs/heads/snap-stage3: 6f7b4ce65a286aa2a99d6028ce4b08889907a0c5
3+
refs/heads/snap-stage3: 5c5753e876a437bb779e031e1a2c5dff59323028
44
refs/heads/try: b53c0f93eedcdedd4fd89bccc5a3a09d1c5cd23e
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/snap-stage3/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/snap-stage3/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)