main.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <ArrayList.hpp>
  15. #include <NdbOut.hpp>
  16. #include <NdbTick.h>
  17. #include <NdbMain.h>
  18. #include "arrayListTest.cpp"
  19. #include "arrayPoolTest.cpp"
  20. NDB_COMMAND(al_test, "al_test", "al_test", "al_test", 65535)
  21. {
  22.   NdbMem_Create();
  23.   srand(NdbTick_CurrentMillisecond());
  24. #if 1
  25.   ndbout << endl << endl << "-- Testing basic basic seize/release" << endl;
  26.   ArrayListTest::tryList0(10);
  27.   ndbout << endl << endl << "-- Testing basic seize/release" << endl;
  28.   ArrayListTest::tryList1(1000, 1000);
  29.   ndbout << endl << endl << "-- Testing that seize returns RNIL" 
  30.  << endl;
  31.   ArrayListTest::tryList1(10, 1000000);
  32.   
  33.   ndbout << endl << endl << "-- Testing access out of array" << endl;
  34.   ArrayListTest::tryList2(1000, 100000, 5);
  35. #endif
  36. #if 1
  37.   ndbout << endl << endl << "-- Testing basic seize/release" << endl;
  38.   ArrayPoolTest::tryPool1(1000, 1000);
  39.   ndbout << endl << endl << "-- Testing that seize returns RNIL" 
  40.  << endl;
  41.   ArrayPoolTest::tryPool1(10, 1000000);
  42.   
  43.   ndbout << endl << endl << "-- Testing access out of array" << endl;
  44.   ArrayPoolTest::tryPool2(1000, 100000, 5);
  45.   ndbout << endl << endl << "-- Testing releasing none seized element" << endl;
  46.   ArrayPoolTest::tryPool3(1000, 5);
  47. #endif
  48. }
  49. void
  50. ErrorReporter::handleBlockAssert(int line)
  51. {
  52.   ndbout << "ErrorReporter::handleAssert activated - " 
  53.  << " line= " << line << endl;
  54.   //assert(0);
  55. }