Merge System into Support.
[oota-llvm.git] / unittests / System / Path.cpp
1 //===- llvm/unittest/System/Path.cpp - Path tests -------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // For now, just test that the header file parses.
11 #include "llvm/Support/PathV2.h"
12
13 #include "gtest/gtest.h"
14
15 namespace {
16
17 TEST(System, Path) {
18   // TODO: Add tests!
19 }
20
21 } // anonymous namespace