pytorch/test/cpp/api/memory.cpp
Peter Goldsborough 825181ea9d Rewrite C++ API tests in gtest (#11953)
Summary:
This PR is a large codemod to rewrite all C++ API tests with GoogleTest (gtest) instead of Catch.

You can largely trust me to have correctly code-modded the tests, so it's not required to review every of the 2000+ changed lines. However, additional things I changed were:

1. Moved the cmake parts for these tests into their own `CMakeLists.txt` under `test/cpp/api` and calling `add_subdirectory` from `torch/CMakeLists.txt`
2. Fixing DataParallel tests which weren't being compiled because `USE_CUDA` wasn't correctly being set at all.
3. Updated README

ezyang ebetica
Pull Request resolved: https://github.com/pytorch/pytorch/pull/11953

Differential Revision: D9998883

Pulled By: goldsborough

fbshipit-source-id: affe3f320b0ca63e7e0019926a59076bb943db80
2018-09-21 21:28:16 -07:00

37 lines
937 B
C++

#include <gtest/gtest.h>
#include <torch/csrc/utils/memory.h>
#include <ATen/optional.h>
struct TestValue {
explicit TestValue(const int& x) : lvalue_(x) {}
explicit TestValue(int&& x) : rvalue_(x) {}
at::optional<int> lvalue_;
at::optional<int> rvalue_;
};
TEST(MakeUniqueTest, ForwardRvaluesCorrectly) {
auto ptr = torch::make_unique<TestValue>(123);
ASSERT_FALSE(ptr->lvalue_.has_value());
ASSERT_TRUE(ptr->rvalue_.has_value());
ASSERT_EQ(*ptr->rvalue_, 123);
}
TEST(MakeUniqueTest, ForwardLvaluesCorrectly) {
int x = 5;
auto ptr = torch::make_unique<TestValue>(x);
ASSERT_TRUE(ptr->lvalue_.has_value());
ASSERT_EQ(*ptr->lvalue_, 5);
ASSERT_FALSE(ptr->rvalue_.has_value());
}
TEST(MakeUniqueTest, CanConstructUniquePtrOfArray) {
auto ptr = torch::make_unique<int[]>(3);
// Value initialization is required by the standard.
ASSERT_EQ(ptr[0], 0);
ASSERT_EQ(ptr[1], 0);
ASSERT_EQ(ptr[2], 0);
}