diff options
author | battre <battre@chromium.org> | 2015-12-16 19:59:03 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-17 03:59:56 +0000 |
commit | 2bf80eeab7c142f91d45b46504b4485934e29512 (patch) | |
tree | 5d5168986b00288571236f08b10fbd89df7ace32 /third_party/re2/util/test.cc | |
parent | 0b9dbdd4cb09836efadb090edf7d981fb438cf50 (diff) | |
download | chromium_src-2bf80eeab7c142f91d45b46504b4485934e29512.zip chromium_src-2bf80eeab7c142f91d45b46504b4485934e29512.tar.gz chromium_src-2bf80eeab7c142f91d45b46504b4485934e29512.tar.bz2 |
Update re2 to tip of tree.
This version does not require any Chrome specific patches anymore.
This is an update of https://crrev.com/fd270ec705a75fd4e0883d091d9cf5204918c858
BUG=568119
R=thakis@chromium.org,tfarina@chromium.org
Review URL: https://codereview.chromium.org/1529143002
Cr-Commit-Position: refs/heads/master@{#365736}
Diffstat (limited to 'third_party/re2/util/test.cc')
-rw-r--r-- | third_party/re2/util/test.cc | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/third_party/re2/util/test.cc b/third_party/re2/util/test.cc index 2fe1bfa..b0167e7 100644 --- a/third_party/re2/util/test.cc +++ b/third_party/re2/util/test.cc @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. #include <stdio.h> -#ifndef WIN32 +#ifndef _WIN32 #include <sys/resource.h> #endif #include "util/test.h" @@ -23,18 +23,6 @@ void RegisterTest(void (*fn)(void), const char *name) { tests[ntests++].name = name; } -namespace re2 { -int64 VirtualProcessSize() { -#ifndef WIN32 - struct rusage ru; - getrusage(RUSAGE_SELF, &ru); - return (int64)ru.ru_maxrss*1024; -#else - return 0; -#endif -} -} // namespace re2 - int main(int argc, char **argv) { for (int i = 0; i < ntests; i++) { printf("%s\n", tests[i].name); |