about summary refs log tree commit diff
path: root/src/test/ui/process/process-spawn-with-unicode-params.rs
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/ui/process/process-spawn-with-unicode-params.rs
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip
Move /src/test to /tests
Diffstat (limited to 'src/test/ui/process/process-spawn-with-unicode-params.rs')
-rw-r--r--src/test/ui/process/process-spawn-with-unicode-params.rs77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/test/ui/process/process-spawn-with-unicode-params.rs b/src/test/ui/process/process-spawn-with-unicode-params.rs
deleted file mode 100644
index 16dba6292db..00000000000
--- a/src/test/ui/process/process-spawn-with-unicode-params.rs
+++ /dev/null
@@ -1,77 +0,0 @@
-// run-pass
-// no-prefer-dynamic
-
-// The test copies itself into a subdirectory with a non-ASCII name and then
-// runs it as a child process within the subdirectory.  The parent process
-// also adds an environment variable and an argument, both containing
-// non-ASCII characters.  The child process ensures all the strings are
-// intact.
-
-// ignore-emscripten no processes
-// ignore-sgx no processes
-// ignore-fuchsia Filesystem manipulation privileged
-
-use std::io::prelude::*;
-use std::io;
-use std::fs;
-use std::process::Command;
-use std::env;
-use std::path::Path;
-
-fn main() {
-    let my_args = env::args().collect::<Vec<_>>();
-    let my_cwd  = env::current_dir().unwrap();
-    let my_env  = env::vars().collect::<Vec<_>>();
-    let my_path = env::current_exe().unwrap();
-    let my_dir  = my_path.parent().unwrap();
-    let my_ext  = my_path.extension().and_then(|s| s.to_str()).unwrap_or("");
-
-    // some non-ASCII characters
-    let blah       = "\u{3c0}\u{42f}\u{97f3}\u{e6}\u{221e}";
-
-    let child_name = "child";
-    let child_dir  = format!("process-spawn-with-unicode-params-{}", blah);
-
-    // parameters sent to child / expected to be received from parent
-    let arg = blah;
-    let cwd = my_dir.join(&child_dir);
-    let env = ("RUST_TEST_PROC_SPAWN_UNICODE".to_string(), blah.to_string());
-
-    // am I the parent or the child?
-    if my_args.len() == 1 {             // parent
-
-        let child_filestem = Path::new(child_name);
-        let child_filename = child_filestem.with_extension(my_ext);
-        let child_path     = cwd.join(&child_filename);
-
-        // make a separate directory for the child
-        let _ = fs::create_dir(&cwd);
-        fs::copy(&my_path, &child_path).unwrap();
-
-        // run child
-        let p = Command::new(&child_path)
-                        .arg(arg)
-                        .current_dir(&cwd)
-                        .env(&env.0, &env.1)
-                        .spawn().unwrap().wait_with_output().unwrap();
-
-        // display the output
-        io::stdout().write_all(&p.stdout).unwrap();
-        io::stderr().write_all(&p.stderr).unwrap();
-
-        // make sure the child succeeded
-        assert!(p.status.success());
-
-    } else {                            // child
-
-        // check working directory (don't try to compare with `cwd` here!)
-        assert!(my_cwd.ends_with(&child_dir));
-
-        // check arguments
-        assert_eq!(&*my_args[1], arg);
-
-        // check environment variable
-        assert!(my_env.contains(&env));
-
-    };
-}