~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/table_identifier.cc

  • Committer: Mark Atwood
  • Date: 2011-08-04 16:21:21 UTC
  • mfrom: (2318.9.14 refactor3)
  • Revision ID: me@mark.atwood.name-20110804162121-6b9ay1b1de3yfgvl
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
BOOST_AUTO_TEST_CASE(StaticTmpTable)
53
53
{
54
 
  std::vector<char> pathname;
55
 
 
56
 
  identifier::Table::build_tmptable_filename(pathname);
 
54
  std::string pathname(identifier::Table::build_tmptable_filename());
57
55
 
58
56
  BOOST_REQUIRE_GT(pathname.size(), 0);
59
57
  BOOST_REQUIRE_GT(strlen(&pathname[0]), 0);