summaryrefslogtreecommitdiff
path: root/tests/gem_evict_everything.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-11-17 14:43:33 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-11-17 14:43:33 +0100
commita535cdedfbd280c5e07be1c2445e09973836509a (patch)
tree22239380a3016c00a09249c9d4c5c0f32bf16055 /tests/gem_evict_everything.c
parentaa63fc740c510ed44c1a8dc0fc00f0c92c0581a2 (diff)
lib/os: Pust igt_require into memory check function
More in line with the usual igt pattern and simplifies the code - every called just wrapped it in igt_require. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'tests/gem_evict_everything.c')
-rw-r--r--tests/gem_evict_everything.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gem_evict_everything.c b/tests/gem_evict_everything.c
index db802373..4b7768c1 100644
--- a/tests/gem_evict_everything.c
+++ b/tests/gem_evict_everything.c
@@ -151,7 +151,7 @@ static void test_forking_evictions(int fd, int size, int count,
int trash_count;
trash_count = intel_get_total_ram_mb() * 11 / 10;
- igt_require(intel_check_memory(trash_count, size, CHECK_RAM | CHECK_SWAP));
+ intel_require_memory(trash_count, size, CHECK_RAM | CHECK_SWAP);
forking_evictions(fd, &fault_ops, size, count, trash_count, flags);
}
@@ -161,7 +161,7 @@ static void test_swapping_evictions(int fd, int size, int count)
int trash_count;
trash_count = intel_get_total_ram_mb() * 11 / 10;
- igt_require(intel_check_memory(trash_count, size, CHECK_RAM | CHECK_SWAP));
+ intel_require_memory(trash_count, size, CHECK_RAM | CHECK_SWAP);
swapping_evictions(fd, &fault_ops, size, count, trash_count);
}