tests: event: make test cases work with linux v5.1
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 12 Apr 2019 08:05:30 +0000 (10:05 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 23 Apr 2019 09:49:45 +0000 (11:49 +0200)
Make all event test cases work with the recent changes to gpio-mockup
introduced in linux v5.1.

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

index af80904135785e11dc9dad0a511f0fc221719f8e..b97b6f8cf26d5fb98af62a0a49f54f701240e002 100644 (file)
@@ -3,6 +3,7 @@
  * This file is part of libgpiod.
  *
  * Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
+ * Copyright (C) 2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>
  */
 
 /* Test cases for GPIO line events. */
@@ -200,7 +201,7 @@ static void event_get_value_active_low(void)
        TEST_ASSERT_EQ(ev.event_type, GPIOD_LINE_EVENT_FALLING_EDGE);
 
        rv = gpiod_line_get_value(line);
-       TEST_ASSERT_EQ(rv, 0);
+       TEST_ASSERT_EQ(rv, 1);
 }
 TEST_DEFINE(event_get_value_active_low,
            "events - mixing events and gpiod_line_get_value() (active-low flag)",