We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2872c8e commit 13b896aCopy full SHA for 13b896a
src/libexpr-tests/primops.cc
@@ -661,8 +661,14 @@ INSTANTIATE_TEST_SUITE_P(
661
CASE(R"(null)", ""),
662
CASE(R"({ v = "bar"; __toString = self: self.v; })", "bar"),
663
CASE(R"({ v = "bar"; __toString = self: self.v; outPath = "foo"; })", "bar"),
664
- CASE(R"({ outPath = "foo"; })", "foo"),
665
- CASE(R"(./test)", "/test")));
+ CASE(R"({ outPath = "foo"; })", "foo")
+// this is broken on cygwin because canonPath("//./test", false) returns //./test
666
+// FIXME: don't use canonPath
667
+#ifndef __CYGWIN__
668
+ ,
669
+ CASE(R"(./test)", "/test")
670
+#endif
671
+ ));
672
#undef CASE
673
674
TEST_F(PrimOpTest, substring)
0 commit comments