blob: 2b0817f50c59a336ba9f1e50ad429a3d75512e7c [file] [log] [blame]
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +00001//===- 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
Michael J. Spencer861ef4b2010-11-24 19:20:28 +000010// For now, just test that the header file parses.
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000011#include "llvm/Support/PathV2.h"
Michael J. Spencer861ef4b2010-11-24 19:20:28 +000012
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +000013#include "gtest/gtest.h"
14
15namespace {
16
17TEST(System, Path) {
18 // TODO: Add tests!
19}
20
21} // anonymous namespace