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
50 lines
1.3 KiB
C
50 lines
1.3 KiB
C
/* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef APR_TEST_INCLUDES
|
|
#define APR_TEST_INCLUDES
|
|
|
|
#include "abts.h"
|
|
#include "testutil.h"
|
|
|
|
const struct testlist {
|
|
abts_suite *(*func)(abts_suite *suite);
|
|
} alltests[] = {
|
|
{testds},
|
|
{testfsm},
|
|
{testtlv},
|
|
{testaes},
|
|
{testsha2},
|
|
{testnetlib},
|
|
#if USE_USRSCTP != 1
|
|
{testsctp},
|
|
#endif
|
|
{testtime},
|
|
{testtimer},
|
|
{testthread},
|
|
{testlock},
|
|
{testatomic},
|
|
{testfile},
|
|
{testfilecopy},
|
|
{testdir},
|
|
{testmsgq},
|
|
{testsleep},
|
|
{testpkbuf},
|
|
{testmisc},
|
|
{testhash},
|
|
};
|
|
|
|
#endif /* APR_TEST_INCLUDES */
|