File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4
4
- f38-gcc-cover :
5
5
required-projects :
6
6
- name : github/CESNET/libyang
7
- override-checkout : cesnet/2025-01-29
7
+ override-checkout : devel
8
8
- name : github/onqtam/doctest
9
9
override-checkout : v2.3.6
10
10
- f38-clang-asan-ubsan :
11
11
required-projects : &projects
12
12
- name : github/CESNET/libyang
13
- override-checkout : cesnet/2025-01-29
13
+ override-checkout : devel
14
14
- name : github/onqtam/doctest
15
15
override-checkout : v2.4.11
16
16
- f38-clang-tsan :
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ option(WITH_DOCS "Create and install internal documentation (needs Doxygen)" ${D
29
29
option (BUILD_SHARED_LIBS "By default, shared libs are enabled. Turn off for a static build." ON )
30
30
31
31
find_package (PkgConfig REQUIRED )
32
- pkg_check_modules (LIBYANG REQUIRED libyang>=3.7.8 IMPORTED_TARGET )
32
+ # FIXME: it's actually 3.7.12, but that hasn't been released yet
33
+ pkg_check_modules (LIBYANG REQUIRED libyang>=3.7.11 IMPORTED_TARGET )
33
34
34
35
# FIXME from gcc 14.1 on we should be able to use the calendar/time from libstdc++ and thus remove the date dependency
35
36
find_package (date )
Original file line number Diff line number Diff line change @@ -1568,7 +1568,7 @@ TEST_CASE("Data Node manipulation")
1568
1568
REQUIRE (*jsonAnyXmlNode.createdNode ->printStr (libyang::DataFormat::JSON, libyang::PrintFlags::Shrink | libyang::PrintFlags::WithSiblings)
1569
1569
== R"|( {"example-schema:ax":[1,2,3]})|" s);
1570
1570
REQUIRE (*jsonAnyXmlNode.createdNode ->printStr (libyang::DataFormat::XML, libyang::PrintFlags::Shrink | libyang::PrintFlags::WithSiblings)
1571
- == R"|( <ax xmlns="http://example.com/coze"/ >)|" s);
1571
+ == R"|( <ax xmlns="http://example.com/coze">)|" s + origJSON + " </ax> " );
1572
1572
}
1573
1573
1574
1574
REQUIRE (!!val);
You can’t perform that action at this time.
0 commit comments