Fix PathMappingListTest on windows
authorPavel Labath <labath@google.com>
Thu, 14 Jun 2018 10:31:06 +0000 (10:31 +0000)
committerPavel Labath <labath@google.com>
Thu, 14 Jun 2018 10:31:06 +0000 (10:31 +0000)
commit2e6384038cd89ad844deaa2e3e1854c8573ce262
tree2ac79144e687ef2aa7acdb69c38dfd27a937c0f1
parentb234ff136e1aca908ca36f97a8a9e2546f78f548
Fix PathMappingListTest on windows

r334615 changed the the value of FileSpec.IsRelative("/") for windows
path syntax. We previously considered it absolute but now it is
considered relative (I guess because it's interpretation depends on the
current drive).

This cause a failure in PathMappingList test, which assumed that "/"
will not get remapped as it is an absolute path. As this is no longer
true on windows, I replace "/" with a really absolute path.

llvm-svn: 334702
lldb/unittests/Target/PathMappingListTest.cpp