summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-01-23 15:39:11 -0800
committerTom Sepez <tsepez@chromium.org>2015-01-23 15:39:11 -0800
commitf290eed6f2d0c59e89db1374f9e6b254b51a2356 (patch)
tree452af899bdd7d869ea21750638725c2f385c7e3e
parent2255a1bb3719b8492c795c8828d861bae037f6b9 (diff)
downloadpdfium-f290eed6f2d0c59e89db1374f9e6b254b51a2356.tar.xz
Fix test result under XFA. This gives an error at an earlier
stage, but is fine so long as the crashes don't happen. TBR=bo_xu@foxitsoftware.com Review URL: https://codereview.chromium.org/874743002
-rw-r--r--fpdfsdk/src/fpdf_dataavail_embeddertest.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp
index 6081fa52ac..31977ac534 100644
--- a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp
+++ b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp
@@ -11,13 +11,11 @@ class FPDFDataAvailEmbeddertest : public EmbedderTest {
};
TEST_F(FPDFDataAvailEmbeddertest, TrailerUnterminated) {
- // Document must open without crashing but is too malformed to be available.
- EXPECT_TRUE(OpenDocument("testing/resources/trailer_unterminated.pdf"));
- EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints_));
+ // Document doesn't even open under XFA but must not crash.
+ EXPECT_FALSE(OpenDocument("testing/resources/trailer_unterminated.pdf"));
}
TEST_F(FPDFDataAvailEmbeddertest, TrailerAsHexstring) {
- // Document must open without crashing but is too malformed to be available.
- EXPECT_TRUE(OpenDocument("testing/resources/trailer_as_hexstring.pdf"));
- EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints_));
+ // Document doesn't even open under XFA but must not crash.
+ EXPECT_FALSE(OpenDocument("testing/resources/trailer_as_hexstring.pdf"));
}