Files
clang-p2996/lldb/unittests/Platform/PlatformDarwinTest.cpp
Zachary Turner 6fa7681bb6 Convert many functions to use StringRefs.
Where possible, remove the const char* version.  To keep the
risk and impact here minimal, I've only done the simplest
functions.

In the process, I found a few opportunities for adding some
unit tests, so I added those as well.

Tested on Windows, Linux, and OSX.

llvm-svn: 281799
2016-09-17 02:00:02 +00:00

56 lines
1.5 KiB
C++

//===-- PlatformDarwinTest.cpp ----------------------------------*- C++ -*-===//
//
// 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"
#include "Plugins/Platform/MacOSX/PlatformDarwin.h"
#include "llvm/ADT/StringRef.h"
#include <tuple>
using namespace lldb;
using namespace lldb_private;
TEST(PlatformDarwinTest, TestParseVersionBuildDir) {
uint32_t A, B, C;
llvm::StringRef D;
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("1.2.3 (test1)");
EXPECT_EQ(1, A);
EXPECT_EQ(2, B);
EXPECT_EQ(3, C);
EXPECT_EQ("test1", D);
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("2.3 (test2)");
EXPECT_EQ(2, A);
EXPECT_EQ(3, B);
EXPECT_EQ("test2", D);
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("3 (test3)");
EXPECT_EQ(3, A);
EXPECT_EQ("test3", D);
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("1.2.3 (test");
EXPECT_EQ(1, A);
EXPECT_EQ(2, B);
EXPECT_EQ(3, C);
EXPECT_EQ("test", D);
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("2.3.4 test");
EXPECT_EQ(2, A);
EXPECT_EQ(3, B);
EXPECT_EQ(4, C);
EXPECT_EQ("", D);
std::tie(A, B, C, D) = PlatformDarwin::ParseVersionBuildDir("3.4.5");
EXPECT_EQ(3, A);
EXPECT_EQ(4, B);
EXPECT_EQ(5, C);
}