diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-11-24 19:20:05 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-11-24 19:20:05 +0000 |
commit | f2ca4cb86df1d38c439f35774210b16f36841531 (patch) | |
tree | 1e34e5b1f175a61d12fc3664b0aa889717c8dc00 /unittests/System/Path.cpp | |
parent | bf8209daf875fa533a379290a91d01be5152597d (diff) |
unittests: Add SystemTests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120101 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/System/Path.cpp')
-rw-r--r-- | unittests/System/Path.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/unittests/System/Path.cpp b/unittests/System/Path.cpp new file mode 100644 index 0000000000..85fbb6124b --- /dev/null +++ b/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 |