blob: f00e2d95cc39f74832dc9183b5084db231dd49b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/sh
# Copyright (C) 2014-2015 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Include common test library.
. @abs_top_builddir@/src/lib/testutils/dhcp_test_lib.sh
memfile_init_test() {
test_start "memfile.init"
# @todo: Implement this (ticket #3601)
test_finish 0
}
memfile_version_test() {
test_start "memfile.version"
# @todo: Implement this (ticket #3601)
test_finish 0
}
memfile_upgrade_test() {
test_start "memfile.upgrade"
# @todo: Implement this (ticket #3601)
test_finish 0
}
memfile_init_test
memfile_version_test
memfile_upgrade_test
|