diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-08-10 18:55:46 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-10 18:55:46 +0000 |
commit | 70cca3663a0ea6c290b55c290ba5eb1f1c9db572 (patch) | |
tree | 795a8448eb76b90320d46aca1808e6d64a6b3ae5 /fxjs | |
parent | 6655d95a8586c1f272d5d418bb63514abbe1d695 (diff) | |
download | pdfium-70cca3663a0ea6c290b55c290ba5eb1f1c9db572.tar.xz |
Add proxy for syscall time
This CL adds a proxy, FXSYS_time, for the time syscall, so that a
testing mechanism can be implemented. Specically there is now a flag
for pdfium_test, --time=, that allows setting the time since the epoch
that will be returned. This plumbed all the way down into the proxy
and allows for stable results for tests that depend on getting the
current time.
There are other places in the code base that will need to be patched
like this, that will be dealt with in follow on CLs.
BUG=pdfium:1104
Change-Id: I2de185f8d47abe46704dd579c13a54948b7f81e0
Reviewed-on: https://pdfium-review.googlesource.com/39750
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cfxjse_formcalc_context.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fxjs/cfxjse_formcalc_context.cpp b/fxjs/cfxjse_formcalc_context.cpp index 9973df69aa..d164c626b9 100644 --- a/fxjs/cfxjse_formcalc_context.cpp +++ b/fxjs/cfxjse_formcalc_context.cpp @@ -6,8 +6,6 @@ #include "fxjs/cfxjse_formcalc_context.h" -#include <time.h> - #include <algorithm> #include <string> #include <utility> @@ -2061,7 +2059,7 @@ void CFXJSE_FormCalcContext::Date(CFXJSE_Value* pThis, } time_t currentTime; - time(¤tTime); + FXSYS_time(¤tTime); struct tm* pTmStruct = gmtime(¤tTime); args.GetReturnValue()->SetInteger(DateString2Num( |