diff options
author | Ken Raeburn <raeburn@mit.edu> | 2009-12-28 00:21:06 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2009-12-28 00:21:06 +0000 |
commit | 6089a0b78220a163dd4a2c7fe0f5447933391475 (patch) | |
tree | b070132b982d83974b77e8bb281f8cdcf870ee85 /src/config | |
parent | d595dd3cdf2cb986b0ffe978c78c847cb1a8294d (diff) | |
download | krb5-6089a0b78220a163dd4a2c7fe0f5447933391475.tar.gz krb5-6089a0b78220a163dd4a2c7fe0f5447933391475.tar.xz krb5-6089a0b78220a163dd4a2c7fe0f5447933391475.zip |
allow testing when offline
Define new make variable OFFLINE to "no"; if it's set to "yes", skip
the testing of t_locate_kdc, which requires access to mit.edu SRV
records.
ticket: 6606
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23520 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/pre.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config/pre.in b/src/config/pre.in index 34bb7522d..5cfb5546d 100644 --- a/src/config/pre.in +++ b/src/config/pre.in @@ -564,6 +564,13 @@ VALGRIND= VALGRIND_LOGDIR = `cd $(BUILDTOP)&&pwd` VALGRIND1 = valgrind --tool=memcheck --log-file=$(VALGRIND_LOGDIR)/vg --trace-children=yes -v --leak-check=yes --suppressions=`cd $(top_srcdir)&&pwd`/util/valgrind-suppressions +# Set OFFLINE=yes to disable tests that assume network connectivity. +# (Specifically, this concerns the ability to fetch DNS data for +# mit.edu, to verify that SRV queries are working.) Note that other +# tests still assume that the local hostname can be resolved into +# something that looks like an FQDN, with an IPv4 address. +OFFLINE=no + ## ## end of pre.in ############################################################ |