003 File Manager
Current Path:
/usr/src/contrib/apr-util/test
usr
/
src
/
contrib
/
apr-util
/
test
/
📁
..
📄
Makefile.in
(2.97 KB)
📄
Makefile.win
(4.53 KB)
📄
NWGNUaputest
(4.86 KB)
📄
NWGNUmakefile
(4.27 KB)
📄
abts.c
(9.87 KB)
📄
abts.h
(3.26 KB)
📄
abts_tests.h
(1.32 KB)
📁
data
📄
dbd.c
(13.91 KB)
📄
nw_misc.c
(417 B)
📄
test_apu.h
(2.86 KB)
📄
testall.dsw
(10.12 KB)
📄
testbuckets.c
(16.62 KB)
📄
testcrypto.c
(54.67 KB)
📄
testdate.c
(6.86 KB)
📄
testdbd.c
(6.85 KB)
📄
testdbm.c
(6.02 KB)
📄
testldap.c
(6.93 KB)
📄
testmd4.c
(4.31 KB)
📄
testmd5.c
(3.79 KB)
📄
testmemcache.c
(18.59 KB)
📄
testpass.c
(6.37 KB)
📄
testqueue.c
(3.4 KB)
📄
testredis.c
(16.35 KB)
📄
testreslist.c
(7.75 KB)
📄
testrmm.c
(5.37 KB)
📄
testsiphash.c
(5.35 KB)
📄
teststrmatch.c
(3.11 KB)
📄
testuri.c
(10.09 KB)
📄
testutil.c
(1.82 KB)
📄
testutil.h
(2.39 KB)
📄
testuuid.c
(1.67 KB)
📄
testxlate.c
(4.09 KB)
📄
testxml.c
(5.73 KB)
Editing: testutil.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. */ #include <stdio.h> #include <stdlib.h> #include "abts.h" #include "testutil.h" #include "apr_pools.h" apr_pool_t *p; void apr_assert_success(abts_case* tc, const char* context, apr_status_t rv) { if (rv == APR_ENOTIMPL) { ABTS_NOT_IMPL(tc, context); } if (rv != APR_SUCCESS) { char buf[STRING_MAX], ebuf[128]; sprintf(buf, "%s (%d): %s\n", context, rv, apr_strerror(rv, ebuf, sizeof ebuf)); ABTS_FAIL(tc, buf); } } void apr_assert_failure(abts_case* tc, const char* context, apr_status_t rv, int lineno) { if (rv == APR_ENOTIMPL) { abts_not_impl(tc, context, lineno); } else if (rv == APR_SUCCESS) { char buf[STRING_MAX]; sprintf(buf, "%s (%d): expected failure, got success\n", context, rv); abts_fail(tc, buf, lineno); } } void initialize(void) { if (apr_initialize() != APR_SUCCESS) { abort(); } atexit(apr_terminate); apr_pool_create(&p, NULL); apr_pool_tag(p, "apr-util global test pool"); }
Upload File
Create Folder