mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
follows. OpenSUSE OBS - Ubuntu 17.04 i586 failed [ 542s] testnetlib : Line 262: expected <0>, but saw <-1> [ 542s] [10/30 07:48:38.730] ERRR: connect error(111:Connection refused)(proto:6 remote:127.0.0.1 dport:5121 lport:0) (net_lib.c:353) [ 542s] [10/30 07:48:38.730] ERRR: connect error(111:Connection refused)(proto:6 remote:127.0.0.1 dport:5121 lport:0) (net_lib.c:353) [ 542s] [10/30 07:48:38.730] ERRR: connect error(111:Connection refused)(proto:6 remote:127.0.0.1 dport:5121 lport:0) (net_lib.c:353) [ 542s] [10/30 07:48:38.730] ERRR: connect error(111:Connection refused)(proto:6 remote:127.0.0.1 dport:5121 lport:0) (net_lib.c:353) [ 542s] [10/30 07:48:38.730] ASSERT: !(net_sock && buffer). Invalid params [ 542s] (net_lib.c:590) [ 542s] [10/30 07:48:38.730] ASSERT: !(net_sock). net_sock is NULL [ 542s] (net_lib.c:408) [ 542s] [10/30 07:48:38.730] ASSERT: !(net_sock). net_sock is NULL
31 lines
811 B
Makefile
31 lines
811 B
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
bin_PROGRAMS = testcore
|
|
|
|
testcore_SOURCES = \
|
|
abts.c testds.c testfsm.c testnetlib.c testthread.c testtlv.c \
|
|
testaes.c testfile.c testlock.c testatomic.c testsha.c testtime.c \
|
|
testdir.c testfilecopy.c testmsgq.c testsleep.c testtimer.c \
|
|
testpkbuf.c testmisc.c testhash.c \
|
|
abts.h abts_tests.h testutil.c testutil.h
|
|
|
|
if !USRSCTP
|
|
testcore_SOURCES += testsctp.c
|
|
endif
|
|
|
|
testcore_LDADD = \
|
|
$(top_srcdir)/lib/core/src/libcore.la
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/lib/core/include/arch/@OSDIR@ \
|
|
-I$(top_srcdir)/lib/core/include
|
|
|
|
AM_CFLAGS = \
|
|
-Wall -Werror @OSCPPFLAGS@ \
|
|
-Wno-unused-function -Wno-unused-variable
|
|
|
|
TESTS = testcore
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
CLEANFILES = -R data
|
|
MOSTLYCLEANFILES = core *.stackdump
|