tests: reduce excessive whitespace

I know that clang-format is happy to align the macro trailing
backslashes, but enough is enough. Also, having a source file "correctly
formatted" by a tool is not a good thing if the text starts at column
105.

Also, clang changed the AlignEscapedNewlinesLeft to an enum
AlignEscapedNewlines, and IMHO this new option is what makes most sense.
Still, it would try to rewrap some stuff for me, but I think this is a
good step.

Change-Id: Id03e489ada2b51ba4698ce263f0a915cebf27ef6
9 files changed
tree: 7aed072993658bd65af960ba0be2a407d855b668
  1. .clang-format
  2. .gitmodules
  3. .zuul.yaml
  4. CMakeLists.txt
  5. Doxyfile.in
  6. LICENSE
  7. LICENSE.md
  8. README.md
  9. ci/
  10. cmake/
  11. docs/
  12. src/
  13. tests/
  14. yang/
README.md

YANG System management for embedded devices running Linux

Together with sysrepo, this software provides "general system management" of embedded devices. The target platform is anything that runs Linux with systemd. This runs in production on CzechLight SDN DWDM devices.

Health tracking

This component tracks the overal health state of the system, including various sensors, or the state of systemd units. As an operator-friendly LED at the front panel of the appliance shows the aggregated health state.

System management

Firmware can be updated via RAUC, and various aspects of the system's configuration can be adjusted. This includes a firewall, basic network settings, and authentication management.

Supported YANG models

For a full list, consult the yang/ directory in this repository.

Installation

For building, one needs:

The build process uses CMake. A quick-and-dirty build with no fancy options can be as simple as mkdir build && cd build && cmake .. && make && make install.