From ff7178a4d10f9f1fb34e54fed5ef27cfbff5d6f9 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Wed, 19 Dec 2018 13:14:53 -0800 Subject: Implement pwritev2. Implement pwritev2 and associated unit tests. Clean up preadv2 unit tests. Tag RWF_ flags in both preadv2 and pwritev2 with associated bug tickets. PiperOrigin-RevId: 226222119 Change-Id: Ieb22672418812894ba114bbc88e67f1dd50de620 --- test/util/test_util.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'test/util/test_util.h') diff --git a/test/util/test_util.h b/test/util/test_util.h index 2a7609e5c..cd71fdd64 100644 --- a/test/util/test_util.h +++ b/test/util/test_util.h @@ -217,13 +217,6 @@ void TestInit(int* argc, char*** argv); } \ } while (0) -#define SKIP_BEFORE_KERNEL(maj, min) \ - do { \ - auto version = ASSERT_NO_ERRNO_AND_VALUE(GetKernelVersion()); \ - SKIP_IF(version.major < (maj) || \ - (version.major == (maj) && version.minor < (min))); \ - } while (0) - enum class Platform { kNative, kKVM, -- cgit v1.2.3