summaryrefslogtreecommitdiff
path: root/tests/gem_reset_stats.c
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2015-01-13 13:33:57 +0000
committerThomas Wood <thomas.wood@intel.com>2015-01-15 12:23:04 +0000
commit032f30cb38bb03562ee7fde19cd278b1d8ac31a9 (patch)
treeea6fea5eff9583a072c2f8174c00f57ab5cf1881 /tests/gem_reset_stats.c
parent07e9f3edb9dd8e99c2511b6b8c4cf750a5dbe536 (diff)
lib: remove unnecessary checks on the drm_open_any return value
drm_open_any always returns a valid file descriptor, so there is no need to check the return value. Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'tests/gem_reset_stats.c')
-rw-r--r--tests/gem_reset_stats.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/gem_reset_stats.c b/tests/gem_reset_stats.c
index ab8728a3..646d6dac 100644
--- a/tests/gem_reset_stats.c
+++ b/tests/gem_reset_stats.c
@@ -520,10 +520,8 @@ static void test_ban(void)
struct local_drm_i915_reset_stats rs_bad, rs_good;
fd_bad = drm_open_any();
- igt_assert(fd_bad >= 0);
fd_good = drm_open_any();
- igt_assert(fd_good >= 0);
assert_reset_status(fd_bad, 0, RS_NO_ERROR);
assert_reset_status(fd_good, 0, RS_NO_ERROR);
@@ -609,7 +607,6 @@ static void test_ban_ctx(void)
struct local_drm_i915_reset_stats rs_bad, rs_good;
fd = drm_open_any();
- igt_assert(fd >= 0);
assert_reset_status(fd, 0, RS_NO_ERROR);
@@ -749,7 +746,6 @@ static void test_close_pending_ctx(void)
uint32_t ctx;
fd = drm_open_any();
- igt_assert(fd >= 0);
ctx = context_create(fd);
assert_reset_status(fd, ctx, RS_NO_ERROR);
@@ -768,7 +764,6 @@ static void test_close_pending(void)
int fd, h;
fd = drm_open_any();
- igt_assert(fd >= 0);
assert_reset_status(fd, 0, RS_NO_ERROR);
@@ -831,7 +826,6 @@ static void test_close_pending_fork(const bool reverse)
int fd, h;
fd = drm_open_any();
- igt_assert(fd >= 0);
assert_reset_status(fd, 0, RS_NO_ERROR);
@@ -871,7 +865,6 @@ static void test_close_pending_fork(const bool reverse)
/* Then we just wait on hang to happen */
fd = drm_open_any();
- igt_assert(fd >= 0);
h = exec_valid(fd, 0);
igt_assert(h >= 0);
@@ -887,7 +880,6 @@ static void test_reset_count(const bool create_ctx)
long c1, c2;
fd = drm_open_any();
- igt_assert(fd >= 0);
if (create_ctx)
ctx = context_create(fd);
else
@@ -998,7 +990,6 @@ static void test_params_ctx(void)
int fd, ctx;
fd = drm_open_any();
- igt_assert(fd >= 0);
ctx = context_create(fd);
_test_param(fd, ctx);
@@ -1011,7 +1002,6 @@ static void test_params(void)
int fd;
fd = drm_open_any();
- igt_assert(fd >= 0);
_test_param(fd, 0);
@@ -1025,7 +1015,6 @@ static void defer_hangcheck(int ring_num)
int seconds = 30;
const struct target_ring *next_ring;
fd = drm_open_any();
- igt_assert(fd >= 0);
do {
next_ring = &rings[(++ring_num) % NUM_RINGS];