change directory name test to tests

This commit is contained in:
Sukchan Lee 2019-06-11 14:26:04 +09:00
parent 56567fec12
commit 7bc245028a
28 changed files with 12 additions and 12 deletions

View File

@ -18,7 +18,7 @@
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = build/git-version-gen .version README.md LICENSE EXTRA_DIST = build/git-version-gen .version README.md LICENSE
SUBDIRS = lib src support test SUBDIRS = lib src support tests
bin_PROGRAMS = nextepc-mmed nextepc-hssd nextepc-sgwd nextepc-pgwd nextepc-pcrfd nextepc-epcd bin_PROGRAMS = nextepc-mmed nextepc-hssd nextepc-sgwd nextepc-pgwd nextepc-pcrfd nextepc-epcd

View File

@ -24,7 +24,7 @@ AC_INIT([NextEPC],
AC_CONFIG_AUX_DIR([build]) AC_CONFIG_AUX_DIR([build])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_TESTDIR(test) AC_CONFIG_TESTDIR(tests)
AC_CANONICAL_HOST AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([1.10 -Wall -Werror foreign subdir-objects]) AM_INIT_AUTOMAKE([1.10 -Wall -Werror foreign subdir-objects])
@ -211,10 +211,10 @@ AC_CONFIG_FILES([support/logrotate/Makefile])
AC_CONFIG_FILES([support/newsyslog/nextepc.conf]) AC_CONFIG_FILES([support/newsyslog/nextepc.conf])
AC_CONFIG_FILES([support/newsyslog/Makefile]) AC_CONFIG_FILES([support/newsyslog/Makefile])
AC_CONFIG_FILES([support/Makefile]) AC_CONFIG_FILES([support/Makefile])
AC_CONFIG_FILES([test/sample.conf]) AC_CONFIG_FILES([tests/sample.conf])
AC_CONFIG_FILES([test/sample-simple.conf]) AC_CONFIG_FILES([tests/sample-simple.conf])
AC_CONFIG_FILES([test/sample-volte.conf]) AC_CONFIG_FILES([tests/sample-volte.conf])
AC_CONFIG_FILES([test/Makefile]) AC_CONFIG_FILES([tests/Makefile])
AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([Makefile])
AC_OUTPUT AC_OUTPUT

View File

@ -2,7 +2,7 @@
bin_PROGRAMS = testunit testsimple testcomplex testvolte bin_PROGRAMS = testunit testsimple testcomplex testvolte
configdir = ${sysconfdir}/nextepc/test configdir = ${sysconfdir}/nextepc/tests
config_DATA = sample.conf sample-simple.conf sample-volte.conf config_DATA = sample.conf sample-simple.conf sample-volte.conf
testunit_SOURCES = \ testunit_SOURCES = \
@ -46,7 +46,7 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/lib/asn1c/common \ -I$(top_srcdir)/lib/asn1c/common \
-I$(top_srcdir)/lib/asn1c/s1ap \ -I$(top_srcdir)/lib/asn1c/s1ap \
-I$(top_srcdir)/lib/@FREEDIAMETER_DIR@/include \ -I$(top_srcdir)/lib/@FREEDIAMETER_DIR@/include \
-I$(top_srcdir)/test/common \ -I$(top_srcdir)/tests/common \
$(NULL) $(NULL)
AM_CFLAGS = \ AM_CFLAGS = \

View File

@ -4,7 +4,7 @@ AT_BANNER([NextEPC Amazing Tests.])
AT_SETUP([unit]) AT_SETUP([unit])
AT_KEYWORDS([unit]) AT_KEYWORDS([unit])
AT_CHECK_UNQUOTED( AT_CHECK_UNQUOTED(
[$abs_top_builddir/test/testunit -f $abs_top_builddir/test/sample.conf], [$abs_top_builddir/tests/testunit -f $abs_top_builddir/tests/sample.conf],
[0], [dnl [0], [dnl
s1ap-message-test : SUCCESS s1ap-message-test : SUCCESS
nas-message-test : SUCCESS nas-message-test : SUCCESS
@ -18,7 +18,7 @@ AT_CLEANUP
AT_SETUP([simple]) AT_SETUP([simple])
AT_KEYWORDS([simple]) AT_KEYWORDS([simple])
AT_CHECK_UNQUOTED( AT_CHECK_UNQUOTED(
[$abs_top_builddir/test/testsimple -f $abs_top_builddir/test/sample-simple.conf], [$abs_top_builddir/tests/testsimple -f $abs_top_builddir/tests/sample-simple.conf],
[0], [dnl [0], [dnl
mnc3-test : SUCCESS mnc3-test : SUCCESS
All tests passed. All tests passed.
@ -28,7 +28,7 @@ AT_CLEANUP
AT_SETUP([complex]) AT_SETUP([complex])
AT_KEYWORDS([complex]) AT_KEYWORDS([complex])
AT_CHECK_UNQUOTED( AT_CHECK_UNQUOTED(
[$abs_top_builddir/test/testcomplex -f $abs_top_builddir/test/sample.conf], [$abs_top_builddir/tests/testcomplex -f $abs_top_builddir/tests/sample.conf],
[0], [dnl [0], [dnl
s1setup-test : SUCCESS s1setup-test : SUCCESS
attach-test : SUCCESS attach-test : SUCCESS
@ -41,7 +41,7 @@ AT_CLEANUP
AT_SETUP([volte]) AT_SETUP([volte])
AT_KEYWORDS([volte]) AT_KEYWORDS([volte])
AT_CHECK_UNQUOTED( AT_CHECK_UNQUOTED(
[$abs_top_builddir/test/testvolte -f $abs_top_builddir/test/sample-volte.conf], [$abs_top_builddir/tests/testvolte -f $abs_top_builddir/tests/sample-volte.conf],
[0], [dnl [0], [dnl
volte-test : SUCCESS volte-test : SUCCESS
All tests passed. All tests passed.