blob: 1409d30c92bdacb3a128c11c33f1fdef366c9220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This file can be sourced using
#
# source selftest/devel_env.sh
#
# So that you can run 'make test' on your box with better
# debugging and without syncs slowing down the tests.
#
export TDB_NO_FSYNC=1
export NMBD_DONT_LOG_STDOUT=1
export SMBD_DONT_LOG_STDOUT=1
export WINBINDD_DONT_LOG_STDOUT=1
# Setup python path for lsp server
PYTHONPATH="$(pwd)/third_party/waf:$(pwd)/python:$(pwd)/bin/python:$(pwd)/selftest:$PYTHONPATH"
export PYTHONPATH
|