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

Side by Side Diff: sandbox/linux/seccomp-bpf-helpers/baseline_policy_unittest.cc

Issue 588143007: sandbox: Convert remaining legacy tests to use policy classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another style fix (grr clang-format) Created 6 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium 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 "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h" 5 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #include <fcntl.h>
8 #include <linux/futex.h> 9 #include <linux/futex.h>
9 #include <sched.h> 10 #include <sched.h>
10 #include <signal.h> 11 #include <signal.h>
11 #include <string.h> 12 #include <string.h>
12 #include <sys/prctl.h> 13 #include <sys/prctl.h>
13 #include <sys/resource.h> 14 #include <sys/resource.h>
14 #include <sys/socket.h> 15 #include <sys/socket.h>
15 #include <sys/stat.h> 16 #include <sys/stat.h>
16 #include <sys/syscall.h> 17 #include <sys/syscall.h>
17 #include <sys/time.h> 18 #include <sys/time.h>
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 ClockGettimeWithDisallowedClockCrashes, 342 ClockGettimeWithDisallowedClockCrashes,
342 DEATH_SEGV_MESSAGE(sandbox::GetErrorMessageContentForTests()), 343 DEATH_SEGV_MESSAGE(sandbox::GetErrorMessageContentForTests()),
343 BaselinePolicy) { 344 BaselinePolicy) {
344 struct timespec ts; 345 struct timespec ts;
345 clock_gettime(CLOCK_MONOTONIC_RAW, &ts); 346 clock_gettime(CLOCK_MONOTONIC_RAW, &ts);
346 } 347 }
347 348
348 } // namespace 349 } // namespace
349 350
350 } // namespace sandbox 351 } // namespace sandbox
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698