forked from cpputest/cpputest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpputest-hist.txt
1626 lines (1114 loc) · 66.1 KB
/
cpputest-hist.txt
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
------------------------------------------------------------------------
r337 | basvodde | 2009-05-17 02:43:25 -0500 (Sun, 17 May 2009) | 1 line
Fixed the MemoryLeakDetector again.
------------------------------------------------------------------------
r336 | basvodde | 2009-05-17 02:05:32 -0500 (Sun, 17 May 2009) | 1 line
Removed the PlatformSpecificSPrintf. No need anymore
------------------------------------------------------------------------
r335 | basvodde | 2009-05-17 01:52:38 -0500 (Sun, 17 May 2009) | 1 line
Added some String function and removed static buffers. Also removed an #undef which let to problems...
------------------------------------------------------------------------
r334 | jamesgrenning | 2009-05-15 23:46:33 -0500 (Fri, 15 May 2009) | 2 lines
c leak detection is default on.
------------------------------------------------------------------------
r333 | jamesgrenning | 2009-05-07 18:09:55 -0500 (Thu, 07 May 2009) | 1 line
using ranlib due to cygwin problem. it does not support libtool -static
------------------------------------------------------------------------
r332 | jamesgrenning | 2009-05-07 18:01:04 -0500 (Thu, 07 May 2009) | 1 line
Using libtool instead of $(AR) for library creation. Needed for Mac OSX.
------------------------------------------------------------------------
r331 | tpuronen | 2009-05-06 07:50:37 -0500 (Wed, 06 May 2009) | 1 line
Clean up
------------------------------------------------------------------------
r330 | tpuronen | 2009-05-06 07:39:46 -0500 (Wed, 06 May 2009) | 1 line
Symbian compilation fixes.
------------------------------------------------------------------------
r329 | tpuronen | 2009-05-06 06:50:36 -0500 (Wed, 06 May 2009) | 1 line
The first batch of Symbian fixes, do not use new overloads as Symbian has built-in memory leak detection, remove obsolete stuff.
------------------------------------------------------------------------
r328 | tpuronen | 2009-05-06 03:21:45 -0500 (Wed, 06 May 2009) | 1 line
64-bit compiler fixes. Examples still need fixes.
------------------------------------------------------------------------
r327 | jamesgrenning | 2009-04-23 21:43:25 -0500 (Thu, 23 Apr 2009) | 1 line
------------------------------------------------------------------------
r326 | jamesgrenning | 2009-04-23 08:28:44 -0500 (Thu, 23 Apr 2009) | 1 line
------------------------------------------------------------------------
r325 | jamesgrenning | 2009-04-23 07:50:16 -0500 (Thu, 23 Apr 2009) | 2 lines
Adding IAR-STR912 ARM9 eval board support
------------------------------------------------------------------------
r324 | jamesgrenning | 2009-04-22 19:15:21 -0500 (Wed, 22 Apr 2009) | 2 lines
added enable() during setup.
------------------------------------------------------------------------
r323 | jamesgrenning | 2009-04-22 18:57:38 -0500 (Wed, 22 Apr 2009) | 26 lines
Changes to allow Memory Leak Detection to be turned off for an embedded platform
MemoryLeakDetector.h:
Added #include <stdlib.h> so that size_t works.
MemoryLeakWarningPlugin.h: Modified:
extern "C" { /* include for size_t definition */
#undef __cplusplus
#define _WCHART
#include "TestHarness_c.h"
}
MemoryLeakWarningPlugin.cpp:
Removed the remaining operator new stuff
added disable() to constructor
added isEnabled() guard clauses to public methods that do something
modified and do not like:
void MemoryLeakWarningPlugin::Enable()
{
#if UT_NEW_OVERRIDES_ENABLED
memLeakDetector->enable();
#endif
}
I would prefer a NullMemoryLeakWarningPlugin over all this conditional compilation, but can live with it.
------------------------------------------------------------------------
r322 | jamesgrenning | 2009-04-14 07:37:06 -0500 (Tue, 14 Apr 2009) | 1 line
Adding IAR work in progress
------------------------------------------------------------------------
r321 | basvodde | 2009-04-10 03:28:35 -0500 (Fri, 10 Apr 2009) | 4 lines
Changed back to use size_t :(
------------------------------------------------------------------------
r320 | jamesgrenning | 2009-04-06 06:14:51 -0500 (Mon, 06 Apr 2009) | 5 lines
changed int to long
void* operator new(unsigned long size, const char* file, int line);
void* operator new[](unsigned long size, const char* file, int line);
------------------------------------------------------------------------
r319 | basvodde | 2009-04-05 23:55:09 -0500 (Sun, 05 Apr 2009) | 3 lines
Removed dependencies to Std Lib C in order to increase portability.
------------------------------------------------------------------------
r318 | basvodde | 2009-04-05 02:26:26 -0500 (Sun, 05 Apr 2009) | 6 lines
- Fixed memory leak detector stack usage.
- Added UT_PRINT
- Added STRCMP_CONTAINS
- Added StringFromFormat
- Added simple and inefficient string buffering
- Added new target to Makefile
------------------------------------------------------------------------
r317 | jamesgrenning | 2009-03-30 23:49:30 -0500 (Mon, 30 Mar 2009) | 20 lines
CommandLineTestRunner supports JUNitOutput from command line. Using pimpl pattern. No longer a header file dependency on stdio.
NullJUnitTestOutput file added that can be included in builds that will not use JUnit output
Removed OutputType from public interface of
CommandLineArguments
now using
bool isJUnitOutput() const;
bool isEclipseOutput() const;
also added -o eclipse
-o normal still works
(we'll want a -o vs some day)
removed
CommandLineTestRunner ::getOutputType
------------------------------------------------------------------------
r316 | jamesgrenning | 2009-03-30 09:51:10 -0500 (Mon, 30 Mar 2009) | 1 line
Added conditional compile that allows swapping between no-placement new and yes-placement new
------------------------------------------------------------------------
r315 | basvodde | 2009-03-29 05:47:26 -0500 (Sun, 29 Mar 2009) | 2 lines
Some tweaks to improve memory leak detector performance
------------------------------------------------------------------------
r314 | jamesgrenning | 2009-03-28 15:03:51 -0500 (Sat, 28 Mar 2009) | 33 lines
TestHarness.h
---------------
Added PlatformSpecificPutchat
Added PlatformSpecificFlush
CommandLIneTestRunner.cpp
-------------------------
Needed to edit out JUnitOutput.h
MemoryLeakDetector.cpp
----------------------
added #undef malloc and free
added checkedMalloc that FAILs when malloc returns 0;
called checkedMalloc instead of malloc
MemoryLeakWarningPlugin.cpp
---------------------------
Added a malloc failure check and FAIL
TestOutput.cpp
--------------
Extraced PlatformSpecificPutchat
and PlatformSpecificFlush
Platformws
----------
Added IarPlatform
Gcc/UtestPlatform.cpp - added new mehtods
VisualCpp/UtestPlatform.cpp - added new methods
Symbian/UtestPlatform.cpp - added new methods
------------------------------------------------------------------------
r313 | jamesgrenning | 2009-03-11 09:19:15 -0500 (Wed, 11 Mar 2009) | 1 line
Removed static from operator new
------------------------------------------------------------------------
r312 | basvodde | 2009-03-11 01:50:46 -0500 (Wed, 11 Mar 2009) | 2 lines
Nasty little cast caused a negative array index.
------------------------------------------------------------------------
r311 | basvodde | 2009-03-10 23:21:10 -0500 (Tue, 10 Mar 2009) | 1 line
Fixed some bugs related to static initialization.
------------------------------------------------------------------------
r310 | jamesgrenning | 2009-03-10 12:43:24 -0500 (Tue, 10 Mar 2009) | 9 lines
Added to #include <stdarg.h> to TestHarness.h.
Why is va_lst being passed as void*
left old until we can discuss.
MemoryLeakDetector.cpp using changed PlatformSpecificVSNprintf2
Added #undef __cplusplus to TestHarness_c.cpp
Added PlatformSpecificVSNprintf2 to UTestPlatform.
------------------------------------------------------------------------
r309 | basvodde | 2009-03-10 02:24:35 -0500 (Tue, 10 Mar 2009) | 1 line
Added realloc support
------------------------------------------------------------------------
r308 | basvodde | 2009-03-10 00:28:38 -0500 (Tue, 10 Mar 2009) | 1 line
Fixed a / in the Makefile
------------------------------------------------------------------------
r307 | jamesgrenning | 2009-03-08 17:02:31 -0500 (Sun, 08 Mar 2009) | 1 line
poking around SetPointerPlugin.
------------------------------------------------------------------------
r306 | jamesgrenning | 2009-03-08 16:26:22 -0500 (Sun, 08 Mar 2009) | 1 line
VC projects OK after Mac change including CommandLineArguments fix.
------------------------------------------------------------------------
r305 | jamesgrenning | 2009-03-08 15:52:56 -0500 (Sun, 08 Mar 2009) | 14 lines
Added CommandLineArguments class.
Got rid of the statics that were causing the original trouble. There still a some leak as part of CommandLineTestRunner::runAllTestsMain(). Silenced with FinalReport(3).
CommandLineTestRunner has no tests now. The prior tests were only about parameters anyway.
I added gone and isGone to MemoryLeakDetector. This is preventing the detector from crashing during exit. You should look this over. Its kind of a kludge, but it works.
I put thin into ignore. Have not had a chance to check why it is broken.
IGNORE_TEST(SetPointerPluginTest, installTooMuchFunctionPointer)
Added a test to check the order of the pre and post test actions. last plugin is run first, post runs in opposite order.
------------------------------------------------------------------------
r304 | jamesgrenning | 2009-02-23 19:10:13 -0600 (Mon, 23 Feb 2009) | 1 line
kludge fix for groupFilter and nameFilter in test regixtry.u
------------------------------------------------------------------------
r303 | jamesgrenning | 2009-02-23 14:36:47 -0600 (Mon, 23 Feb 2009) | 1 line
turned on full parse indexing
------------------------------------------------------------------------
r302 | jamesgrenning | 2009-02-23 14:29:07 -0600 (Mon, 23 Feb 2009) | 38 lines
I made this compile with ubuntu Linux gcc 4.3.2
Many char*s and char**s had to be changed to const char* and const char**.
For backwards compatibility there are two of these
static int RunAllTests(int ac, const char** av);
static int RunAllTests(int ac, char** av);
one to work with each possible main
main(int argc, const char** argv).
main(int argc, char** argv)
I did not want to break existing tests.
There are also two of thes in TestPlugin for the same reason.
virtual bool parseAllArguments(int ac, const char** av, int index);
virtual bool parseAllArguments(int ac, char** av, int index);
I did not modify the PluginTest file because parseArguments is not tested there.
I took out CHECK_EQUAL("THIS", "THIS") from places like
TEST(Utest, allMacros)
{
CHECK(0 == 0);
LONGS_EQUAL(1,1);
BYTES_EQUAL(0xab,0xab);
CHECK_EQUAL(100,100);
STRCMP_EQUAL("THIS", "THIS");
DOUBLES_EQUAL(1.0, 1.0, .01);
POINTERS_EQUAL(this, this);
}
It was generating a warning. For good reasons. The use probably really wants STRCMP_EQUAL.
Changed Makefile CPPFLAGS += -Wall
------------------------------------------------------------------------
r301 | basvodde | 2009-01-10 03:29:18 -0600 (Sat, 10 Jan 2009) | 4 lines
1. New memory leak detector
2. CHECKs can be used for functions that return a value
3. Teardown is always called
4. Failed cases don't report memory leaks
------------------------------------------------------------------------
r300 | jamesgrenning | 2008-12-10 08:40:26 -0600 (Wed, 10 Dec 2008) | 1 line
fixed alternative TEST_FAIL alternative to FAIL
------------------------------------------------------------------------
r299 | jamesgrenning | 2008-12-08 20:43:40 -0600 (Mon, 08 Dec 2008) | 2 lines
Updated scripts for generating C starting point for multi instance classes
------------------------------------------------------------------------
r298 | basvodde | 2008-12-02 04:56:01 -0600 (Tue, 02 Dec 2008) | 1 line
OrderedTest
------------------------------------------------------------------------
r297 | basvodde | 2008-12-02 04:39:38 -0600 (Tue, 02 Dec 2008) | 2 lines
Added another search function...
------------------------------------------------------------------------
r296 | basvodde | 2008-11-30 20:48:31 -0600 (Sun, 30 Nov 2008) | 1 line
Minor changes to support ordered tests
------------------------------------------------------------------------
r295 | jamesgrenning | 2008-11-10 10:48:40 -0600 (Mon, 10 Nov 2008) | 1 line
Changed how pointers are printed so that it is compatible with MS VC6/Mac/Cygwin
------------------------------------------------------------------------
r294 | jamesgrenning | 2008-11-10 09:20:50 -0600 (Mon, 10 Nov 2008) | 1 line
------------------------------------------------------------------------
r293 | jamesgrenning | 2008-11-04 17:46:46 -0600 (Tue, 04 Nov 2008) | 1 line
Fixed signature of PlatformSpecificSprintf
------------------------------------------------------------------------
r292 | jamesgrenning | 2008-11-04 06:43:18 -0600 (Tue, 04 Nov 2008) | 1 line
delete q
------------------------------------------------------------------------
r291 | basvodde | 2008-11-04 00:32:13 -0600 (Tue, 04 Nov 2008) | 3 lines
Removed the dependency on stdio.h in the TestHarness.h.
It killed the usage of CppUTest on not so standard C platforms.
------------------------------------------------------------------------
r290 | jamesgrenning | 2008-11-03 06:11:34 -0600 (Mon, 03 Nov 2008) | 3 lines
added CppUnit templates
------------------------------------------------------------------------
r289 | jamesgrenning | 2008-10-30 14:39:29 -0500 (Thu, 30 Oct 2008) | 1 line
------------------------------------------------------------------------
r288 | jamesgrenning | 2008-10-30 14:35:22 -0500 (Thu, 30 Oct 2008) | 2 lines
improving new project script
------------------------------------------------------------------------
r287 | jamesgrenning | 2008-10-03 06:52:37 -0500 (Fri, 03 Oct 2008) | 2 lines
added POINTERS_EQUAL support
Updated code templates
------------------------------------------------------------------------
r286 | jamesgrenning | 2008-09-04 14:10:15 -0500 (Thu, 04 Sep 2008) | 2 lines
Added support scripts to build dir structure and other flavor of C modules
------------------------------------------------------------------------
r285 | jamesgrenning | 2008-08-02 16:14:51 -0500 (Sat, 02 Aug 2008) | 1 line
initialized a pointer that made a failure in VS.NET 2003
------------------------------------------------------------------------
r284 | jamesgrenning | 2008-08-01 17:51:23 -0500 (Fri, 01 Aug 2008) | 1 line
I changed cpputest_sprintf's name
------------------------------------------------------------------------
r283 | basvodde | 2008-08-01 04:03:46 -0500 (Fri, 01 Aug 2008) | 1 line
Path fixed.
------------------------------------------------------------------------
r282 | jamesgrenning | 2008-07-15 20:35:04 -0500 (Tue, 15 Jul 2008) | 1 line
removed platform include path
------------------------------------------------------------------------
r281 | jamesgrenning | 2008-07-15 15:41:15 -0500 (Tue, 15 Jul 2008) | 1 line
------------------------------------------------------------------------
r280 | jamesgrenning | 2008-07-15 11:53:22 -0500 (Tue, 15 Jul 2008) | 6 lines
Created cpputest_snprintf to get isolate the platform dependencies around snprintf.
Updated MS VC6 workspaces and projects
Got rid of cygwin warnings
This needs to be checked on symbian. vsnprintf is not supported on symbian, but it does translate the call to vsprintf.
this might cause a test to fail.
------------------------------------------------------------------------
r279 | jamesgrenning | 2008-07-12 12:07:02 -0500 (Sat, 12 Jul 2008) | 20 lines
I just got CppUTest to work with VC6 AGAIN!
Here are some of the changes.
JUnit... files
add #include "Platform.h"
the MS platform file defines snprintf
Makefile:
add the platform directory on the include search path.
added condition build for the "Extensions"
Testharness_c.cpp
got rid of a warning here by using the ?: operator
void CHECK_C_LOCATION(int condition, const char* conditionString, const char* fileName, int lineNumber)
{
CHECK_LOCATION(((condition) == 0 ? false : true), conditionString, fileName, lineNumber);
}
------------------------------------------------------------------------
r278 | tpuronen | 2008-06-27 02:09:10 -0500 (Fri, 27 Jun 2008) | 1 line
Added NULL checking to overloaded delete operators
------------------------------------------------------------------------
r277 | tpuronen | 2008-06-26 08:14:25 -0500 (Thu, 26 Jun 2008) | 1 line
Rewrote README_Symbian.txt, added missing tests to alltests.mmp.
------------------------------------------------------------------------
r276 | tpuronen | 2008-06-26 07:23:54 -0500 (Thu, 26 Jun 2008) | 1 line
Symbian build file fixes
------------------------------------------------------------------------
r275 | tpuronen | 2008-06-26 05:21:13 -0500 (Thu, 26 Jun 2008) | 1 line
Symbian build file fixes
------------------------------------------------------------------------
r274 | jamesgrenning | 2008-06-25 17:03:07 -0500 (Wed, 25 Jun 2008) | 2 lines
added BYTES_EQUAL
------------------------------------------------------------------------
r273 | jamesgrenning | 2008-06-25 17:01:21 -0500 (Wed, 25 Jun 2008) | 1 line
added BYTES_EQUAL
------------------------------------------------------------------------
r272 | basvodde | 2008-06-23 21:51:41 -0500 (Mon, 23 Jun 2008) | 1 line
Fixed the output to console related to flushing.
------------------------------------------------------------------------
r271 | basvodde | 2008-06-23 21:42:13 -0500 (Mon, 23 Jun 2008) | 1 line
Renamed the RealTestOutput and the MockTestOutput
------------------------------------------------------------------------
r270 | basvodde | 2008-06-23 03:22:57 -0500 (Mon, 23 Jun 2008) | 4 lines
Renamed GenericTest to ExecFunctionTest and moved it to UTest.h Also renamed GenericFixture to TestTestingFixture and moved it to the include since this is useful when writing plugins or extensions.
Fixed all the tests.
------------------------------------------------------------------------
r269 | jamesgrenning | 2008-05-20 10:41:08 -0500 (Tue, 20 May 2008) | 1 line
report that tests are being run, before running them
------------------------------------------------------------------------
r268 | jamesgrenning | 2008-05-20 10:37:50 -0500 (Tue, 20 May 2008) | 2 lines
flush buffer so that if a test crashes, the test name is printed.
Ignore tests are indicated with a bang!
------------------------------------------------------------------------
r267 | basvodde | 2008-04-16 03:54:43 -0500 (Wed, 16 Apr 2008) | 1 line
Use more gcc defaults
------------------------------------------------------------------------
r266 | tpuronen | 2008-04-06 05:42:39 -0500 (Sun, 06 Apr 2008) | 1 line
Symbian build file fixes
------------------------------------------------------------------------
r265 | tpuronen | 2008-04-06 01:07:35 -0500 (Sun, 06 Apr 2008) | 1 line
Updated Symbian README
------------------------------------------------------------------------
r264 | basvodde | 2008-04-03 23:06:08 -0500 (Thu, 03 Apr 2008) | 1 line
Plugin changes
------------------------------------------------------------------------
r263 | basvodde | 2008-04-03 23:02:40 -0500 (Thu, 03 Apr 2008) | 2 lines
Added a CHECK_C macro for C usage
------------------------------------------------------------------------
r262 | basvodde | 2008-04-03 22:59:43 -0500 (Thu, 03 Apr 2008) | 1 line
Moved SimpleString earlier
------------------------------------------------------------------------
r261 | basvodde | 2008-04-02 02:19:02 -0500 (Wed, 02 Apr 2008) | 1 line
Doing reverse resetting for SetPointerPlugin
------------------------------------------------------------------------
r260 | basvodde | 2008-04-02 02:18:32 -0500 (Wed, 02 Apr 2008) | 1 line
Added test for setting the same pointer twice
------------------------------------------------------------------------
r259 | basvodde | 2008-04-01 00:36:10 -0500 (Tue, 01 Apr 2008) | 1 line
Removed platform dependency
------------------------------------------------------------------------
r258 | basvodde | 2008-04-01 00:34:56 -0500 (Tue, 01 Apr 2008) | 1 line
Removed Platform.h
------------------------------------------------------------------------
r257 | basvodde | 2008-04-01 00:25:30 -0500 (Tue, 01 Apr 2008) | 1 line
t -> T
------------------------------------------------------------------------
r256 | basvodde | 2008-04-01 00:14:41 -0500 (Tue, 01 Apr 2008) | 1 line
I -> i
------------------------------------------------------------------------
r255 | basvodde | 2008-04-01 00:10:30 -0500 (Tue, 01 Apr 2008) | 1 line
HRM!
------------------------------------------------------------------------
r254 | basvodde | 2008-03-31 23:59:40 -0500 (Mon, 31 Mar 2008) | 1 line
Always install the SetPointerPlugin
------------------------------------------------------------------------
r253 | basvodde | 2008-03-31 23:48:08 -0500 (Mon, 31 Mar 2008) | 3 lines
Changed the UT_FPSET to UT_PTR_SET
Now works generic with all pointers
------------------------------------------------------------------------
r252 | basvodde | 2008-03-31 23:45:29 -0500 (Mon, 31 Mar 2008) | 1 line
JUnit output fix
------------------------------------------------------------------------
r251 | basvodde | 2008-03-31 23:45:01 -0500 (Mon, 31 Mar 2008) | 1 line
JUnit output fix
------------------------------------------------------------------------
r250 | tpuronen | 2008-03-26 15:37:49 -0500 (Wed, 26 Mar 2008) | 1 line
Symbian build fixes.
------------------------------------------------------------------------
r249 | jamesgrenning | 2008-03-26 14:33:17 -0500 (Wed, 26 Mar 2008) | 1 line
Added setjmp/longjmp for symbian. not sure if it is right
------------------------------------------------------------------------
r248 | jamesgrenning | 2008-03-24 23:28:31 -0500 (Mon, 24 Mar 2008) | 1 line
------------------------------------------------------------------------
r247 | jamesgrenning | 2008-03-24 23:28:02 -0500 (Mon, 24 Mar 2008) | 2 lines
made NewProject compatible with makefile changes
------------------------------------------------------------------------
r246 | jamesgrenning | 2008-03-24 23:27:15 -0500 (Mon, 24 Mar 2008) | 1 line
MS Project dsp files up to date
------------------------------------------------------------------------
r245 | jamesgrenning | 2008-03-24 23:26:27 -0500 (Mon, 24 Mar 2008) | 2 lines
update how throw/catch is done to get rid of warning
------------------------------------------------------------------------
r244 | jamesgrenning | 2008-03-24 23:25:25 -0500 (Mon, 24 Mar 2008) | 2 lines
------------------------------------------------------------------------
r243 | jamesgrenning | 2008-03-24 23:24:41 -0500 (Mon, 24 Mar 2008) | 1 line
------------------------------------------------------------------------
r242 | jamesgrenning | 2008-03-24 09:00:18 -0500 (Mon, 24 Mar 2008) | 6 lines
Refactored early test exit so that macros are not needed for exiting tests early.
gcc version and VC++ versions use exceptions
symbian version is untested, but i put a setjmp/longjmp implementation in there that works on gcc.
I added a StarterKit platform that has setjmp/longjmp implementations for early test exit
and null implementations for the time stuff.
------------------------------------------------------------------------
r241 | jamesgrenning | 2008-03-22 14:18:09 -0500 (Sat, 22 Mar 2008) | 4 lines
Made changes so that a test will exist on its first failure using setjmp/longjmp. it works for gcc. it is a NOP for VC++ and Symbian.
Updated and tested VC++ project files
------------------------------------------------------------------------
r240 | jamesgrenning | 2008-03-22 14:15:30 -0500 (Sat, 22 Mar 2008) | 1 line
experimental version of malloc/free that will record line of malloc
------------------------------------------------------------------------
r239 | jamesgrenning | 2008-03-22 14:13:14 -0500 (Sat, 22 Mar 2008) | 1 line
Commented out experiment with preprocessor stubs
------------------------------------------------------------------------
r238 | jamesgrenning | 2008-03-22 14:09:35 -0500 (Sat, 22 Mar 2008) | 4 lines
refactor
make clean deletion of gcov files works on cygwin
------------------------------------------------------------------------
r237 | jamesgrenning | 2008-03-22 06:04:17 -0500 (Sat, 22 Mar 2008) | 5 lines
Updated scripts
NewCModule - simpler template
NewCmiModule - multiple instance C module
NewProject supported
------------------------------------------------------------------------
r236 | jamesgrenning | 2008-03-05 04:37:55 -0600 (Wed, 05 Mar 2008) | 2 lines
test results captured in a file, and other gcov changes
------------------------------------------------------------------------
r235 | jamesgrenning | 2008-01-30 23:38:07 -0600 (Wed, 30 Jan 2008) | 1 line
Added format target to reformat code using astyle.
------------------------------------------------------------------------
r234 | jamesgrenning | 2008-01-30 22:25:24 -0600 (Wed, 30 Jan 2008) | 1 line
Added ability to cause cpputest_malloc to return a NULL pointer.
------------------------------------------------------------------------
r233 | jamesgrenning | 2008-01-28 01:21:44 -0600 (Mon, 28 Jan 2008) | 2 lines
Deleted some unused templates
------------------------------------------------------------------------
r232 | jamesgrenning | 2008-01-28 01:15:20 -0600 (Mon, 28 Jan 2008) | 2 lines
clean up temp files
------------------------------------------------------------------------
r231 | jamesgrenning | 2008-01-27 19:45:44 -0600 (Sun, 27 Jan 2008) | 1 line
ignore gcov output
------------------------------------------------------------------------
r230 | jamesgrenning | 2008-01-27 19:42:41 -0600 (Sun, 27 Jan 2008) | 1 line
ignore gcov files
------------------------------------------------------------------------
r229 | jamesgrenning | 2008-01-27 18:56:42 -0600 (Sun, 27 Jan 2008) | 5 lines
Update makefile and makefile support
Added test coverage to makefile
updated templates for initial C modules
------------------------------------------------------------------------
r228 | jamesgrenning | 2007-12-27 18:19:34 -0600 (Thu, 27 Dec 2007) | 1 line
Added -I for platform include
------------------------------------------------------------------------
r227 | jamesgrenning | 2007-12-27 18:16:54 -0600 (Thu, 27 Dec 2007) | 2 lines
Added support for uint8_t uint16_t uint32_t.
------------------------------------------------------------------------
r226 | jamesgrenning | 2007-12-27 15:41:48 -0600 (Thu, 27 Dec 2007) | 1 line
Reversed the slashes in the includes
------------------------------------------------------------------------
r225 | basvodde | 2007-12-27 03:27:29 -0600 (Thu, 27 Dec 2007) | 1 line
Added a very simple function pointer resetter plugin
------------------------------------------------------------------------
r224 | basvodde | 2007-12-26 02:15:55 -0600 (Wed, 26 Dec 2007) | 1 line
Changed char* to SimpleString. To remove dependencies with StdC
------------------------------------------------------------------------
r223 | basvodde | 2007-12-26 02:15:29 -0600 (Wed, 26 Dec 2007) | 1 line
Changed char* to SimpleString. To remove dependencies with StdC
------------------------------------------------------------------------
r222 | basvodde | 2007-12-26 02:15:03 -0600 (Wed, 26 Dec 2007) | 1 line
Changed char* to SimpleString. To remove dependencies with StdC
------------------------------------------------------------------------
r221 | basvodde | 2007-12-26 01:48:33 -0600 (Wed, 26 Dec 2007) | 1 line
Print out options and removed include dependencies
------------------------------------------------------------------------
r220 | basvodde | 2007-12-26 01:47:08 -0600 (Wed, 26 Dec 2007) | 1 line
Changed #include dependency
------------------------------------------------------------------------
r219 | basvodde | 2007-12-26 01:46:41 -0600 (Wed, 26 Dec 2007) | 1 line
------------------------------------------------------------------------
r218 | basvodde | 2007-12-26 01:46:23 -0600 (Wed, 26 Dec 2007) | 1 line
Changed #include dependency
------------------------------------------------------------------------
r217 | basvodde | 2007-12-26 01:44:39 -0600 (Wed, 26 Dec 2007) | 1 line
Removed Platform.h
------------------------------------------------------------------------
r216 | basvodde | 2007-12-24 03:41:43 -0600 (Mon, 24 Dec 2007) | 1 line
Need both sys time and time. Windows/unix difference.
------------------------------------------------------------------------
r215 | basvodde | 2007-12-24 03:12:16 -0600 (Mon, 24 Dec 2007) | 3 lines
Code for per test time checks both in -v mode and -ojunit mode.
------------------------------------------------------------------------
r214 | basvodde | 2007-12-24 03:11:30 -0600 (Mon, 24 Dec 2007) | 1 line
Used the new macro
------------------------------------------------------------------------
r213 | basvodde | 2007-12-24 03:10:03 -0600 (Mon, 24 Dec 2007) | 1 line
Added new macro for creating test base classes.
------------------------------------------------------------------------
r212 | basvodde | 2007-12-24 03:08:45 -0600 (Mon, 24 Dec 2007) | 4 lines
Added some platform specific functions to TestHarness. Might need to find a better way to do this.
Though... not today.
------------------------------------------------------------------------
r211 | basvodde | 2007-12-24 03:06:43 -0600 (Mon, 24 Dec 2007) | 1 line
Removed extenstions since could not compile without it.
------------------------------------------------------------------------
r210 | basvodde | 2007-12-24 03:06:14 -0600 (Mon, 24 Dec 2007) | 1 line
Updated the makefile and fixed some issues with the extentions
------------------------------------------------------------------------
r209 | jamesgrenning | 2007-12-17 20:39:37 -0600 (Mon, 17 Dec 2007) | 1 line
------------------------------------------------------------------------
r208 | jamesgrenning | 2007-12-17 20:36:17 -0600 (Mon, 17 Dec 2007) | 1 line
Refactored the makefile to add conditional inclusion of an extensions directory
------------------------------------------------------------------------
r207 | jamesgrenning | 2007-12-17 15:41:52 -0600 (Mon, 17 Dec 2007) | 1 line
changed include to -include to get rid of the error messages when creating the.d files
------------------------------------------------------------------------
r206 | jamesgrenning | 2007-12-17 15:30:12 -0600 (Mon, 17 Dec 2007) | 10 lines
To solve this error on a mac:
/usr/bin/ld: Undefined symbols:
__Unwind_Resume
collect2: ld returned 1 exit status
make: *** [CppUTest_tests] Error 1
Changes $(CC) to $(CXX) everywhere but in the .o.c rule.
Change running the target from @ to ./@ to be unix compatible.
------------------------------------------------------------------------
r205 | jamesgrenning | 2007-12-03 10:20:40 -0600 (Mon, 03 Dec 2007) | 1 line
------------------------------------------------------------------------
r204 | jamesgrenning | 2007-12-03 10:19:21 -0600 (Mon, 03 Dec 2007) | 1 line
------------------------------------------------------------------------
r203 | basvodde | 2007-11-30 00:12:54 -0600 (Fri, 30 Nov 2007) | 1 line
Removed stdint.h dependency
------------------------------------------------------------------------
r202 | basvodde | 2007-11-29 20:10:45 -0600 (Thu, 29 Nov 2007) | 1 line
Fixed a bug that was only visible on Linux
------------------------------------------------------------------------
r201 | basvodde | 2007-11-29 19:41:00 -0600 (Thu, 29 Nov 2007) | 1 line
Deleted old makefiles
------------------------------------------------------------------------
r200 | basvodde | 2007-11-29 19:38:49 -0600 (Thu, 29 Nov 2007) | 1 line
New makefile
------------------------------------------------------------------------
r199 | basvodde | 2007-11-29 19:38:24 -0600 (Thu, 29 Nov 2007) | 1 line
Changed the timeing output
------------------------------------------------------------------------
r198 | jamesgrenning | 2007-11-28 17:11:01 -0600 (Wed, 28 Nov 2007) | 1 line
Made a new StringFrom method so that pointers don't print as <true>, but rather in hex
------------------------------------------------------------------------
r197 | jamesgrenning | 2007-11-28 17:08:18 -0600 (Wed, 28 Nov 2007) | 1 line
make depend now checks *.c* for dependencies, rather than just *.cpp
------------------------------------------------------------------------
r196 | basvodde | 2007-11-21 03:53:59 -0600 (Wed, 21 Nov 2007) | 2 lines
Added time measurements
------------------------------------------------------------------------
r195 | basvodde | 2007-11-21 03:29:00 -0600 (Wed, 21 Nov 2007) | 1 line
Added SimpleStringExtensions
------------------------------------------------------------------------
r194 | basvodde | 2007-11-21 00:09:11 -0600 (Wed, 21 Nov 2007) | 2 lines
Changed the name of TARGET since it conflicted with an environment variable
called TARGET and therefore let to very strange error messages.
------------------------------------------------------------------------
r193 | basvodde | 2007-11-20 20:48:58 -0600 (Tue, 20 Nov 2007) | 1 line
Moved SimpleStringExtensions.cpp to the examples
------------------------------------------------------------------------
r192 | basvodde | 2007-11-20 20:30:08 -0600 (Tue, 20 Nov 2007) | 1 line
Removed TestInstaller
------------------------------------------------------------------------
r191 | basvodde | 2007-11-20 20:29:48 -0600 (Tue, 20 Nov 2007) | 1 line
Removed TestInstaller
------------------------------------------------------------------------
r190 | basvodde | 2007-11-20 20:29:20 -0600 (Tue, 20 Nov 2007) | 1 line
Removed TestInstaller
------------------------------------------------------------------------
r189 | basvodde | 2007-11-20 20:23:14 -0600 (Tue, 20 Nov 2007) | 1 line
Removed NullTest
------------------------------------------------------------------------
r188 | basvodde | 2007-11-20 20:22:53 -0600 (Tue, 20 Nov 2007) | 1 line
Removed NullTest
------------------------------------------------------------------------
r187 | basvodde | 2007-11-20 20:22:27 -0600 (Tue, 20 Nov 2007) | 1 line
Added UtestMacros.h
------------------------------------------------------------------------
r186 | basvodde | 2007-11-20 20:21:58 -0600 (Tue, 20 Nov 2007) | 1 line
Removed NullTest
------------------------------------------------------------------------
r185 | basvodde | 2007-11-20 20:14:39 -0600 (Tue, 20 Nov 2007) | 1 line
Removed EqualsFailure
------------------------------------------------------------------------
r184 | basvodde | 2007-11-20 20:14:14 -0600 (Tue, 20 Nov 2007) | 1 line
Removed EqualsFailure
------------------------------------------------------------------------
r183 | jamesgrenning | 2007-11-20 00:59:21 -0600 (Tue, 20 Nov 2007) | 2 lines
Added scripts and templates for NewProject and NewLibrary
------------------------------------------------------------------------
r182 | jamesgrenning | 2007-11-19 20:51:13 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r181 | jamesgrenning | 2007-11-19 18:44:02 -0600 (Mon, 19 Nov 2007) | 2 lines
------------------------------------------------------------------------
r180 | jamesgrenning | 2007-11-19 18:43:32 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r179 | jamesgrenning | 2007-11-19 18:43:06 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r178 | jamesgrenning | 2007-11-19 18:42:30 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r177 | jamesgrenning | 2007-11-19 18:41:50 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r176 | jamesgrenning | 2007-11-19 18:39:36 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r175 | jamesgrenning | 2007-11-19 18:38:48 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r174 | jamesgrenning | 2007-11-19 18:36:25 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r173 | jamesgrenning | 2007-11-19 17:48:13 -0600 (Mon, 19 Nov 2007) | 2 lines
------------------------------------------------------------------------
r172 | jamesgrenning | 2007-11-19 17:46:52 -0600 (Mon, 19 Nov 2007) | 2 lines
------------------------------------------------------------------------
r171 | jamesgrenning | 2007-11-19 17:44:53 -0600 (Mon, 19 Nov 2007) | 2 lines
------------------------------------------------------------------------
r170 | jamesgrenning | 2007-11-19 17:43:49 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r169 | jamesgrenning | 2007-11-19 17:42:31 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r168 | jamesgrenning | 2007-11-19 17:38:25 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r167 | jamesgrenning | 2007-11-19 17:37:48 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r166 | jamesgrenning | 2007-11-19 17:35:58 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r165 | jamesgrenning | 2007-11-19 17:29:35 -0600 (Mon, 19 Nov 2007) | 1 line
------------------------------------------------------------------------
r164 | jamesgrenning | 2007-11-19 17:27:00 -0600 (Mon, 19 Nov 2007) | 3 lines
Adding support for NewProject.sh and NewLibrary.sh
This is an experiment right now
------------------------------------------------------------------------
r163 | jamesgrenning | 2007-11-06 13:12:20 -0600 (Tue, 06 Nov 2007) | 1 line
------------------------------------------------------------------------
r162 | jamesgrenning | 2007-11-06 12:24:15 -0600 (Tue, 06 Nov 2007) | 1 line
Added Hex printing and support for uint32_t
------------------------------------------------------------------------
r161 | jamesgrenning | 2007-11-06 12:19:43 -0600 (Tue, 06 Nov 2007) | 2 lines
added conditional logic around copying hte created library
------------------------------------------------------------------------
r160 | basvodde | 2007-11-06 02:22:45 -0600 (Tue, 06 Nov 2007) | 1 line
Removed the mmp file
------------------------------------------------------------------------
r159 | basvodde | 2007-10-07 04:53:58 -0500 (Sun, 07 Oct 2007) | 1 line
Symbian build files
------------------------------------------------------------------------
r158 | basvodde | 2007-10-07 04:53:10 -0500 (Sun, 07 Oct 2007) | 1 line
Symbian build file
------------------------------------------------------------------------
r157 | basvodde | 2007-10-07 04:52:37 -0500 (Sun, 07 Oct 2007) | 1 line
Minor changes
------------------------------------------------------------------------
r156 | basvodde | 2007-10-07 04:51:55 -0500 (Sun, 07 Oct 2007) | 1 line
Symbian files
------------------------------------------------------------------------
r155 | basvodde | 2007-10-07 04:47:36 -0500 (Sun, 07 Oct 2007) | 1 line
Moved
------------------------------------------------------------------------
r154 | jamesgrenning | 2007-10-01 17:04:01 -0500 (Mon, 01 Oct 2007) | 1 line
Deleted SymbianAllTests.cpp, it was breaking the make depend.
------------------------------------------------------------------------
r153 | jamesgrenning | 2007-09-29 12:04:00 -0500 (Sat, 29 Sep 2007) | 1 line
LONGS_EQUAL outputs expected/but was numbers in both decimal and hex
------------------------------------------------------------------------
r152 | jamesgrenning | 2007-09-12 19:30:55 -0500 (Wed, 12 Sep 2007) | 2 lines
got rid of printf infavor of putchar and a loop
------------------------------------------------------------------------
r151 | jamesgrenning | 2007-09-12 19:29:39 -0500 (Wed, 12 Sep 2007) | 2 lines
added files for creating a new project
changed the code templates so that they only use setup and teardown
------------------------------------------------------------------------
r150 | jamesgrenning | 2007-09-12 19:20:30 -0500 (Wed, 12 Sep 2007) | 2 lines