cppunit-devel Mailing List for CppUnit - C++ port of JUnit (Page 29)
Brought to you by:
blep
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
(21) |
May
(96) |
Jun
(109) |
Jul
(42) |
Aug
(6) |
Sep
(106) |
Oct
(60) |
Nov
(20) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(7) |
Feb
(11) |
Mar
(49) |
Apr
(124) |
May
(30) |
Jun
(37) |
Jul
(53) |
Aug
(33) |
Sep
(21) |
Oct
(22) |
Nov
(19) |
Dec
(15) |
2003 |
Jan
(34) |
Feb
(25) |
Mar
(11) |
Apr
(12) |
May
(16) |
Jun
(24) |
Jul
(23) |
Aug
(23) |
Sep
(42) |
Oct
(7) |
Nov
(32) |
Dec
(33) |
2004 |
Jan
(41) |
Feb
(41) |
Mar
(24) |
Apr
(25) |
May
(18) |
Jun
(13) |
Jul
(11) |
Aug
(15) |
Sep
(22) |
Oct
(10) |
Nov
(15) |
Dec
(9) |
2005 |
Jan
(4) |
Feb
(15) |
Mar
(11) |
Apr
(16) |
May
(29) |
Jun
(17) |
Jul
(27) |
Aug
(12) |
Sep
(9) |
Oct
(10) |
Nov
(5) |
Dec
(6) |
2006 |
Jan
(2) |
Feb
(6) |
Mar
(7) |
Apr
(2) |
May
(1) |
Jun
(5) |
Jul
(8) |
Aug
(6) |
Sep
(10) |
Oct
(11) |
Nov
(15) |
Dec
(2) |
2007 |
Jan
(12) |
Feb
(22) |
Mar
(10) |
Apr
(7) |
May
(1) |
Jun
(8) |
Jul
(4) |
Aug
(1) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(7) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Baptiste L. <gai...@fr...> - 2002-11-05 19:10:36
|
If you look at config-msvc6.h, you'll see that's already done. This get ride of most of those warnings, but not all. Hence the question... Baptiste. ----- Original Message ----- From: "Mats Kjällström" <mat...@fr...> To: <cpp...@li...> Sent: Tuesday, November 05, 2002 4:47 PM Subject: [Cppunit-devel] VC++ warning > Hi! I just downloaded the latest cppunit (1.9.10), and read the FAQ supplied > with it. One VC++-related question was about the warning 4786, and since I'm > an avid hater of this message, and have worked out what to do about it, I > thought I'd give you some info. > > The warning is due to a template type becoming too long (> 255 characters), > which happens all the time with nested templates in e.g. STL. There is a way > to get rid of the warning, and that's to add the following line somewhere > early in the compilation (like in the win32-specific part of portability.h). > > #pragma warning(disable:4786) > > Cheers, > / Mats K > |
From: <mat...@fr...> - 2002-11-05 15:47:49
|
Hi! I just downloaded the latest cppunit (1.9.10), and read the FAQ supplied with it. One VC++-related question was about the warning 4786, and since I'm an avid hater of this message, and have worked out what to do about it, I thought I'd give you some info. The warning is due to a template type becoming too long (> 255 characters), which happens all the time with nested templates in e.g. STL. There is a way to get rid of the warning, and that's to add the following line somewhere early in the compilation (like in the win32-specific part of portability.h). #pragma warning(disable:4786) Cheers, / Mats K |
From: Baptiste L. <gai...@fr...> - 2002-11-01 12:30:56
|
CppUnit 2.0 is a full rewrite. I've already done much work on it (based on all my experience on enhancing CppUnit). The resulting core is a lot more cleaner/flexible than the current version CppUnit. I'll try to put it online with some rationale when I have more time. I'm currently focusing on getting the first automated refactoring to work on Refactoring Assistant (http://cpptool.sf.net), so this will have to wait a bit. Concerning the dependency features, I have a hard time seeing how this can be done and remain practical. Does JUnit provides something like that ? Why do you need to document the Unit Test ? Isn't the method name enough ? Baptiste. ----- Original Message ----- From: "Philippe Lavoie" <phi...@ca...> To: "Gary Granger" <gr...@at...>; <cpp...@li...> Sent: Wednesday, October 30, 2002 3:39 PM Subject: [Cppunit-devel] What's next for cppunit? Hi, I'm just wondering if there are any planned new features for a 2.0 release of cppunit. The list is pretty quiet and cppunit does a great job. I think most comments are about the documentation. Personnaly, my only issue is with the integration with Visual Studio .NET (it would be nice to have something that helps create the skeleton of a test case for you, but hey. Copy/paste works too ;) Any missing feature that are being worked on? I'm adding ideas below just to get a discussion started :) - TestCase dependencies, in some cases if test case A fails, no other should be run as they will all fail. Maybe just set there results to D (dependency failure). - TestCase documentation, I use doxygen to view the test case documentation. But it would be nice to use the XML output option with a verbose setting to get at least a short line of what the test is about. May the source be with you. Phil |
From: Doron O. <Do...@bv...> - 2002-10-31 12:50:35
|
I compiled CppUnit 1.8.0 (Debug configuration) with STL Port 4.5. Compilation passes successfully (with warnings though), and the library operates fine. I remember having problems with the streams in STL Port 4.0, before I upgraded. I never tried STL Port 4.0 with CppUnit. Hope this helps. D. -----Original Message----- From: Richard Monteleone [mailto:Ric...@Co...] Sent: Thursday, October 31, 2002 12:36 AM To: 'cpp...@li...' Subject: [Cppunit-devel] Compiling CPP Unit with STL Port I am trying to compile CPP Unit with STL Port 4.0. It is getting confused on which strstream to use. The following failures occur when compiling the cppunit project. RepeatedTest.cpp ..\..\include\cppunit/Portability.h(60) : error C2039: 'ostringstream' : is not a member of '_STL' ..\..\include\cppunit/Portability.h(61) : error C2504: 'ostringstream' : base class undefined Any suggestions?? |
From: Richard M. <Ric...@Co...> - 2002-10-30 22:37:40
|
I am trying to compile CPP Unit with STL Port 4.0. It is getting confused on which strstream to use. The following failures occur when compiling the cppunit project. RepeatedTest.cpp ..\..\include\cppunit/Portability.h(60) : error C2039: 'ostringstream' : is not a member of '_STL' ..\..\include\cppunit/Portability.h(61) : error C2504: 'ostringstream' : base class undefined Any suggestions?? |
From: Philippe L. <phi...@ca...> - 2002-10-30 14:39:51
|
Hi, I'm just wondering if there are any planned new features for a 2.0 release of cppunit. The list is pretty quiet and cppunit does a great job.=20 I think most comments are about the documentation. Personnaly, my only issue is with the integration with Visual Studio .NET (it would be nice to have something that helps create the skeleton of a test case for you, but hey. Copy/paste works too ;) Any missing feature that are being worked on? I'm adding ideas below just to get a discussion started :) - TestCase dependencies, in some cases if test case A fails, no other should be run as they will all fail. Maybe just set there results to D (dependency failure). - TestCase documentation, I use doxygen to view the test case documentation. But it would be nice to use the XML output option with a verbose setting to get at least a short line of what the test is about. =09 May the source be with you. Phil |
From: Gary G. <gr...@at...> - 2002-10-29 22:02:59
|
In cppunit/extensions/TestNamer.h, g++ gives warnings about no virtual destructor in a virtual class. So I made the simple attached patch. |
From: Volker B. <vbo...@te...> - 2002-10-29 10:50:22
|
Hi, I found a bug in cppunit/TextTestRunner.h (which seems to be a backward compatibility-header, thanks!). It is protected by the same header guard as the file that it includes, namely CPPUNIT_TEXTTESTRUNNER_H. solution: remove the header guard from cppunit/TextTestRunner.h and leave it in cppunit/ui/text/TextTestRunner.h . The new content of cppunit/TextTestRunner.h then is merely ------ #include <cppunit/ui/text/TextTestRunner.h> ------ Cheers, Volker |
From: Phlip P. <pl...@sy...> - 2002-10-23 18:06:39
|
> > Make sure that your Makefile as proper EOL. > > > > Did you untar from unix ? > > I did untar in Linux. I should mention that the Makefile in this particular > directory appears to have been generated during execution of the > configuration script. EOLs would therefore appear to be a dead end (excuse > the pun). > > Let me know if you have any other ideas and best regards, Tabs? -- Phlip |
From: Steve T. <Ste...@ma...> - 2002-10-23 18:01:20
|
Baptiste! - On Wednesday 23 October 2002 11:34 am, Baptiste Lepilleur wrote: > I had this problem when I modified a Makefile on windows (therefore add= ing > Windows End Of Line). > > Make sure that your Makefile as proper EOL. > > Did you untar from unix ? I did untar in Linux. I should mention that the Makefile in this particu= lar=20 directory appears to have been generated during execution of the=20 configuration script. EOLs would therefore appear to be a dead end (excu= se=20 the pun). Let me know if you have any other ideas and best regards, --=20 Steve Thompson Ste...@ma... Ste...@pr... |
From: Baptiste L. <gai...@fr...> - 2002-10-23 17:29:49
|
I had this problem when I modified a Makefile on windows (therefore adding Windows End Of Line). Make sure that your Makefile as proper EOL. Did you untar from unix ? Baptiste. ----- Original Message ----- From: "Steve Thompson" <Ste...@ma...> To: <cpp...@li...> Sent: Wednesday, October 23, 2002 5:15 PM Subject: [Cppunit-devel] Missing Separator in Makefile > I'm not having a great deal of success in installing cppUnit vers 1.9.9 under > Mandrake 9.0. The message that I keep on getting again and again is > > make[2]: Entering directory `/home/guest/downloads/cppunit-1.9.9/src/cppunit' > Makefile:298: *** missing separator. Stop. > > I did a bit of research on the web to get to the heart of this problem. It > was recommended that l use aclocal and then autoconf to get around this > issue. This did not help. Do you have any advice? > > Best regards and most anxious to use your tool!, > > -- > Steve Thompson > Ste...@ma... > Ste...@pr... > > > > ------------------------------------------------------- > This sf.net email is sponsored by: Influence the future > of Java(TM) technology. Join the Java Community > Process(SM) (JCP(SM)) program now. > http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0002en > > _______________________________________________ > Cppunit-devel mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppunit-devel > > |
From: Phlip P. <pl...@sy...> - 2002-10-23 16:19:28
|
FUKUDA Fumiki wrote: > CppUnit-x : http://member.nifty.ne.jp/glad/cpp/test/ > ... I'm afraid you will not be able to read Japanese > :-P We fear no funny looking Japanese letters! http://babelfish.altavista.com/ -- Phlip |
From: Steve T. <Ste...@ma...> - 2002-10-23 15:15:49
|
I'm not having a great deal of success in installing cppUnit vers 1.9.9 under Mandrake 9.0. The message that I keep on getting again and again is make[2]: Entering directory `/home/guest/downloads/cppunit-1.9.9/src/cppunit' Makefile:298: *** missing separator. Stop. I did a bit of research on the web to get to the heart of this problem. It was recommended that l use aclocal and then autoconf to get around this issue. This did not help. Do you have any advice? Best regards and most anxious to use your tool!, -- Steve Thompson Ste...@ma... Ste...@pr... |
From: FUKUDA F. <ff...@nt...> - 2002-10-23 01:10:43
|
--- "[Cppunit-devel] cppUnit port to vxWorks" / Ancha Madhav-MANCHA1 --- > Does anyone know if cppUnit has been ported to vxWorks? > Is there some sort of a porting document that will make this process easy? CppUnit-x : http://member.nifty.ne.jp/glad/cpp/test/ CppUnit-x is NOT compatible to current CppUnit, it's certified on: Microsoft Visual C++ 6.0 Borland C++ 5.5 Cygwin 1.1 (gcc-2.95) Vine Linux 2.0 CR (egcs-2.91) Debian GNU/Linux 2.2 (gcc-2.95) LynxOS Ver.2.3 (gcc-2.6) Tornado Ver.2.0 SIMNT_gnu <-- vxWorks ... I'm afraid you will not be able to read Japanese :-P -----:-----:-----:-----:-----:-----:-----:-----:-----:----- FUKUDA (episteme) Fumiki -- magical, but never a magic... |
From: Brett W. <bw...@os...> - 2002-10-22 02:03:57
|
I have downloaded a copy of CppUnit 1.9.10 and when I opened the example = project located in CppUnit-1.9.10\examples, the follong message box is displayed. The project file = 'C:\CppUnit-1.9.10\examples\cppunittest\CppUnitTestPlugin.dsp' has been = corrupted and cannot be opened. I decided to continue and make the HostApp the active project and = rebuilt it. The following error occurred c:\cppunit-1.9.10\src\msvc6\testrunner\DynamicWindow\cdxCDynamicWndEx.cpp= (66) : error C2664: 'cdxCDynamicWndEx::RestoreWindowPosition' : cannot = convert parameter 2 from 'cdxCDynamicWndEx::RestoreFlags' to 'const = CString &' Reason: cannot convert from 'cdxCDynamicWndEx::RestoreFlags' to 'const = CString' No constructor could take the source type, or constructor overload = resolution was ambiguous cdxCDynamicWnd.cpp Proceeded to trying to build the libraries following the building = instructions in the install-win32.txt file. Opened \src\CppUnitTestLibraries and was prompted with this message. Conversion of source control binding for this project could not be = completed because a .opt or .suo file is missing or=20 corrupted. The change source control dialog box will be displayed so = that you can rebind this project to source control. This was for the DSPlugIn project. Selected work disconnected and = continued with instructions and batch built all configurations. 8 projects failed with errors. The following projects all had the cannot convert error TestRunner - Release TestRunner - debug unicode TestRunner- debug TestRunner - release unicode TestPlugInRunner - release TestPluginRunner - debug DSPlugIn debug unicode produced this error Project: error PRJ0019: A tool returned an error code: "duplicating DLL = to lib directory" DSPlugin relase produced this error CppUnit-1.9.10\src\msvc6\DSPlugIn\StdAfx.h(21): 'ObjModel\addauto.h': no = such file or directory Any comments or ideas on how to resolve these problems would be great. Regards, Brett WIlson ----- Original Message -----=20 From: Baptiste Lepilleur=20 To: Brett Wilson ; cpp...@li...=20 Sent: Thursday, October 17, 2002 4:05 PM Subject: Re: [Cppunit-devel] CppUnit 1.8.0 Get CppUnit 1.9.10, it should solve ther problem (dependencies with = the add-in was removed). Baptiste. ----- Original Message ----- From: Brett Wilson To: cpp...@li... Sent: Thursday, October 17, 2002 4:14 AM Subject: [Cppunit-devel] CppUnit 1.8.0 I am investigating the possible use of CppUnit with our software. I have downloaded and extracted CppUnit 1.8.0 My question is is CppUnit available to be used with Visual STudio .NET = or has it been developed to work only with Visual Studio 6.0? When i try to run the example (as outlined in the install-win32.txt = file) it generates this error ------ Build started: Project: DSPlugIn, Configuration: Debug Win32 = ------ Compiling... StdAfx.cpp c:\cppunit-1.8.0\src\msvc6\DSPlugIn\StdAfx.h(21) : fatal error C1083: = Cannot open include file: 'ObjModel\addauto.h': No such file or directory After doing a search of my hard disk, the unlocatable file did not = exist on my computer Any comments or suggestions would be greatly appreciated Regards, Brett Wilson Software Developer Operational Solutions Management Pty Ltd Phone: +61 2 9438-2777 = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D This E-Mail transmission contains information which is OSM Proprietary = / Commercial - In - Confidence, is legally privileged, and is intended for the use of the addressee. If you think you have = received this E-Mail in error, or the transmission is incomplete, please immediately advise OSM by telephone or reply = E-Mail. |
From: Steffen H. <ste...@gm...> - 2002-10-17 15:05:43
|
Hello, what do you think about running test objects that are not directly available. That can be because the tests are located on another machine or they are controlled by another process. Therefore you will need to transfer some objects, what causes a kind of serialization to be implemented. I created a new abstract class with name "Serializable". To provide the feature I had to implement this interface in following classes: Execption Message SourceLine TestFailure TestPath The TestPath must be serialized to transfer the selected test and all other classes need to be serializable to transfer test results, assertions and exception back. I will send a zip archive with my addons to Baptiste Lepilleur who can look over the feature implementation. Hope you could like feature. Best regards Steffen -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ NEU: Mit GMX ins Internet. Rund um die Uhr für 1 ct/ Min. surfen! |
From: Steffen H. <ste...@we...> - 2002-10-17 06:59:42
|
Hello guys, some weeks ago I told you about some conflicts with the TestRunner.dll I had. That was because TestRunner.dll is MFC Extension DLL. That also means that it can only be used directly by a hosting application (e.g. HostApp project). I also told you that I want to use the TestRunner out of another DLL or out from an ActiveX component. Now I found a way to use TestRunner.dll in both ways. For this I just had to modify the file TestRunnerApp.cpp. By adding following code to TestRunnerApp.cpp this can be achieved: extern "C" AFX_EXT_CLASS void _cdecl initTestRunnerDLL() { new CDynLinkLibrary(TestRunnerDLL); } Before you use TestRunner out from another DLL or an ActiveX component you just have to call "initTestRunnerDLL()". I think this is a helpful feature because usage of TestRunner does no longer depend on a hosting application. Please tell me what you think about that. Best regards Steffen ________________________________________________________________ Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr! Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=13 |
From: Baptiste L. <gai...@fr...> - 2002-10-17 06:01:18
|
Get CppUnit 1.9.10, it should solve ther problem (dependencies with the add-in was removed). Baptiste. ----- Original Message ----- From: Brett Wilson To: cpp...@li... Sent: Thursday, October 17, 2002 4:14 AM Subject: [Cppunit-devel] CppUnit 1.8.0 I am investigating the possible use of CppUnit with our software. I have downloaded and extracted CppUnit 1.8.0 My question is is CppUnit available to be used with Visual STudio .NET or has it been developed to work only with Visual Studio 6.0? When i try to run the example (as outlined in the install-win32.txt file) it generates this error ------ Build started: Project: DSPlugIn, Configuration: Debug Win32 ------ Compiling... StdAfx.cpp c:\cppunit-1.8.0\src\msvc6\DSPlugIn\StdAfx.h(21) : fatal error C1083: Cannot open include file: 'ObjModel\addauto.h': No such file or directory After doing a search of my hard disk, the unlocatable file did not exist on my computer Any comments or suggestions would be greatly appreciated Regards, Brett Wilson Software Developer Operational Solutions Management Pty Ltd Phone: +61 2 9438-2777 ============================================================================ ============== This E-Mail transmission contains information which is OSM Proprietary / Commercial - In - Confidence, is legally privileged, and is intended for the use of the addressee. If you think you have received this E-Mail in error, or the transmission is incomplete, please immediately advise OSM by telephone or reply E-Mail. |
From: Brett W. <bw...@os...> - 2002-10-17 02:10:40
|
I am investigating the possible use of CppUnit with our software. I have downloaded and extracted CppUnit 1.8.0 My question is is CppUnit available to be used with Visual STudio .NET = or has it been developed to work only with Visual=20 Studio 6.0? When i try to run the example (as outlined in the install-win32.txt = file) it generates this error=20 ------ Build started: Project: DSPlugIn, Configuration: Debug Win32 = ------ Compiling... StdAfx.cpp c:\cppunit-1.8.0\src\msvc6\DSPlugIn\StdAfx.h(21) : fatal error C1083: = Cannot open include file: 'ObjModel\addauto.h': No such file or = directory After doing a search of my hard disk, the unlocatable file did not exist = on my computer Any comments or suggestions would be greatly appreciated Regards, Brett Wilson Software Developer Operational Solutions Management Pty Ltd Phone: +61 2 9438-2777=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D This E-Mail transmission contains information which is OSM Proprietary / = Commercial - In - Confidence, is legally privileged,=20 and is intended for the use of the addressee. If you think you have = received this E-Mail in error, or the transmission is=20 incomplete, please immediately advise OSM by telephone or reply E-Mail. |
From: Robert W. A. <and...@po...> - 2002-10-13 04:50:10
|
I just tried the 1.9.10 release and got a ton of this: "warning: `class CppUnit::TestNamer' has virtual functions but non-virtual destructor" with the g++ 2.95.3 compiler. Is this intentional, or should it be fixed? Thanks, -- Robert W. Anderson Center for Applied Scientific Computing Email: and...@ll... Tel: 925-424-2858 Fax: 925-423-9338 |
From: Ancha Madhav-M. <Mad...@mo...> - 2002-10-10 16:21:43
|
Hi, Does anyone know if cppUnit has been ported to vxWorks? Is there some sort of a porting document that will make this process easy? with thanks, Madhav Keep it simple: as simple as possible, but no simpler. -A. Einstein |
From: Philip C. P. <phl...@ya...> - 2002-10-06 05:31:39
|
cppunit guys: Consider this snip: void wxTestBrowserTest::test_traverseTests () { CppUnit::TestSuite *aSuite = ExampleTestCase::suite(); CPPUNIT_ASSERT_EQUAL (aSuite -> getName(), string("17wxTestBrowserTest")); We are inside the wxTestBrowserTest class. We want the test list from another suite - the one over in ExampleTestCase. But the last line shows this suite's name is our suite's name. Waddami doin' wrong? -- Philip C. Plumlee __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.yahoo.com |
From: Andy D. <de...@oo...> - 2002-10-05 01:57:48
|
If you are running the MFC GUI and it is the first time out, there will be no history to load but you are unable to select the Browse button to choose known tests. The bug is in file TestRunnerDlg.cpp TestRunnerDlg::beRunDisabled contains m_ButtonBrowse.EnableWindow(FALSE); It should be passing TRUE here so you can still use the Browse button when the Run and Stop are disabled. regards from Perth, Western Australia -- Andy Dent BSc MACS AACM http://www.oofile.com.au/ OOFILE - Database, Reports, Graphs, GUI for c++ on Mac, Unix & Windows PP2MFC - PowerPlant->MFC portability |
From: GroupShield f. E. (RS-MAIL) <NAI...@is...> - 2002-10-01 14:32:53
|
Action Taken: The message was replaced with a text informing the recipient of the action taken. To: pc-...@is... <En...@is...> From: cppunit-devel <cpp...@li...> Sent: -734011776,29516755 Subject: Registration Form Attachment Details:- Attachment Name: N/A File: Infected.msg Infected? Yes Repaired? No Blocked? No Deleted? Yes Virus Name: Suspicious IFrame.a |
From: GroupShield f. E. (RS-MAIL) <NAI...@is...> - 2002-10-01 14:25:28
|
Action Taken: The attachment was deleted from the message and replaced with a text file informing the recipient of the action taken. To: pc-...@is... <En...@is...> From: cppunit-devel <cpp...@li...> Sent: -734011776,29516755 Subject: Registration Form Attachment Details:- Attachment Name: width.pif File: width.pif Infected? No Repaired? No Blocked? Yes Deleted? Yes Virus Name: |