diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-07-27 22:15:26 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-08-05 20:49:20 -0400 |
commit | 8fb494435889dcb9e1c09b8c7220e47bab717bf9 (patch) | |
tree | 68685a2da5e072996a37e491c1fab61aacf0ccce /Makefile.am | |
parent | baee30afce50b611724e6c6a4ca61a4469b11d9d (diff) |
hostname-util: add relax parameter to hostname_is_valid
Tests are modified to check behaviour with relax and without relax.
New tests are added for hostname_cleanup().
Tests are moved a new file (test-hostname-util) because there's
now a bunch of them.
New parameter is not used anywhere, except in tests, so there should
be no observable change.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index d21982285f..4f97da10c2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1393,6 +1393,7 @@ tests += \ test-utf8 \ test-ellipsize \ test-util \ + test-hostname-util \ test-process-util \ test-terminal-util \ test-path-lookup \ @@ -1671,6 +1672,12 @@ test_util_SOURCES = \ test_util_LDADD = \ libshared.la +test_hostname_util_SOURCES = \ + src/test/test-hostname-util.c + +test_hostname_util_LDADD = \ + libshared.la + test_process_util_SOURCES = \ src/test/test-process-util.c |