tests: make linux v5.1 the minimum version to run tests
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 16 Apr 2019 07:37:37 +0000 (09:37 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 23 Apr 2019 09:50:45 +0000 (11:50 +0200)
The testing framework has been adjusted for linux v5.1. It will no
longer work with older versions.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/gpiod-test.c

index 56ef770f44c9d7a61861eb6c15183ffb49540316..ca9761ad50d193fc26c6bf792e6b73706b50522a 100644 (file)
@@ -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 {