From e5816630d43ad37750a5b2a4986bcae08a366499 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sun, 5 Dec 2021 08:36:31 +0100 Subject: [PATCH] Fixes Windows tests --- testsuite/tests/parser.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testsuite/tests/parser.rs b/testsuite/tests/parser.rs index 2857aa3d..f5f500d2 100644 --- a/testsuite/tests/parser.rs +++ b/testsuite/tests/parser.rs @@ -30,11 +30,13 @@ fn nquads_w3c_testsuite() -> Result<()> { run_testsuite("http://w3c.github.io/rdf-tests/nquads/manifest.ttl") } +#[cfg(not(target_os = "windows"))] // Tests don't like git auto "\r\n" on Windows #[test] fn turtle_w3c_testsuite() -> Result<()> { run_testsuite("http://w3c.github.io/rdf-tests/turtle/manifest.ttl") } +#[cfg(not(target_os = "windows"))] // Tests don't like git auto "\r\n" on Windows #[test] fn trig_w3c_testsuite() -> Result<()> { run_testsuite("http://w3c.github.io/rdf-tests/trig/manifest.ttl")