Jan Kundrát
Jan Kundrát
The build used to be warning-free. I know "it's just a test", but there's no harm in making these warning-free and that will make it easier to spot real issues....
I'm on the latest `devel` of everything, plus #388: ``` 10/13 Test #8: test_pam .........................Subprocess aborted***Exception: 0.10 sec [INF]: Listening on 0.0.0.0:6002 for SSH connections. [INF]: Trying to connect via...
## CI: stick with libssh-0.7 only on older Ubuntu releases We cannot stay on the 0.7 branch of libssh indefinitely. The CMake code blacklists 0.9.3 and 0.9.4, which means that...
It is OK to have sysctl keys with slashes in them: ``` [root@potemkin02 ~]# sysctl net.ipv4.conf.bond0/122.rp_filter net.ipv4.conf.bond0/122.rp_filter = 1 ``` However, it seems that one cannot really apply them. The...
We've started using `pyang` in a test suite of our project for linting the YANG files. Our test suite simply tried to execute `pyang something something`, which failed on Windows....
Clang is supported on Linux as well, and shall be called with the correct options.
The test case is trying to ignore the attribute of the CRLF rule. Without the patch to make_attribute.hpp, the compiler doesn't know which of the specializations to use, and the...
This test case fails: ``` { // literals wrapping strings shall not be stored std::string attr; test_attr("foo", lit("foo"), attr, true); BOOST_TEST((attr.empty())); } ``` ...while this one suceeds: ``` { //...
Hi, do you have plans for supporting setting of user passwords and "systemwide" SSH public keys for authentication? We will need something like that within a month or so, and...
The following file causes an endless loop: ```c++ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN #include TEST_CASE("wtf") { static int cnt = 0; if (cnt++ >= 1) { throw std::runtime_error{"wat"}; } DOCTEST_SUBCASE("1") {} DOCTEST_SUBCASE("2") {}...