Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spr0cketeer
Icecast-Server
Commits
7b7a9830
Commit
7b7a9830
authored
Aug 07, 2018
by
Marvin Scholz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup: tests Makefile.am
parent
5136d935
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
16 deletions
+47
-16
.gitignore
.gitignore
+7
-2
tests/Makefile.am
tests/Makefile.am
+40
-14
No files found.
.gitignore
View file @
7b7a9830
...
...
@@ -27,13 +27,18 @@ missing
mkinstalldirs
*.tar.gz
config.h.in~
/build-aux
# Ignore test output files
/tests/*.log
/tests/*.trs
# Ignore test compiled binary files
/tests/tests/ctest_*.test
# Ignore test build artifacts
/tests/*.lo
/tests/*.la
/tests/.deps/
/tests/.libs/
/tests/ctest_*_test
# Ignore auxiliary files
/tap-driver.sh
...
...
tests/Makefile.am
View file @
7b7a9830
...
...
@@ -3,24 +3,50 @@
TEST_LOG_DRIVER
=
env
AM_TAP_AWK
=
'
$(AWK)
'
$(SHELL)
\
$(top_srcdir)
/tap-driver.sh
check_PROGRAMS
=
#
# Helper library for TAP tests
#
libice_ctest_la_SOURCES
=
ctest_lib.c ctest_lib.h
noinst_LTLIBRARIES
=
libice_ctest.la
#
# Script-based tests
#
TESTS
=
\
startup.test
\
admin.test
\
ctest_suite.test
\
ctest_resourcematch.test
\
ctest_refobject.test
admin.test
EXTRA_DIST
=
$(TESTS)
#
# Test programs
#
EXTRA_DIST
+=
\
ctest_suite_test_SOURCES
=
ctest_suite.c
ctest_suite_test_LDADD
=
libice_ctest.la
check_PROGRAMS
+=
ctest_suite_test
ctest_resourcematch_test_SOURCES
=
ctest_resourcematch.c ../src/resourcematch.c
ctest_resourcematch_test_LDADD
=
libice_ctest.la
check_PROGRAMS
+=
ctest_resourcematch_test
ctest_refobject_test_SOURCES
=
ctest_refobject.c ../src/refobject.c
ctest_refobject_test_LDADD
=
libice_ctest.la
\
../src/common/thread/libicethread.la
\
../src/common/avl/libiceavl.la
check_PROGRAMS
+=
ctest_refobject_test
#
# Extra files needed by tests
#
EXTRA_DIST
=
$(TESTS)
\
icecast.xml
\
on-connect.sh
check_PROGRAMS
=
ctest_suite.test ctest_resourcematch.test ctest_refobject.test
noinst_HEADERS
=
ctest_lib.h
ctest_suite_test_SOURCES
=
ctest_suite.c ctest_lib.c
ctest_resourcematch_test_SOURCES
=
ctest_resourcematch.c ctest_lib.c ../src/resourcematch.c
ctest_refobject_test_SOURCES
=
ctest_refobject.c ctest_lib.c ../src/refobject.c
ctest_refobject_test_DEPENDENCIES
=
../src/common/thread/libicethread.la ../src/common/avl/libiceavl.la
ctest_refobject_test_LDADD
=
$(ctest_refobject_test_DEPENDENCIES)
TESTS
+=
$(check_PROGRAMS)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment