oap_test.c: rename to avoid clash with libosmocore oap_test.c

Rename to oap_client_test.c, which is also a more accurate name.

Related: OS#1592
Change-Id: I3ca333141a15940df07a1ae77a30bc54885db41f
This commit is contained in:
Neels Hofmeyr 2016-12-09 00:05:50 +01:00 committed by Harald Welte
parent 2c1f8c8ceb
commit 28786bb209
4 changed files with 7 additions and 7 deletions

View File

@ -11,22 +11,22 @@ AM_CFLAGS = \
$(NULL)
EXTRA_DIST = \
oap_test.ok \
oap_client_test.ok \
$(NULL)
if HAVE_LIBGTP
if HAVE_LIBCARES
noinst_PROGRAMS = \
oap_test \
oap_client_test \
$(NULL)
endif
endif
oap_test_SOURCES = \
oap_test.c \
oap_client_test_SOURCES = \
oap_client_test.c \
$(NULL)
oap_test_LDADD = \
oap_client_test_LDADD = \
$(top_builddir)/src/gprs/gprs_utils.o \
$(top_builddir)/src/libcommon/libcommon.a \
$(LIBOSMOCORE_LIBS) \

View File

@ -107,8 +107,8 @@ AT_CLEANUP
AT_SETUP([oap])
AT_KEYWORDS([oap])
AT_CHECK([test "$enable_oap_test" != no || exit 77])
cat $abs_srcdir/oap/oap_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/oap/oap_test], [], [expout], [ignore])
cat $abs_srcdir/oap/oap_client_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/oap/oap_client_test], [], [expout], [ignore])
AT_CLEANUP
AT_SETUP([gtphub])