summaryrefslogtreecommitdiff
path: root/testing/test_support.cpp
diff options
context:
space:
mode:
authorWei Li <weili@chromium.org>2015-11-09 12:09:55 -0800
committerWei Li <weili@chromium.org>2015-11-09 12:09:55 -0800
commit091f7a070d58e1f8de6bbfdc5b60e1cef84e58c3 (patch)
treeb1d303ad5e74be376c84bf76502d19d6290a7329 /testing/test_support.cpp
parent3beeeeeb2ca45d54b34e4cc80fb137980e2f7aae (diff)
downloadpdfium-091f7a070d58e1f8de6bbfdc5b60e1cef84e58c3.tar.xz
Merge to XFA: Add path service to retrieve test data directory at run time so tests can be run from any directory.
Previously the tests which read test files assume the current directory is under pdfium. Running from any other directory will break the build. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1408003014 . (cherry picked from commit c0e93a9a942fe7d99800502a61d2fbb58cf9276f) Conflicts: core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp fpdfsdk/src/fpdfdoc_embeddertest.cpp testing/embedder_test.cpp testing/embedder_test.h Review URL: https://codereview.chromium.org/1411403012 .
Diffstat (limited to 'testing/test_support.cpp')
-rw-r--r--testing/test_support.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/testing/test_support.cpp b/testing/test_support.cpp
index 8ecda30bce..f71f6f8b4f 100644
--- a/testing/test_support.cpp
+++ b/testing/test_support.cpp
@@ -2,16 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "test_support.h"
+#include "testing/test_support.h"
#include <stdio.h>
#include <string.h>
-#ifdef _WIN32
-#define PATH_SEPARATOR '\\'
-#else
-#define PATH_SEPARATOR '/'
-#endif
+#include "testing/utils/path_service.h"
#ifdef PDF_ENABLE_V8
#include "v8/include/libplatform/libplatform.h"