blob: 958f69d1287293a4f982e09233d9caee9fddeb6c [file] [log] [blame]
/*
* 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 <qpid/dispatch/buffer.h>
#include <qpid/dispatch/alloc.h>
void qd_log_initialize(void);
void qd_log_finalize(void);
void qd_error_initialize();
int message_tests();
int field_tests();
int parse_tests();
int buffer_tests();
int main(int argc, char** argv)
{
size_t buffer_size = 512;
if (argc > 1) {
buffer_size = atoi(argv[1]);
if (buffer_size < 1)
return 1;
}
qd_alloc_initialize();
qd_log_initialize();
qd_error_initialize();
qd_buffer_set_size(buffer_size);
int result = 0;
result += message_tests();
result += field_tests();
result += parse_tests();
result += buffer_tests();
qd_log_finalize();
qd_alloc_finalize();
return result;
}