From c5e02eeb353c3cdd357413f563701d5018fc76a5 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 1 Jun 2015 11:28:31 -0700 Subject: Cleanup ftruncate negative test. Addresses post-submit comments from I54692ab8105dd09db6af7a2c0894a17bdd118aa0. Bug: http://b/21309901 Change-Id: Ie19ee8cdcc4055a65fe7dfc103156e54eafe8977 (cherry picked from commit 9d476a02e9a14e847669a6683c585028175aa322) --- tests/unistd_test.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/unistd_test.cpp b/tests/unistd_test.cpp index a21578a..79c16d7 100644 --- a/tests/unistd_test.cpp +++ b/tests/unistd_test.cpp @@ -179,10 +179,8 @@ TEST(unistd, ftruncate64) { TEST(unistd, ftruncate_negative) { TemporaryFile tf; errno = 0; - int rc = ftruncate(tf.fd, -123); - int err = errno; - ASSERT_EQ(-1, rc); - ASSERT_EQ(EINVAL, err); + ASSERT_EQ(-1, ftruncate(tf.fd, -123)); + ASSERT_EQ(EINVAL, errno); } static bool g_pause_test_flag = false; -- cgit v1.1