* configure --with-wwwdir=<dir> is removed

* test:
  * new test_helloworld.sh smoketest added for testing basic functions
  * stripped restconf fcgi default config
  * added yang variable
This commit is contained in:
Olof hagsand 2022-02-07 13:24:13 +01:00
parent b5ecd6d5fa
commit 4102ca8a46
127 changed files with 343 additions and 163 deletions

View file

@ -292,3 +292,12 @@ screen /tmp/clixon-tty
LDFLAGS=-coverage LINKAGE=static CFLAGS="-O2 -Wall -coverage" ./configure
bash <(curl -s https://codecov.io/bash) -t <token>
```
## Static analysis
```
sudo apt install clang-tools # on ubuntu
scan-build ./configure --enable-debug
scan-build make
scan-view /tmp/scan-build-2022-02-03-100113-27646-1 # example
```