bindings: cxx: vix compile errors
authorAlexander Stein <alexander.stein@mailbox.org>
Wed, 7 Aug 2019 19:51:31 +0000 (21:51 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 9 Aug 2019 06:47:01 +0000 (08:47 +0200)
This fixes the following compile errors:
tests-event.cpp:152:3: error: cannot declare reference to
'class std::system_error&', which is not a typedef or a template type
argument
  152 |   REQUIRE_THROWS_AS(line.event_get_fd(), ::std::system_error&);

This occurs on catch2 but not on catch.

Signed-off-by: Alexander Stein <alexander.stein@mailbox.org>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/tests/tests-chip.cpp
bindings/cxx/tests/tests-event.cpp
bindings/cxx/tests/tests-line.cpp

index 11c2d4c638263917d7e7dbd5aa3a709f15202de7..c9eb8e537c23a561c8e62621cc4f8e892ce05262 100644 (file)
@@ -107,7 +107,7 @@ TEST_CASE("Uninitialized GPIO chip behaves correctly", "[chip]")
 
        SECTION("using uninitialized chip throws logic_error")
        {
-               REQUIRE_THROWS_AS(chip.name(), ::std::logic_error&);
+               REQUIRE_THROWS_AS(chip.name(), ::std::logic_error);
        }
 }
 
@@ -139,7 +139,7 @@ TEST_CASE("GPIO chip can be opened with the open() method with implicit lookup",
 
 TEST_CASE("Trying to open a nonexistent chip throws system_error", "[chip]")
 {
-       REQUIRE_THROWS_AS(::gpiod::chip("nonexistent-chip"), ::std::system_error&);
+       REQUIRE_THROWS_AS(::gpiod::chip("nonexistent-chip"), ::std::system_error);
 }
 
 TEST_CASE("Chip object can be reset", "[chip]")
@@ -244,12 +244,12 @@ TEST_CASE("Errors occurring when retrieving lines are correctly reported", "[chi
 
        SECTION("invalid offset (single line)")
        {
-               REQUIRE_THROWS_AS(chip.get_line(9), ::std::out_of_range&);
+               REQUIRE_THROWS_AS(chip.get_line(9), ::std::out_of_range);
        }
 
        SECTION("invalid offset (multiple lines)")
        {
-               REQUIRE_THROWS_AS(chip.get_lines({ 1, 19, 4, 7 }), ::std::out_of_range&);
+               REQUIRE_THROWS_AS(chip.get_lines({ 1, 19, 4, 7 }), ::std::out_of_range);
        }
 
        SECTION("line not found by name")
index b34347f5a45c246f7b09ac5c6665a549ae96b3c9..b41cf7e1b8ab184f11a9d637f913f28769e46c6a 100644 (file)
@@ -149,7 +149,7 @@ TEST_CASE("It's possible to retrieve the event file descriptor", "[event][line]"
 
        SECTION("error if not requested")
        {
-               REQUIRE_THROWS_AS(line.event_get_fd(), ::std::system_error&);
+               REQUIRE_THROWS_AS(line.event_get_fd(), ::std::system_error);
        }
 
        SECTION("error if requested for values")
@@ -157,7 +157,7 @@ TEST_CASE("It's possible to retrieve the event file descriptor", "[event][line]"
                config.request_type = ::gpiod::line_request::DIRECTION_INPUT;
 
                line.request(config);
-               REQUIRE_THROWS_AS(line.event_get_fd(), ::std::system_error&);
+               REQUIRE_THROWS_AS(line.event_get_fd(), ::std::system_error);
        }
 }
 
index df89156e708f2d03051aae7866b9d2cf7f47d37c..9e7e1b0b107e42d4f72f2f9637933e4f5795761d 100644 (file)
@@ -131,7 +131,7 @@ TEST_CASE("Line bulk object works correctly", "[line][bulk]")
        {
                auto lines = chip.get_all_lines();
 
-               REQUIRE_THROWS_AS(lines.get(11), ::std::out_of_range&);
+               REQUIRE_THROWS_AS(lines.get(11), ::std::out_of_range);
        }
 }
 
@@ -251,7 +251,7 @@ TEST_CASE("Exported line can be released", "[line]")
        line.release();
 
        REQUIRE_FALSE(line.is_requested());
-       REQUIRE_THROWS_AS(line.get_value(), ::std::system_error&);
+       REQUIRE_THROWS_AS(line.get_value(), ::std::system_error);
 }
 
 TEST_CASE("Uninitialized GPIO line behaves correctly", "[line]")
@@ -265,7 +265,7 @@ TEST_CASE("Uninitialized GPIO line behaves correctly", "[line]")
 
        SECTION("using uninitialized line throws logic_error")
        {
-               REQUIRE_THROWS_AS(line.name(), ::std::logic_error&);
+               REQUIRE_THROWS_AS(line.name(), ::std::logic_error);
        }
 }
 
@@ -280,7 +280,7 @@ TEST_CASE("Uninitialized GPIO line_bulk behaves correctly", "[line][bulk]")
 
        SECTION("using uninitialized line_bulk throws logic_error")
        {
-               REQUIRE_THROWS_AS(bulk.get(0), ::std::logic_error&);
+               REQUIRE_THROWS_AS(bulk.get(0), ::std::logic_error);
        }
 }
 
@@ -298,7 +298,7 @@ TEST_CASE("Cannot request the same line twice", "[line]")
                auto line = chip.get_line(3);
 
                REQUIRE_NOTHROW(line.request(config));
-               REQUIRE_THROWS_AS(line.request(config), ::std::system_error&);
+               REQUIRE_THROWS_AS(line.request(config), ::std::system_error);
        }
 
        SECTION("request the same line twice in line_bulk")
@@ -309,7 +309,7 @@ TEST_CASE("Cannot request the same line twice", "[line]")
                 */
                auto lines = chip.get_lines({ 2, 3, 4, 4 });
 
-               REQUIRE_THROWS_AS(lines.request(config), ::std::system_error&);
+               REQUIRE_THROWS_AS(lines.request(config), ::std::system_error);
        }
 }
 
@@ -321,12 +321,12 @@ TEST_CASE("Cannot get/set values of unrequested lines", "[line]")
 
        SECTION("get value")
        {
-               REQUIRE_THROWS_AS(line.get_value(), ::std::system_error&);
+               REQUIRE_THROWS_AS(line.get_value(), ::std::system_error);
        }
 
        SECTION("set value")
        {
-               REQUIRE_THROWS_AS(line.set_value(1), ::std::system_error&);
+               REQUIRE_THROWS_AS(line.set_value(1), ::std::system_error);
        }
 }