From e4b035b722ad69d4a4357c54cd3c9f1f8574b067 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sun, 26 Mar 2017 15:48:34 -0700 Subject: Use PartitionAlloc for JavaScript ArrayBuffers and strings. BUG=pdfium:681 Change-Id: I5073d80d9bd623b73e578d5ba2226c39c371bab0 Reviewed-on: https://pdfium-review.googlesource.com/3097 Commit-Queue: Chris Palmer Reviewed-by: Tom Sepez --- testing/test_support.cpp | 12 ++++++++++++ testing/test_support.h | 7 +++++++ 2 files changed, 19 insertions(+) (limited to 'testing') diff --git a/testing/test_support.cpp b/testing/test_support.cpp index a530b3ea4c..6e1bb64bc0 100644 --- a/testing/test_support.cpp +++ b/testing/test_support.cpp @@ -210,3 +210,15 @@ int TestSaver::WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, pThis->m_String.append(static_cast(data), size); return 1; } + +namespace pdfium { + +void FPDF_Test::SetUp() { + FPDF_InitLibrary(); +} + +void FPDF_Test::TearDown() { + FPDF_DestroyLibrary(); +} + +} // namespace pdfium diff --git a/testing/test_support.h b/testing/test_support.h index 4111ca61ed..b734bc31f0 100644 --- a/testing/test_support.h +++ b/testing/test_support.h @@ -12,6 +12,7 @@ #include "public/fpdf_save.h" #include "public/fpdfview.h" +#include "testing/gtest/include/gtest/gtest.h" #ifdef PDF_ENABLE_V8 #include "v8/include/v8.h" @@ -58,6 +59,12 @@ struct FreeDeleter { inline void operator()(void* ptr) const { free(ptr); } }; +class FPDF_Test : public ::testing::Test { + public: + void SetUp() override; + void TearDown() override; +}; + } // namespace pdfium // Reads the entire contents of a file into a newly alloc'd buffer. -- cgit v1.2.3