- Timestamp:
- 09/23/08 15:58:49 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp
r8399 r8921 30 30 #include "UnitTestFramework.h" 31 31 #include "performance.h" 32 #include "MultiThreadRead.h" 32 33 33 34 #include <iostream> … … 543 544 while (arguments.read("quat")) printQuatTest = true; 544 545 546 int numReadThreads = 0; 547 while (arguments.read("read-threads", numReadThreads)) {} 548 545 549 bool printPolytopeTest = false; 546 550 while (arguments.read("polytope")) printPolytopeTest = true; … … 623 627 } 624 628 629 if (numReadThreads>0) 630 { 631 runMultiThreadReadTests(numReadThreads); 632 return 0; 633 } 634 635 625 636 if (printPolytopeTest) 626 637 {
