mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-04 18:58:44 +00:00
861ef4b1cf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120103 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
536 B
C++
22 lines
536 B
C++
//===- 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// For now, just test that the header file parses.
|
|
#include "llvm/System/PathV2.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace {
|
|
|
|
TEST(System, Path) {
|
|
// TODO: Add tests!
|
|
}
|
|
|
|
} // anonymous namespace
|