Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: testing/embedder_test.cpp

Issue 1533233002: Fix JS seconds since epoch to date conversions. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: more test cases Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/embedder_test.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "testing/embedder_test.h" 5 #include "testing/embedder_test.h"
6 6
7 #include <limits.h> 7 #include <limits.h>
8 8
9 #include <list> 9 #include <list>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } 282 }
283 283
284 // Can't use gtest-provided main since we need to stash the path to the 284 // Can't use gtest-provided main since we need to stash the path to the
285 // executable in order to find the external V8 binary data files. 285 // executable in order to find the external V8 binary data files.
286 int main(int argc, char** argv) { 286 int main(int argc, char** argv) {
287 g_exe_path_ = argv[0]; 287 g_exe_path_ = argv[0];
288 testing::InitGoogleTest(&argc, argv); 288 testing::InitGoogleTest(&argc, argv);
289 testing::InitGoogleMock(&argc, argv); 289 testing::InitGoogleMock(&argc, argv);
290 return RUN_ALL_TESTS(); 290 return RUN_ALL_TESTS();
291 } 291 }
OLDNEW
« no previous file with comments | « testing/embedder_test.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698