- fixed typo preventing evaluation of confirmed-commit logic in backend_startup - fixed uninitialized variable warnings - added details to CHANGELOG.MD - added capabilities advertisement for confirmed-commit 1.0 and 1.1 - added xml hello message that uses only eom framing, for simplicity in asynch tests - add stty restore after wait_restconf to fix console corruption in tests - adjust test_confirmed_commit to drop perms and run as the invoking user. This will require running user to have permissions on /usr/local/var/example - added CLI tests
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
#!#/bin/sh
|
|
# Use this file to specify local site-specific env variables, or tests to
|
|
# skip. This file is sourced by lib.sh
|
|
#
|
|
# Add test filenames that you do not want to run to the SKIPLIST variable. The
|
|
# SKIPLIST is evaluated as a Bash glob in lib.sh, so you can use it to skip
|
|
# files from the begining of the file list up to a pattern by specifying an
|
|
# appropriate glob such as "test_[a-n]*\.sh".
|
|
#
|
|
# The SKIPLIST has precedence over the 'pattern' variable that you can use to
|
|
# specify included file when running the various test scripts such as "all.sh".
|
|
#SKIPLIST="test_[a-t]*\.sh test_openconfig.sh test_yangmodels.sh"
|
|
SKIPLIST="test_http_data.sh test_netconf_ssh_callhome.sh test_privileges.sh test_restconf.sh test_yang_models_ieee.sh"
|
|
#
|
|
# Parse yang openconfig models from https://github.com/openconfig/public
|
|
OPENCONFIG=/usr/local/share/openconfig/public
|
|
#
|
|
# Some restconf tests can run IPv6, but its complicated because:
|
|
# - docker by default does not run IPv6
|
|
IPv6=true
|
|
|
|
# Check sanity between --with-restconf setting and if nginx is started by systemd or not
|
|
# This check is optional because some installs, such as vagrant make a non-systemd/direct
|
|
# start
|
|
NGINXCHECK=true
|
|
|
|
|