@@ -65,6 +65,7 @@ fn test_tool_context_chained_builders() {
6565}
6666
6767#[ test]
68+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
6869fn test_tool_context_resolve_path_absolute ( ) {
6970 let ctx = ToolContext :: new ( PathBuf :: from ( "/project" ) ) ;
7071
@@ -73,6 +74,7 @@ fn test_tool_context_resolve_path_absolute() {
7374}
7475
7576#[ test]
77+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
7678fn test_tool_context_resolve_path_relative ( ) {
7779 let ctx = ToolContext :: new ( PathBuf :: from ( "/project" ) ) ;
7880
@@ -81,6 +83,7 @@ fn test_tool_context_resolve_path_relative() {
8183}
8284
8385#[ test]
86+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
8487fn test_tool_context_resolve_path_dot ( ) {
8588 let ctx = ToolContext :: new ( PathBuf :: from ( "/project" ) ) ;
8689
@@ -89,6 +92,7 @@ fn test_tool_context_resolve_path_dot() {
8992}
9093
9194#[ test]
95+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
9296fn test_tool_context_resolve_path_parent ( ) {
9397 let ctx = ToolContext :: new ( PathBuf :: from ( "/project/src" ) ) ;
9498
@@ -143,6 +147,7 @@ fn test_tool_context_clone() {
143147}
144148
145149#[ test]
150+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
146151fn test_tool_context_debug ( ) {
147152 let ctx = ToolContext :: new ( PathBuf :: from ( "/debug" ) ) ;
148153 let debug = format ! ( "{:?}" , ctx) ;
@@ -152,6 +157,7 @@ fn test_tool_context_debug() {
152157}
153158
154159#[ test]
160+ #[ cfg_attr( windows, ignore = "Unix paths not applicable on Windows" ) ]
155161fn test_tool_context_resolve_empty_path ( ) {
156162 let ctx = ToolContext :: new ( PathBuf :: from ( "/project" ) ) ;
157163
0 commit comments