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

Side by Side Diff: tools/win/timeit.bat

Issue 2820843002: Add timeit.bat to tools\win (Closed)
Patch Set: Created 3 years, 8 months 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 | « tools/win/subtract_time.py ('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
(Empty)
1 @ECHO off
2
3 REM Copyright (c) 2017 The Chromium Authors. All rights reserved.
4 REM Use of this source code is governed by a BSD-style license that can be
5 REM found in the LICENSE file.
6
7 REM This batch file executes the commands passed to it and prints out the
8 REM elapsed run time.
9
10 SETLOCAL
11 SET starttime=%time%
12 CALL %*
13 CALL python %~dp0subtract_time.py %time% %starttime%
OLDNEW
« no previous file with comments | « tools/win/subtract_time.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698