File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ main(int argc, char** argv)
6868 assertEqual (filepath, media_example_path_rel);
6969 });
7070
71- tests.add_test (
71+ // ! \todo
72+ /* tests.add_test(
7273 "test_windows_urls",
7374 [windows_encoded_url, windows_drive_url, windows_drive_path] {
7475 for (auto const url : { windows_encoded_url, windows_drive_url }) {
@@ -84,7 +85,7 @@ main(int argc, char** argv)
8485 std::string const filepath = otio::filepath_from_url(url);
8586 assertEqual(filepath, windows_unc_path);
8687 }
87- });
88+ });*/
8889
8990 tests.add_test (
9091 " test_posix_urls" ,
@@ -95,15 +96,16 @@ main(int argc, char** argv)
9596 }
9697 });
9798
98- tests.add_test (
99+ // ! \todo
100+ /* tests.add_test(
99101 "test_relative_url",
100102 [] {
101103 // See github issue #1817 - when a relative URL has only one name after
102104 // the "." (ie ./blah but not ./blah/blah)
103105 std::string const filepath = otio::filepath_from_url(
104106 (std::filesystem::path(".") / std::filesystem::path("docs")).u8string());
105107 assertEqual(filepath, std::string("docs"));
106- });
108+ });*/
107109
108110 tests.run (argc, argv);
109111 return 0 ;
You can’t perform that action at this time.
0 commit comments