chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / t / Makefile.am
CommitLineData
1c5f4539
MW
1### -*-makefile-*-
2###
3### Build script for test suite
4###
5### (c) 2008 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Trivial IP Encryption (TrIPE).
11###
11ad66c2
MW
12### TrIPE is free software: you can redistribute it and/or modify it under
13### the terms of the GNU General Public License as published by the Free
14### Software Foundation; either version 3 of the License, or (at your
15### option) any later version.
1c5f4539 16###
11ad66c2
MW
17### TrIPE is distributed in the hope that it will be useful, but WITHOUT
18### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19### FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20### for more details.
1c5f4539
MW
21###
22### You should have received a copy of the GNU General Public License
11ad66c2 23### along with TrIPE. If not, see <https://www.gnu.org/licenses/>.
1c5f4539
MW
24
25include autotest.am
26
27autotest_TESTS =
61498acf 28TEST_ARGS = -j4
1c5f4539
MW
29
30###--------------------------------------------------------------------------
31### Test directories.
32
5d85da1c
MW
33## The main server.
34autotest_TESTS += $(top_srcdir)/server/tests.at
35
8cae2567
MW
36## Key management.
37autotest_TESTS += $(top_srcdir)/keys/tests.at
38
5d85da1c
MW
39###--------------------------------------------------------------------------
40### Test files.
41
42## Keyring files.
d5cdcb8a
MW
43EXTRA_DIST += keyring-alpha
44EXTRA_DIST += keyring-beta keyring-beta-new
45EXTRA_DIST += keyring-gamma
5d85da1c 46
1c5f4539 47###----- That's all, folks --------------------------------------------------