From 9289e25b254e5053effdddbe27e63077d6461491 Mon Sep 17 00:00:00 2001 From: Ryan Leavengood Date: Mon, 11 Dec 2006 21:11:27 +0000 Subject: [PATCH] Changed a few references to OpenBeOS in the unit tester to Haiku. There are still tons of OpenBeOS references in various source files (especially in comments), but this was more overt. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19461 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/UnitTester.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tests/UnitTester.cpp b/src/tests/UnitTester.cpp index 38994d57ac..a26e80d9fc 100644 --- a/src/tests/UnitTester.cpp +++ b/src/tests/UnitTester.cpp @@ -9,7 +9,7 @@ int main(int argc, char *argv[]) { - UnitTesterShell shell("OpenBeOS Unit Testing Framework", new SemaphoreSyncObject); + UnitTesterShell shell("Haiku Unit Testing Framework", new SemaphoreSyncObject); // ##### Add test suites for statically linked tests here ##### // shell.AddTest( "Example", ExampleTest::Suite() ); @@ -38,13 +38,13 @@ UnitTesterShell::PrintDescription(int argc, char *argv[]) { cout << endl; cout << "This program is the central testing framework for the purpose" << endl; cout << "of testing and verifying the various kits, classes, functions," << endl; - cout << "and the like that comprise OpenBeOS." << endl; + cout << "and the like that comprise Haiku." << endl; } void UnitTesterShell::PrintValidArguments() { BTestShell::PrintValidArguments(); - cout << indent << "-obos Runs tests linked against our OpenBeOS libraries (*default*)" << endl; + cout << indent << "-haiku Runs tests linked against our Haiku libraries (*default*)" << endl; cout << indent << "-r5 Runs tests linked against Be Inc.'s R5 libraries (instead" << endl; cout << indent << " of our libraries) for the sake of comparison." << endl; }