If $OVN_NB_DB or $OVN_SB_DB happened to be set in the environment in which "make check" was invoked, then their values would leak into the tests' environment and interfere with the tests. This commit avoids that problem.
OVS has a number of environment variables too, such as OVS_RUNDIR, but the tests already set those to custom values. Reported-by: Han Zhou <[email protected]> Signed-off-by: Ben Pfaff <[email protected]> --- tests/atlocal.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/atlocal.in b/tests/atlocal.in index 6af420c4794f..0cc183e33fa6 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -195,3 +195,7 @@ unset HTTP_PROXY unset HTTPS_PROXY unset FTP_PROXY unset NO_PROXY + +# Avoid OVN environment variables leaking in from external environment. +unset OVN_NB_DB +unset OVN_SB_DB -- 2.16.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
