Support/PathV2: Add filename implementation.
llvm-svn: 120546
diff --git a/llvm/unittests/Support/Path.cpp b/llvm/unittests/Support/Path.cpp
index 8570047..0dae960 100644
--- a/llvm/unittests/Support/Path.cpp
+++ b/llvm/unittests/Support/Path.cpp
@@ -94,6 +94,9 @@
if (error_code ec = sys::path::parent_path(*i, res))
ASSERT_FALSE(ec.message().c_str());
outs() << " parent_path: " << res << '\n';
+ if (error_code ec = sys::path::filename(*i, res))
+ ASSERT_FALSE(ec.message().c_str());
+ outs() << " filename: " << res << '\n';
temp_store = *i;
if (error_code ec = sys::path::make_absolute(temp_store))