From 87cd5560a0d052c164df548e4ee24cabe10ccfef Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 16 Apr 2019 09:37:37 +0200 Subject: [PATCH] tests: make linux v5.1 the minimum version to run tests The testing framework has been adjusted for linux v5.1. It will no longer work with older versions. Signed-off-by: Bartosz Golaszewski --- tests/gpiod-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gpiod-test.c b/tests/gpiod-test.c index 56ef770..ca9761a 100644 --- a/tests/gpiod-test.c +++ b/tests/gpiod-test.c @@ -31,8 +31,8 @@ #define NORETURN __attribute__((noreturn)) #define MALLOC __attribute__((malloc)) -static const unsigned int min_kern_major = 4; -static const unsigned int min_kern_minor = 16; +static const unsigned int min_kern_major = 5; +static const unsigned int min_kern_minor = 1; static const unsigned int min_kern_release = 0; struct mockup_chip { -- 2.30.2