diff options
author | jikstra <jikstra@disroot.org> | 2021-08-28 12:07:34 +0000 |
---|---|---|
committer | jikstra <jikstra@disroot.org> | 2021-08-28 12:07:34 +0000 |
commit | 875b62300138f005e26d6e4584a939c1e0717d8c (patch) | |
tree | 48afcab78d4db3a13e8b17359e7f83df095e3a79 /tests/fixtures/mod.rs | |
parent | Add file with backslash to the test FILES fixture (diff) | |
download | miniserve-875b62300138f005e26d6e4584a939c1e0717d8c.tar.gz miniserve-875b62300138f005e26d6e4584a939c1e0717d8c.zip |
Execute backslash test only on non windows systems
Diffstat (limited to 'tests/fixtures/mod.rs')
-rw-r--r-- | tests/fixtures/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/fixtures/mod.rs b/tests/fixtures/mod.rs index 02e8c97..ec17f3e 100644 --- a/tests/fixtures/mod.rs +++ b/tests/fixtures/mod.rs @@ -24,6 +24,7 @@ pub static FILES: &[&str] = &[ "#[]{}()@!$&'`+,;= %20.test", #[cfg(unix)] ":?#[]{}<>()@!$&'`|*+,;= %20.test", + #[cfg(not(windows))] "foo\\bar.test", ]; |