diff options
author | Francis Dupont <fdupont@isc.org> | 2023-06-06 16:05:15 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2023-06-26 14:24:42 +0200 |
commit | 608ff6009db147707936d0b468d8338a5bb4a196 (patch) | |
tree | 1f33ab2fe07c032adb51056895680eee0be95992 /src/lib/cc | |
parent | [#2866] Updated server tests (diff) | |
download | kea-608ff6009db147707936d0b468d8338a5bb4a196.tar.xz kea-608ff6009db147707936d0b468d8338a5bb4a196.zip |
[#2866] Checkpoint before last use chasing
Diffstat (limited to 'src/lib/cc')
-rw-r--r-- | src/lib/cc/tests/json_feed_unittests.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/cc/tests/json_feed_unittests.cc b/src/lib/cc/tests/json_feed_unittests.cc index 84739f7f43..747d14212d 100644 --- a/src/lib/cc/tests/json_feed_unittests.cc +++ b/src/lib/cc/tests/json_feed_unittests.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2017-2021 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2017-2023 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -367,6 +367,7 @@ TEST_F(JSONFeedTest, bashComment4) { "\"subnet4\": [ { " " \"pools\": [ { \"pool\": \"192.0.2.1 - 192.0.2.100\" } ]," " \"subnet\": \"192.0.2.0/24\", " + " \"id\": 1, " " \"interface\": \"eth0\"" " } ]," "\"valid-lifetime\": 4000 } }"; @@ -389,6 +390,7 @@ TEST_F(JSONFeedTest, bashCommentsInline4) { "\"subnet4\": [ { " " \"pools\": [ { \"pool\": \"192.0.2.1 - 192.0.2.100\" } ]," " \"subnet\": \"192.0.2.0/24\", " + " \"id\": 1, " " \"interface\": \"eth0\"" " } ]," "\"valid-lifetime\": 4000 } }"; @@ -412,6 +414,7 @@ TEST_F(JSONFeedTest, cppComments6) { "\"subnet6\": [ { " " \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ]," " \"subnet\": \"2001:db8:1::/48\", " + " \"id\": 1, " " \"interface\": \"eth0\"" " } ]," "\"valid-lifetime\": 4000 } }"; @@ -436,6 +439,7 @@ TEST_F(JSONFeedTest, multilineComments6) { "\"subnet6\": [ { " " \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ]," " \"subnet\": \"2001:db8:1::/48\", " + " \"id\": 1, " " \"interface\": \"eth0\"" " } ]," "\"valid-lifetime\": 4000 } }"; |