1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
|
/* Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
#include <my_global.h>
#include <my_pthread.h>
#include <string.h> // strncpy
#include <pfs_instr_class.h>
#include <pfs_instr.h>
#include <pfs_global.h>
#include <tap.h>
#include "stub_server_misc.h"
void test_no_registration()
{
int rc;
PFS_sync_key key;
PFS_thread_key thread_key;
PFS_file_key file_key;
PFS_socket_key socket_key;
PFS_mutex_class *mutex;
PFS_rwlock_class *rwlock;
PFS_cond_class *cond;
PFS_thread_class *thread;
PFS_file_class *file;
PFS_socket_class *socket;
/* PFS_table_share *table; */
rc= init_sync_class(0, 0, 0);
ok(rc == 0, "zero init (sync)");
rc= init_thread_class(0);
ok(rc == 0, "zero init (thread)");
rc= init_file_class(0);
ok(rc == 0, "zero init (file)");
rc= init_socket_class(0);
ok(rc == 0, "zero init (socket)");
rc= init_table_share(0);
ok(rc == 0, "zero init (table)");
key= register_mutex_class("FOO", 3, 0);
ok(key == 0, "no mutex registered");
key= register_mutex_class("BAR", 3, 0);
ok(key == 0, "no mutex registered");
key= register_mutex_class("FOO", 3, 0);
ok(key == 0, "no mutex registered");
key= register_rwlock_class("FOO", 3, 0);
ok(key == 0, "no rwlock registered");
key= register_rwlock_class("BAR", 3, 0);
ok(key == 0, "no rwlock registered");
key= register_rwlock_class("FOO", 3, 0);
ok(key == 0, "no rwlock registered");
key= register_cond_class("FOO", 3, 0);
ok(key == 0, "no cond registered");
key= register_cond_class("BAR", 3, 0);
ok(key == 0, "no cond registered");
key= register_cond_class("FOO", 3, 0);
ok(key == 0, "no cond registered");
thread_key= register_thread_class("FOO", 3, 0);
ok(thread_key == 0, "no thread registered");
thread_key= register_thread_class("BAR", 3, 0);
ok(thread_key == 0, "no thread registered");
thread_key= register_thread_class("FOO", 3, 0);
ok(thread_key == 0, "no thread registered");
file_key= register_file_class("FOO", 3, 0);
ok(file_key == 0, "no file registered");
file_key= register_file_class("BAR", 3, 0);
ok(file_key == 0, "no file registered");
file_key= register_file_class("FOO", 3, 0);
ok(file_key == 0, "no file registered");
socket_key= register_socket_class("FOO", 3, 0);
ok(socket_key == 0, "no socket registered");
socket_key= register_socket_class("BAR", 3, 0);
ok(socket_key == 0, "no socket registered");
socket_key= register_socket_class("FOO", 3, 0);
ok(socket_key == 0, "no socket registered");
#ifdef LATER
PFS_thread fake_thread;
fake_thread.m_table_share_hash_pins= NULL;
table= find_or_create_table_share(& fake_thread, false, "foo_db", 6, "foo_table", 9);
ok(table == NULL, "not created");
table= find_or_create_table_share(& fake_thread, false, "bar_db", 6, "bar_table", 9);
ok(table == NULL, "not created");
table= find_or_create_table_share(& fake_thread, false, "foo_db", 6, "foo_table", 9);
ok(table == NULL, "not created");
#endif
mutex= find_mutex_class(0);
ok(mutex == NULL, "no mutex key 0");
mutex= find_mutex_class(1);
ok(mutex == NULL, "no mutex key 1");
mutex= find_mutex_class(9999);
ok(mutex == NULL, "no mutex key 9999");
rwlock= find_rwlock_class(0);
ok(rwlock == NULL, "no rwlock key 0");
rwlock= find_rwlock_class(1);
ok(rwlock == NULL, "no rwlock key 1");
rwlock= find_rwlock_class(9999);
ok(rwlock == NULL, "no rwlock key 9999");
cond= find_cond_class(0);
ok(cond == NULL, "no cond key 0");
cond= find_cond_class(1);
ok(cond == NULL, "no cond key 1");
cond= find_cond_class(9999);
ok(cond == NULL, "no cond key 9999");
thread= find_thread_class(0);
ok(thread == NULL, "no thread key 0");
thread= find_thread_class(1);
ok(thread == NULL, "no thread key 1");
thread= find_thread_class(9999);
ok(thread == NULL, "no thread key 9999");
file= find_file_class(0);
ok(file == NULL, "no file key 0");
file= find_file_class(1);
ok(file == NULL, "no file key 1");
file= find_file_class(9999);
ok(file == NULL, "no file key 9999");
socket= find_socket_class(0);
ok(socket == NULL, "no socket key 0");
socket= find_socket_class(1);
ok(socket == NULL, "no socket key 1");
socket= find_socket_class(9999);
ok(socket == NULL, "no socket key 9999");
cleanup_sync_class();
cleanup_thread_class();
cleanup_file_class();
cleanup_socket_class();
cleanup_table_share();
}
void test_mutex_registration()
{
int rc;
PFS_sync_key key;
PFS_mutex_class *mutex;
rc= init_sync_class(5, 0, 0);
ok(rc == 0, "room for 5 mutex");
key= register_mutex_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_mutex_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_mutex_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_mutex_class("M-3", 3, 0);
ok(key == 3, "M-3 registered");
key= register_mutex_class("M-4", 3, 0);
ok(key == 4, "M-4 registered");
key= register_mutex_class("M-5", 3, 0);
ok(key == 5, "M-5 registered");
ok(mutex_class_lost == 0, "lost nothing");
key= register_mutex_class("M-6", 3, 0);
ok(key == 0, "M-6 not registered");
ok(mutex_class_lost == 1, "lost 1 mutex");
key= register_mutex_class("M-7", 3, 0);
ok(key == 0, "M-7 not registered");
ok(mutex_class_lost == 2, "lost 2 mutex");
key= register_mutex_class("M-3", 3, 0);
ok(key == 3, "M-3 re registered");
ok(mutex_class_lost == 2, "lost 2 mutex");
key= register_mutex_class("M-5", 3, 0);
ok(key == 5, "M-5 re registered");
ok(mutex_class_lost == 2, "lost 2 mutex");
mutex= find_mutex_class(0);
ok(mutex == NULL, "no key 0");
mutex= find_mutex_class(3);
ok(mutex != NULL, "found key 3");
ok(strncmp(mutex->m_name, "M-3", 3) == 0, "key 3 is M-3");
ok(mutex->m_name_length == 3, "name length 3");
mutex= find_mutex_class(9999);
ok(mutex == NULL, "no key 9999");
cleanup_sync_class();
}
void test_rwlock_registration()
{
int rc;
PFS_sync_key key;
PFS_rwlock_class *rwlock;
rc= init_sync_class(0, 5, 0);
ok(rc == 0, "room for 5 rwlock");
key= register_rwlock_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_rwlock_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_rwlock_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_rwlock_class("RW-3", 4, 0);
ok(key == 3, "RW-3 registered");
key= register_rwlock_class("RW-4", 4, 0);
ok(key == 4, "RW-4 registered");
key= register_rwlock_class("RW-5", 4, 0);
ok(key == 5, "RW-5 registered");
key= register_rwlock_class("RW-6", 4, 0);
ok(key == 0, "RW-6 not registered");
key= register_rwlock_class("RW-7", 4, 0);
ok(key == 0, "RW-7 not registered");
key= register_rwlock_class("RW-3", 4, 0);
ok(key == 3, "RW-3 re registered");
key= register_rwlock_class("RW-5", 4, 0);
ok(key == 5, "RW-5 re registered");
rwlock= find_rwlock_class(0);
ok(rwlock == NULL, "no key 0");
rwlock= find_rwlock_class(3);
ok(rwlock != NULL, "found key 3");
ok(strncmp(rwlock->m_name, "RW-3", 4) == 0, "key 3 is RW-3");
ok(rwlock->m_name_length == 4, "name length 4");
rwlock= find_rwlock_class(9999);
ok(rwlock == NULL, "no key 9999");
cleanup_sync_class();
}
void test_cond_registration()
{
int rc;
PFS_sync_key key;
PFS_cond_class *cond;
rc= init_sync_class(0, 0, 5);
ok(rc == 0, "room for 5 cond");
key= register_cond_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_cond_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_cond_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_cond_class("C-3", 3, 0);
ok(key == 3, "C-3 registered");
key= register_cond_class("C-4", 3, 0);
ok(key == 4, "C-4 registered");
key= register_cond_class("C-5", 3, 0);
ok(key == 5, "C-5 registered");
key= register_cond_class("C-6", 3, 0);
ok(key == 0, "C-6 not registered");
key= register_cond_class("C-7", 3, 0);
ok(key == 0, "C-7 not registered");
key= register_cond_class("C-3", 3, 0);
ok(key == 3, "C-3 re registered");
key= register_cond_class("C-5", 3, 0);
ok(key == 5, "C-5 re registered");
cond= find_cond_class(0);
ok(cond == NULL, "no key 0");
cond= find_cond_class(3);
ok(cond != NULL, "found key 3");
ok(strncmp(cond->m_name, "C-3", 3) == 0, "key 3 is C-3");
ok(cond->m_name_length == 3, "name length 3");
cond= find_cond_class(9999);
ok(cond == NULL, "no key 9999");
cleanup_sync_class();
}
void test_thread_registration()
{
int rc;
PFS_thread_key key;
PFS_thread_class *thread;
rc= init_thread_class(5);
ok(rc == 0, "room for 5 thread");
key= register_thread_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_thread_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_thread_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_thread_class("Thread-3", 8, 0);
ok(key == 3, "Thread-3 registered");
key= register_thread_class("Thread-4", 8, 0);
ok(key == 4, "Thread-4 registered");
key= register_thread_class("Thread-5", 8, 0);
ok(key == 5, "Thread-5 registered");
key= register_thread_class("Thread-6", 8, 0);
ok(key == 0, "Thread-6 not registered");
key= register_thread_class("Thread-7", 8, 0);
ok(key == 0, "Thread-7 not registered");
key= register_thread_class("Thread-3", 8, 0);
ok(key == 3, "Thread-3 re registered");
key= register_thread_class("Thread-5", 8, 0);
ok(key == 5, "Thread-5 re registered");
thread= find_thread_class(0);
ok(thread == NULL, "no key 0");
thread= find_thread_class(3);
ok(thread != NULL, "found key 3");
ok(strncmp(thread->m_name, "Thread-3", 8) == 0, "key 3 is Thread-3");
ok(thread->m_name_length == 8, "name length 8");
thread= find_thread_class(9999);
ok(thread == NULL, "no key 9999");
cleanup_thread_class();
}
void test_file_registration()
{
int rc;
PFS_file_key key;
PFS_file_class *file;
rc= init_file_class(5);
ok(rc == 0, "room for 5 file");
key= register_file_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_file_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_file_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_file_class("File-3", 6, 0);
ok(key == 3, "File-3 registered");
key= register_file_class("File-4", 6, 0);
ok(key == 4, "File-4 registered");
key= register_file_class("File-5", 6, 0);
ok(key == 5, "File-5 registered");
key= register_file_class("File-6", 6, 0);
ok(key == 0, "File-6 not registered");
key= register_file_class("File-7", 6, 0);
ok(key == 0, "File-7 not registered");
key= register_file_class("File-3", 6, 0);
ok(key == 3, "File-3 re registered");
key= register_file_class("File-5", 6, 0);
ok(key == 5, "File-5 re registered");
file= find_file_class(0);
ok(file == NULL, "no key 0");
file= find_file_class(3);
ok(file != NULL, "found key 3");
ok(strncmp(file->m_name, "File-3", 6) == 0, "key 3 is File-3");
ok(file->m_name_length == 6, "name length 6");
file= find_file_class(9999);
ok(file == NULL, "no key 9999");
cleanup_file_class();
}
void test_socket_registration()
{
int rc;
PFS_socket_key key;
PFS_socket_class *socket;
rc= init_socket_class(5);
ok(rc == 0, "room for 5 socket");
key= register_socket_class("FOO", 3, 0);
ok(key == 1, "foo registered");
key= register_socket_class("BAR", 3, 0);
ok(key == 2, "bar registered");
key= register_socket_class("FOO", 3, 0);
ok(key == 1, "foo re registered");
key= register_socket_class("Socket-3", 8, 0);
ok(key == 3, "Socket-3 registered");
key= register_socket_class("Socket-4", 8, 0);
ok(key == 4, "Socket-4 registered");
key= register_socket_class("Socket-5", 8, 0);
ok(key == 5, "Socket-5 registered");
ok(socket_class_lost == 0, "lost nothing");
key= register_socket_class("Socket-6", 8, 0);
ok(key == 0, "Socket-6 not registered");
ok(socket_class_lost == 1, "lost 1 socket");
key= register_socket_class("Socket-7", 8, 0);
ok(key == 0, "Socket-7 not registered");
ok(socket_class_lost == 2, "lost 2 socket");
key= register_socket_class("Socket-3", 8, 0);
ok(key == 3, "Socket-3 re registered");
ok(socket_class_lost == 2, "lost 2 socket");
key= register_socket_class("Socket-5", 8, 0);
ok(key == 5, "Socket-5 re registered");
ok(socket_class_lost == 2, "lost 2 socket");
socket= find_socket_class(0);
ok(socket == NULL, "no key 0");
socket= find_socket_class(3);
ok(socket != NULL, "found key 3");
ok(strncmp(socket->m_name, "Socket-3", 8) == 0, "key 3 is Socket-3");
ok(socket->m_name_length == 8, "name length 3");
socket= find_socket_class(9999);
ok(socket == NULL, "no key 9999");
cleanup_socket_class();
}
void test_table_registration()
{
#ifdef LATER
PFS_table_share *table_share;
PFS_table_share *table_share_2;
PFS_thread fake_thread;
fake_thread.m_table_share_hash_pins= NULL;
table_share_lost= 0;
table_share= find_or_create_table_share(& fake_thread, false, "db1", 3, "t1", 2);
ok(table_share == NULL, "not created");
ok(table_share_lost == 1, "lost the table");
table_share_lost= 0;
init_table_share(5);
init_table_share_hash();
table_share= find_or_create_table_share(& fake_thread, false, "db1", 3, "t1", 2);
ok(table_share != NULL, "created db1.t1");
ok(table_share_lost == 0, "not lost");
table_share_2= find_or_create_table_share(& fake_thread, false, "db1", 3, "t1", 2);
ok(table_share_2 != NULL, "found db1.t1");
ok(table_share_lost == 0, "not lost");
ok(table_share == table_share_2, "same table");
table_share_2= find_or_create_table_share(& fake_thread, false, "db1", 3, "t2", 2);
ok(table_share_2 != NULL, "created db1.t2");
ok(table_share_lost == 0, "not lost");
table_share_2= find_or_create_table_share(& fake_thread, false, "db2", 3, "t1", 2);
ok(table_share_2 != NULL, "created db2.t1");
ok(table_share_lost == 0, "not lost");
table_share_2= find_or_create_table_share(& fake_thread, false, "db2", 3, "t2", 2);
ok(table_share_2 != NULL, "created db2.t2");
ok(table_share_lost == 0, "not lost");
table_share_2= find_or_create_table_share(& fake_thread, false, "db3", 3, "t3", 2);
ok(table_share_2 != NULL, "created db3.t3");
ok(table_share_lost == 0, "not lost");
table_share_2= find_or_create_table_share(& fake_thread, false, "db4", 3, "t4", 2);
ok(table_share_2 == NULL, "lost db4.t4");
ok(table_share_lost == 1, "lost");
table_share_lost= 0;
table_share_2= find_or_create_table_share(& fake_thread, false, "db1", 3, "t2", 2);
ok(table_share_2 != NULL, "found db1.t2");
ok(table_share_lost == 0, "not lost");
ok(strncmp(table_share_2->m_schema_name, "db1", 3) == 0 , "schema db1");
ok(table_share_2->m_schema_name_length == 3, "length 3");
ok(strncmp(table_share_2->m_table_name, "t2", 2) == 0 , "table t2");
ok(table_share_2->m_table_name_length == 2, "length 2");
cleanup_table_share_hash();
cleanup_table_share();
#endif
}
#ifdef LATER
void set_wait_stat(PFS_instr_class *klass)
{
PFS_single_stat *stat;
stat= & global_instr_class_waits_array[klass->m_event_name_index];
stat->m_count= 12;
stat->m_min= 5;
stat->m_max= 120;
stat->m_sum= 999;
}
bool is_empty_stat(PFS_instr_class *klass)
{
PFS_single_stat *stat;
stat= & global_instr_class_waits_array[klass->m_event_name_index];
if (stat->m_count != 0)
return false;
if (stat->m_min != (ulonglong) -1)
return false;
if (stat->m_max != 0)
return false;
if (stat->m_sum != 0)
return false;
return true;
}
#endif
void test_instruments_reset()
{
int rc;
PFS_sync_key key;
PFS_file_key file_key;
PFS_socket_key socket_key;
PFS_mutex_class *mutex_1;
PFS_mutex_class *mutex_2;
PFS_mutex_class *mutex_3;
PFS_rwlock_class *rwlock_1;
PFS_rwlock_class *rwlock_2;
PFS_rwlock_class *rwlock_3;
PFS_cond_class *cond_1;
PFS_cond_class *cond_2;
PFS_cond_class *cond_3;
PFS_file_class *file_1;
PFS_file_class *file_2;
PFS_file_class *file_3;
PFS_socket_class *socket_1;
PFS_socket_class *socket_2;
PFS_socket_class *socket_3;
rc= init_sync_class(3, 3, 3);
ok(rc == 0, "init (sync)");
rc= init_thread_class(3);
ok(rc == 0, "init (thread)");
rc= init_file_class(3);
ok(rc == 0, "init (file)");
rc= init_socket_class(3);
ok(rc == 0, "init (socket)");
key= register_mutex_class("M-1", 3, 0);
ok(key == 1, "mutex registered");
key= register_mutex_class("M-2", 3, 0);
ok(key == 2, "mutex registered");
key= register_mutex_class("M-3", 3, 0);
ok(key == 3, "mutex registered");
key= register_rwlock_class("RW-1", 4, 0);
ok(key == 1, "rwlock registered");
key= register_rwlock_class("RW-2", 4, 0);
ok(key == 2, "rwlock registered");
key= register_rwlock_class("RW-3", 4, 0);
ok(key == 3, "rwlock registered");
key= register_cond_class("C-1", 3, 0);
ok(key == 1, "cond registered");
key= register_cond_class("C-2", 3, 0);
ok(key == 2, "cond registered");
key= register_cond_class("C-3", 3, 0);
ok(key == 3, "cond registered");
file_key= register_file_class("F-1", 3, 0);
ok(file_key == 1, "file registered");
file_key= register_file_class("F-2", 3, 0);
ok(file_key == 2, "file registered");
file_key= register_file_class("F-3", 3, 0);
ok(file_key == 3, "file registered");
socket_key= register_socket_class("S-1", 3, 0);
ok(socket_key == 1, "socket registered");
socket_key= register_socket_class("S-2", 3, 0);
ok(socket_key == 2, "socket registered");
socket_key= register_socket_class("S-3", 3, 0);
ok(socket_key == 3, "socket registered");
mutex_1= find_mutex_class(1);
ok(mutex_1 != NULL, "mutex key 1");
mutex_2= find_mutex_class(2);
ok(mutex_2 != NULL, "mutex key 2");
mutex_3= find_mutex_class(3);
ok(mutex_3 != NULL, "mutex key 3");
rwlock_1= find_rwlock_class(1);
ok(rwlock_1 != NULL, "rwlock key 1");
rwlock_2= find_rwlock_class(2);
ok(rwlock_2 != NULL, "rwlock key 2");
rwlock_3= find_rwlock_class(3);
ok(rwlock_3 != NULL, "rwlock key 3");
cond_1= find_cond_class(1);
ok(cond_1 != NULL, "cond key 1");
cond_2= find_cond_class(2);
ok(cond_2 != NULL, "cond key 2");
cond_3= find_cond_class(3);
ok(cond_3 != NULL, "cond key 3");
file_1= find_file_class(1);
ok(file_1 != NULL, "file key 1");
file_2= find_file_class(2);
ok(file_2 != NULL, "file key 2");
file_3= find_file_class(3);
ok(file_3 != NULL, "file key 3");
socket_1= find_socket_class(1);
ok(socket_1 != NULL, "socket key 1");
socket_2= find_socket_class(2);
ok(socket_2 != NULL, "socket key 2");
socket_3= find_socket_class(3);
ok(socket_3 != NULL, "socket key 3");
#ifdef LATER
set_wait_stat(mutex_1);
set_wait_stat(mutex_2);
set_wait_stat(mutex_3);
set_wait_stat(rwlock_1);
set_wait_stat(rwlock_2);
set_wait_stat(rwlock_3);
set_wait_stat(cond_1);
set_wait_stat(cond_2);
set_wait_stat(cond_3);
set_wait_stat(file_1);
set_wait_stat(file_2);
set_wait_stat(file_3);
ok(! is_empty_stat(mutex_1), "mutex_1 stat is populated");
ok(! is_empty_stat(mutex_2), "mutex_2 stat is populated");
ok(! is_empty_stat(mutex_3), "mutex_3 stat is populated");
ok(! is_empty_stat(rwlock_1), "rwlock_1 stat is populated");
ok(! is_empty_stat(rwlock_2), "rwlock_2 stat is populated");
ok(! is_empty_stat(rwlock_3), "rwlock_3 stat is populated");
ok(! is_empty_stat(cond_1), "cond_1 stat is populated");
ok(! is_empty_stat(cond_2), "cond_2 stat is populated");
ok(! is_empty_stat(cond_3), "cond_3 stat is populated");
ok(! is_empty_stat(file_1), "file_1 stat is populated");
ok(! is_empty_stat(file_2), "file_2 stat is populated");
ok(! is_empty_stat(file_3), "file_3 stat is populated");
reset_global_wait_stat();
ok(is_empty_stat(mutex_1), "mutex_1 stat is cleared");
ok(is_empty_stat(mutex_2), "mutex_2 stat is cleared");
ok(is_empty_stat(mutex_3), "mutex_3 stat is cleared");
ok(is_empty_stat(rwlock_1), "rwlock_1 stat is cleared");
ok(is_empty_stat(rwlock_2), "rwlock_2 stat is cleared");
ok(is_empty_stat(rwlock_3), "rwlock_3 stat is cleared");
ok(is_empty_stat(cond_1), "cond_1 stat is cleared");
ok(is_empty_stat(cond_2), "cond_2 stat is cleared");
ok(is_empty_stat(cond_3), "cond_3 stat is cleared");
ok(is_empty_stat(file_1), "file_1 stat is cleared");
ok(is_empty_stat(file_2), "file_2 stat is cleared");
ok(is_empty_stat(file_3), "file_3 stat is cleared");
#endif
cleanup_sync_class();
cleanup_file_class();
cleanup_socket_class();
}
void do_all_tests()
{
PFS_atomic::init();
test_no_registration();
test_mutex_registration();
test_rwlock_registration();
test_cond_registration();
test_thread_registration();
test_file_registration();
test_socket_registration();
test_table_registration();
test_instruments_reset();
PFS_atomic::cleanup();
}
int main(int argc, char **argv)
{
plan(181);
MY_INIT(argv[0]);
do_all_tests();
my_end(0);
return exit_status();
}
|