unittests: Add SystemTests.
llvm-svn: 120101
diff --git a/llvm/unittests/System/Path.cpp b/llvm/unittests/System/Path.cpp
new file mode 100644
index 0000000..85fbb61
--- /dev/null
+++ b/llvm/unittests/System/Path.cpp
@@ -0,0 +1,18 @@
+//===- llvm/unittest/System/Path.cpp - Path tests -------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "gtest/gtest.h"
+
+namespace {
+
+TEST(System, Path) {
+ // TODO: Add tests!
+}
+
+} // anonymous namespace