Lines Matching refs:ResolvePath

374 …Assert.AreEqual(@"C:\tmp\platform.repl", ResolvePath(@"C:\tmp\platform.repl", @"C:\tmp\includer.re…  in ShouldHandleAbsolutePath()
375 …Assert.AreEqual(@"C:\tmp\platform.repl", ResolvePath(@"C:/tmp/platform.repl", @"C:\tmp\includer.re… in ShouldHandleAbsolutePath()
381 …Assert.AreEqual(@"C:\tmp\platform.repl", ResolvePath(@".\platform.repl", @"C:\tmp\includer.repl")); in ShouldHandleRelativePathInSameDirectory()
382 …Assert.AreEqual(@"C:\tmp\platform.repl", ResolvePath(@"./platform.repl", @"C:\tmp\includer.repl")); in ShouldHandleRelativePathInSameDirectory()
388 …Assert.AreEqual(@"C:\abc\platform.repl", ResolvePath(@"..\abc\platform.repl", @"C:\tmp\includer.re… in ShouldHandleRelativePathInParentDirectory()
389 …Assert.AreEqual(@"C:\abc\platform.repl", ResolvePath(@"../abc/platform.repl", @"C:\tmp\includer.re… in ShouldHandleRelativePathInParentDirectory()
395 … Assert.AreEqual("/tmp/platform.repl", ResolvePath("/tmp/platform.repl", "/tmp/includer.repl")); in ShouldHandleAbsolutePath()
401 … Assert.AreEqual("/tmp/platform.repl", ResolvePath("./platform.repl", "/tmp/includer.repl")); in ShouldHandleRelativePathInSameDirectory()
407 … Assert.AreEqual("/abc/platform.repl", ResolvePath("../abc/platform.repl", "/tmp/includer.repl")); in ShouldHandleRelativePathInParentDirectory()
414 … Assert.AreEqual(@"/tmp/plat\form.repl", ResolvePath(@"./plat\form.repl", "/tmp/includer.repl")); in BackslashShouldNotBePathSeparatorOnUnix()
436 private string ResolvePath(string path, string includingPath) in ResolvePath() method in Antmicro.Renode.UnitTests.PlatformDescription.UsingTests