2010-11-24 19:20:05 +00:00
|
|
|
//===- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-24 19:20:28 +00:00
|
|
|
// For now, just test that the header file parses.
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/PathV2.h"
|
2010-11-24 19:20:28 +00:00
|
|
|
|
2010-11-24 19:20:05 +00:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
TEST(System, Path) {
|
|
|
|
// TODO: Add tests!
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|