Ignore Windows due to its differing path syntax

This commit is contained in:
Michael Howell 2024-10-29 23:21:54 -07:00
parent 1819b4fa23
commit ac7de1a0d9
2 changed files with 5 additions and 4 deletions

View file

@ -1,12 +1,12 @@
running 1 test running 1 test
test $DIR/relative-path-include-bytes-132203.rs - (line 17) ... FAILED test $DIR/relative-path-include-bytes-132203.rs - (line 18) ... FAILED
failures: failures:
---- $DIR/relative-path-include-bytes-132203.rs - (line 17) stdout ---- ---- $DIR/relative-path-include-bytes-132203.rs - (line 18) stdout ----
error: couldn't read `$DIR/relative-dir-empty-file`: No such file or directory (os error 2) error: couldn't read `$DIR/relative-dir-empty-file`: No such file or directory (os error 2)
--> $DIR/relative-path-include-bytes-132203.rs:18:9 --> $DIR/relative-path-include-bytes-132203.rs:19:9
| |
LL | let x = include_bytes!("relative-dir-empty-file"); LL | let x = include_bytes!("relative-dir-empty-file");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@ -18,7 +18,7 @@ error: aborting due to 1 previous error
Couldn't compile the test. Couldn't compile the test.
failures: failures:
$DIR/relative-path-include-bytes-132203.rs - (line 17) $DIR/relative-path-include-bytes-132203.rs - (line 18)
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME

View file

@ -1,3 +1,4 @@
//@ ignore-windows
//@ revisions: edition2015 edition2024 //@ revisions: edition2015 edition2024
//@[edition2015]edition:2015 //@[edition2015]edition:2015
//@[edition2015]check-fail //@[edition2015]check-fail