[Opal-commits] opal/src/external/quicktest quicktest.h,1.6,1.7
Status: Inactive
Brought to you by:
tylerstreeter
|
From: Olex <ole...@us...> - 2005-12-04 03:27:19
|
Update of /cvsroot/opal/opal/src/external/quicktest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31572/src/external/quicktest Modified Files: quicktest.h Log Message: Updated vc8 project files. MSVC fixes. Index: quicktest.h =================================================================== RCS file: /cvsroot/opal/opal/src/external/quicktest/quicktest.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** quicktest.h 2 Dec 2005 05:47:21 -0000 1.6 --- quicktest.h 4 Dec 2005 03:27:11 -0000 1.7 *************** *** 1,386 **** ! /************************************************************************* ! * * ! * QuickTest * ! * Copyright (C) 2005 * ! * Tyler Streeter tyl...@gm... * ! * All rights reserved. * ! * Web: quicktest.sourceforge.net * ! * * ! * This library is free software; you can redistribute it and/or * ! * modify it under the terms of EITHER: * [...996 lines suppressed...] ! ! #define QT_FAIL(message)\ ! {\ ! recordFailure(_result, __FILE__, __LINE__, (message));\ ! return;\ ! }\ ! ! ! ! /// Prints the given message, followed by a carriage return. ! ! #define QT_PRINT(message)\ ! {\ ! *(quicktest::TestManager::instance().getOutputStream()) << (message)\ ! << std::endl;\ ! }\ ! ! ! #endif ! |