diff options
author | Andreas Schneider <asn@samba.org> | 2014-02-15 16:53:46 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-04-17 14:56:05 +0200 |
commit | c6a8edb4a71d2abbe2c7bc151237e37572876653 (patch) | |
tree | 873d5733f092ac3a4fc404e116ef399105314284 | |
parent | 5adacb43f3f98e060f57ce34e6e8b905b321dbaa (diff) | |
download | samba-c6a8edb4a71d2abbe2c7bc151237e37572876653.tar.gz |
selftest: Add a bash env file you can source.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | selftest/devel_env.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/selftest/devel_env.sh b/selftest/devel_env.sh new file mode 100644 index 00000000000..d1c0736ab09 --- /dev/null +++ b/selftest/devel_env.sh @@ -0,0 +1,11 @@ +# 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 |