~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/archive_test.cc

  • Committer: Lee Bieber
  • Date: 2010-11-14 23:15:42 UTC
  • mfrom: (1929.1.42 warning-stack-frame)
  • Revision ID: kalebral@gmail.com-20101114231542-fnnu6ydd2p17n582
Merge Monty - fix bug 672372: some functions use > 32k stack

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <fcntl.h>
23
23
#include <unistd.h>
24
24
#include <cstdlib>
 
25
#include <memory>
25
26
 
26
27
#if TIME_WITH_SYS_TIME
27
28
# include <sys/time.h>
34
35
# endif
35
36
#endif
36
37
 
 
38
#include <boost/scoped_ptr.hpp>
 
39
 
37
40
#define COMMENT_STRING "Your bases"
38
41
#define FRM_STRING "My bases"
39
42
#define TEST_FILENAME "test.az"
111
114
  int error;
112
115
  unsigned int x;
113
116
  int written_rows= 0;
114
 
  azio_stream writer_handle, reader_handle;
 
117
  boost::scoped_ptr<azio_stream> writer_handle_ap(new azio_stream);
 
118
  boost::scoped_ptr<azio_stream> reader_handle_ap(new azio_stream);
 
119
  azio_stream &writer_handle= *writer_handle_ap.get();
 
120
  azio_stream &reader_handle= *reader_handle_ap.get();
115
121
 
116
122
  memcpy(test_string, TEST_STRING_INIT, 1024);
117
123
 
285
291
int size_test(uint64_t length, uint64_t rows_to_test_for,
286
292
              az_method method)
287
293
{
288
 
  azio_stream writer_handle, reader_handle;
 
294
  boost::scoped_ptr<azio_stream> writer_handle_ap(new azio_stream);
 
295
  boost::scoped_ptr<azio_stream> reader_handle_ap(new azio_stream);
 
296
  azio_stream &writer_handle= *writer_handle_ap.get();
 
297
  azio_stream &reader_handle= *reader_handle_ap.get();
289
298
  uint64_t write_length;
290
299
  uint64_t read_length;
291
300
  uint64_t count;