about summary refs log tree commit diff
path: root/src/test/ui
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2020-05-22 16:58:24 +0200
committerGitHub <noreply@github.com>2020-05-22 16:58:24 +0200
commit53d0046983228f8f0df77ff6a05ba9bb227e8e33 (patch)
tree44ca2d9f05b6e303bf7051a6e0e958ba9beec150 /src/test/ui
parent9c34481c495df19d10a91e7991c254c7b4d1cae3 (diff)
parentff9646c0adc149dfff194665785f4daa3aa6d9c3 (diff)
downloadrust-53d0046983228f8f0df77ff6a05ba9bb227e8e33.tar.gz
rust-53d0046983228f8f0df77ff6a05ba9bb227e8e33.zip
Rollup merge of #72123 - jsgf:stabilize-arg0, r=sfackler
Stabilize process_set_argv0 feature for Unix

This stabilizes process_set_argv0 targeting 1.45.0. It has been
useful in practice and seems useful as-is.

The equivalent feature could be implemented for Windows, but as far as I
know nobody has. That can be done separately.

Tracking issue: #66510
Diffstat (limited to 'src/test/ui')
-rw-r--r--src/test/ui/command/command-argv0-debug.rs2
-rw-r--r--src/test/ui/command/command-argv0.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/test/ui/command/command-argv0-debug.rs b/src/test/ui/command/command-argv0-debug.rs
index 133d2ada2b2..cb948a91c10 100644
--- a/src/test/ui/command/command-argv0-debug.rs
+++ b/src/test/ui/command/command-argv0-debug.rs
@@ -4,8 +4,6 @@
 // ignore-cloudabi no processes
 // ignore-emscripten no processes
 // ignore-sgx no processes
-#![feature(process_set_argv0)]
-
 use std::os::unix::process::CommandExt;
 use std::process::Command;
 
diff --git a/src/test/ui/command/command-argv0.rs b/src/test/ui/command/command-argv0.rs
index 56a9fb4d391..e3394e0567c 100644
--- a/src/test/ui/command/command-argv0.rs
+++ b/src/test/ui/command/command-argv0.rs
@@ -4,8 +4,6 @@
 // ignore-cloudabi no processes
 // ignore-emscripten no processes
 // ignore-sgx no processes
-#![feature(process_set_argv0)]
-
 use std::env;
 use std::os::unix::process::CommandExt;
 use std::process::Command;