From 228c05ff964352538798bee101d6bf32d7940897 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Mon, 1 Jan 2018 16:54:27 -0800 Subject: [PATCH] Add ColdClassTest.cpp to oss builds Summary: [Folly] Add `ColdClassTest.cpp` to oss builds. Reviewed By: spalamarchuk Differential Revision: D6648831 fbshipit-source-id: f8d8a727d63e4e8b83391db454de990027f1bad4 --- CMakeLists.txt | 1 + folly/test/Makefile.am | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae6ab6d0..dd5dff53 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -519,6 +519,7 @@ if (BUILD_TESTS) DIRECTORY lang/test/ TEST bits_test SOURCES BitsTest.cpp + TEST cold_class_test SOURCES ColdClassTest.cpp DIRECTORY memory/test/ TEST arena_test SOURCES ArenaTest.cpp diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 9fb035f0..32055e92 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -146,6 +146,10 @@ timeout_queue_test_SOURCES = TimeoutQueueTest.cpp timeout_queue_test_LDADD = libfollytestmain.la TESTS += timeout_queue_test +cold_class_test_SOURCES = ../lang/test/ColdClassTest.cpp +cold_class_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la +TESTS += cold_class_test + conv_test_SOURCES = ConvTest.cpp conv_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la TESTS += conv_test -- 2.34.1