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

Side by Side Diff: tools/OverwriteLine.h

Issue 109513002: make tests output spin on the same line by default (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: more refactoring Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « tests/skia_test.cpp ('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 #ifndef OverwriteLine_DEFINED
2 #define OverwriteLine_DEFINED
3
4 // Print this string to reset and clear your current terminal line.
5 static const char* kSkOverwriteLine =
6 #ifdef SK_BUILD_FOR_WIN32
7 "\r \r"
8 #else
9 "\r\033[K"
10 #endif
11 ;
12
13 #endif//OverwriteLine_DEFINED
OLDNEW
« no previous file with comments | « tests/skia_test.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698