Auto merge of #92201 - ChrisDenton:fix-tests, r=Mark-Simulacrum

Fix failing tests

Fixes tests that have been failing in CI.

I hope it's ok but I've temporarily commented out some of the Windows resolver tests. I actually have a bigger fix for that test code as part of another PR. I could separate it out and patch as necessary but I'd prefer not to rush into that if possible.

r? `@Mark-Simulacrum`
This commit is contained in:
bors 2021-12-22 19:21:25 +00:00
commit 34926f0a16
2 changed files with 11 additions and 3 deletions

View File

@ -4,6 +4,10 @@ use super::{Command, Output, Stdio};
use crate::io::ErrorKind; use crate::io::ErrorKind;
use crate::str; use crate::str;
fn known_command() -> Command {
if cfg!(windows) { Command::new("help") } else { Command::new("echo") }
}
#[cfg(target_os = "android")] #[cfg(target_os = "android")]
fn shell_cmd() -> Command { fn shell_cmd() -> Command {
Command::new("/system/bin/sh") Command::new("/system/bin/sh")
@ -305,7 +309,7 @@ fn test_interior_nul_in_progname_is_error() {
#[test] #[test]
fn test_interior_nul_in_arg_is_error() { fn test_interior_nul_in_arg_is_error() {
match Command::new("rustc").arg("has-some-\0\0s-inside").spawn() { match known_command().arg("has-some-\0\0s-inside").spawn() {
Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput), Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput),
Ok(_) => panic!(), Ok(_) => panic!(),
} }
@ -313,7 +317,7 @@ fn test_interior_nul_in_arg_is_error() {
#[test] #[test]
fn test_interior_nul_in_args_is_error() { fn test_interior_nul_in_args_is_error() {
match Command::new("rustc").args(&["has-some-\0\0s-inside"]).spawn() { match known_command().args(&["has-some-\0\0s-inside"]).spawn() {
Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput), Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput),
Ok(_) => panic!(), Ok(_) => panic!(),
} }
@ -321,7 +325,7 @@ fn test_interior_nul_in_args_is_error() {
#[test] #[test]
fn test_interior_nul_in_current_dir_is_error() { fn test_interior_nul_in_current_dir_is_error() {
match Command::new("rustc").current_dir("has-some-\0\0s-inside").spawn() { match known_command().current_dir("has-some-\0\0s-inside").spawn() {
Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput), Err(e) => assert_eq!(e.kind(), ErrorKind::InvalidInput),
Ok(_) => panic!(), Ok(_) => panic!(),
} }

View File

@ -160,6 +160,8 @@ fn windows_exe_resolver() {
io::ErrorKind::InvalidInput io::ErrorKind::InvalidInput
); );
/* FIXME: fix and re-enable these tests before making changes to the resolver.
/* /*
Some of the following tests may need to be changed if you are deliberately Some of the following tests may need to be changed if you are deliberately
changing the behaviour of `resolve_exe`. changing the behaviour of `resolve_exe`.
@ -179,4 +181,6 @@ fn windows_exe_resolver() {
// The application's directory is also searched. // The application's directory is also searched.
let current_exe = env::current_exe().unwrap(); let current_exe = env::current_exe().unwrap();
assert!(resolve_exe(current_exe.file_name().unwrap().as_ref(), None).is_ok()); assert!(resolve_exe(current_exe.file_name().unwrap().as_ref(), None).is_ok());
*/
} }