Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0355a39c074f19ff8d5dd12e62265d705be1820d (plain) (blame)
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
2003-06-12 John Camelon
	Get rest of JUnit tests working, will merge back to HEAD branch.  

2003-06-12 John Camelon
	Introduction of ASTFactory strategy, some restructuring of packages and interfaces.
	
2003-06-10 John Camelon
	Futher pursuit of the golden hammer, symbol table integration. 

2003-06-09 John Camelon
	First step in replacing IParserCallback with ISourceElementRequestor.  

2003-06-09 Victor Mozgin
	Moved testBug36769() from ACEFailedTest.java to DOMTests.java.
	Removed ACEFailedTest.java as it is empty now.
	Added DOMTests.testBug36769B(). 

2003-06-09 Victor Mozgin
	Moved testBug36932() from DOMFailedTest.java to DOMTests.java.
	Added DOMTests.testBug36932B() and DOMTests.testBug36932C(). 

2003-06-09 Victor Mozgin
	Moved testBug36701() from ScannerFailedTests.java to ScannerTestCase.java.
	Renamed it to testBug36701A() and fixed it.
	Added ScannerTestCase.testBug36701B().

2003-06-07 Victor Mozgin
	Moved testBug36766A(), testBug36766B() & testBug36766C() from STLFailedTests.java to DOMTests.java.
	Renamed them to testBug36766and36769x(), as they cover both PRs.
	Added testBug36766and36769D() - test for templated destructor.

2003-06-05 John Camelon
	Moved testBug23478A() & testBug23478B() from failed tests to TranslationUnitTests.java.
	Removed TranslationUnitFailedTests.java as it was empty. 

2003-05-29 Andrew Niefer
	Modified tests to support eType & PtrOp changes in core
	Added ParserSymbolTableTest::testTemplateParameterAsParent
	Added ParserSymbolTableTest::testTemplateInstanceAsParent
	Added ParserSymbolTableTest::testTemplateParameterDefaults
	Added ParserSymbolTableTest::testTemplateParameterAsFunctionArgument
	started ParserSymbolTableTest::incompletetestTemplateSpecialization

2003-05-26 John Camelon
	Rollback PST/Parser integration.

2003-05-13 Andrew Niefer	
	Modified ParserSymbolTableTest to use new interface

2003-05-08 Andrew Niefer
	Added ParserSymbolTableTest::testMarkRollback

2003-05-06 John Camelon
	Further integration of SymbolTable into Parser, some refactoring. 

2003-05-05 John Camelon/Andrew Niefer
	Added CrossReferenceTests to ParserTestSuite to test symbol-table/DOM interworking.

2003-05-05 Andrew Niefer
	Rewrote ParserSymbolTableTest to reflect structural changes to the symbol table.

2003-05-01 Andrew Niefer
	Updated FractionalAutomatedTest to use threads
	Modified ScannerTestCase::testBug36287
	Added ScannerTestCase::testBug37011
	Added ScannerTestCase::testOtherPreprocessorDefines

2003-04-28 John Camelon
	Moved testBug36730() & testBug37019() from DOMFailedTests to DOMTests.

2003-04-28 Andrew Niefer
	Added DOMFailedTest::testBug37019
	Added DOMFailedTest::testBug36932
	Added ScannerFailedTest::testBug37011

2003-04-28 John Camelon
	Added DOMTests::testOrder().  

2003-04-28 Peter Graves
	* model/org/eclipse/cdt/core/model/tests/BinaryTests:
	Updated to remove a few small errors, and deal with some changes
	to the core CDT
	 
2003-04-27 John Camelon
	Added testBug36932() to DOMTests. 
	Moved testBugFunctor758() from LokiFailures to DOMTests.
	Moved testBug36704() from DOMFailedTest to DOMTests.  
	Moved testBug36699() from DOMFailedTest to DOMTests.  
	Moved testBug36691() from DOMFailedTest to DOMTests.  

2003-04-25 Andrew Niefer
	Moved ACEFailedTest::testBug36771 to DOMTests
	Moved DOMFailedTest::testBug36714 to DOMTests
	Updated ScannerTestCase::testBug36816
	
2003-04-25 John Camelon
	Added DOMTests::testBug36852(). 
	Added DOMTests::testBug36764().
	Moved DOMFailedTests::testBug36702() to DOMTests(). 

2003-04-24 John Camelon
	Moved fixed tests from FailedTests to DOMTests. 
	Added DOMTests::testBug36799().
	Cleaned up tests to reduce amount of code necessary to maintain these things. 

2003-04-24 John Camelon
	Moved fixed tests from FailedTests to DOMTests. 
	Added LokiFailures.java to failed tests directory.

2003-04-24 Andrew Niefer
	Added AutomatedFramework.java
	Added FractionalAutomatedTest (which derives from AutomatedFramework)
	Refactored AutomatedTest to derive from AutomatdFramework
	Added ScannerTestCase.testBug36816
	Added ScannerTestCase.testBug36255	

2003-04-24 John Camelon
	Fixed Java 1.3 compliance issue w/AutomatedTest.java
	Fixed False failure in HelloWorld.java.  

2003-04-21 John Camelon
	Updated DOMTests::testBug36247(). 
	Moved testBug36692(), testBug36703(), testBug36708(), testBug36707(), testBug36689()
	and testBug36690() from DOMFailedTests to DOMTests and updated them. 

2003-04-20 John Camelon
	Added DOMTests::testBug36551().
	Adjusted AutomatedTest to turn on line numbering. 
	Added DOMFailedTests and 11 failed test cases.  

2003-04-17 Andrew Niefer
	Added ScannerTestCase::testBug36695()
	Moved ScannerFailedTest::testBug36521 to ScannerTestCase::testBug36521()
	Moved ScannerFailedTest::testBug36509 to ScannerTestCase::testBug36509()
	Moved ScannerFailedTest::testBug36475 to ScannerTestCase::testBug36475() 
	Updated ScannerTestCase::testBug36047
	Updated ScannerTestCase::testBug36045

2003-04-17 John Camelon
	Updated DOMTests::testBug36600().
	Updated LineNumberTest::testDOMLineNos().  
	Added DOMTests::testBug36559().  

2003-04-17 Andrew Niefer
	Added AutomatedTest
	Added resources.cFiles
	Added resources.cppFiles

2003-04-16 John Camelon
	Added DOMTests::testBug36532().
	Added DOMTests::testBug36432(). 
	Added DOMTests::testBug36594().
	Added DOMTests::testBug36600(). 
	Added DOMTests::testArrayOfPointerToFunctions(). 

2003-04-15 John Camelon
	Added ScannerTestCase::testBug36434().
	Added ScannerTestCase::testMultipleLines(). 
	Added ParserTestSuite. 
	Added LineNumberTest.
	Updated CModelElementsTests to set the Nature of the C++ project appropriately.

2003-04-15 Andrew Niefer
	Moved ScannerFailedTest::testBug36047 to ScannerTestCase::testBug36047
	Added ScannerFailedTest::testBug36475

2003-04-13 John Camelon
	Added DOMTests::testPointersToFunctions.  

2003-04-11 John Camelon
	Added DOMTests::testBug36247().  

2003-04-11 Andrew Niefer
	Moved ScannerFailedTest::testBug36316 to ScannerTestCase::testBug36316
	Added ScannerFailedTest::testBug36047
	Added ScannerTestCase::testNestedRecursiveDefines

2003-04-10 John Camelon
	Added DOMTests::testBug36237().

2003-04-09 John Camelon
	Removed all the old Code Model Builder source that was no longer being used (NewModelBuilder.java, etc.). 
	Moved all the files in parser.util directory to the dom.  
	Organized imports. 
	Added DOMTests::testTemplateDeclarationOfMethod().
	Added DOMTests::testBug36250().  
	Added DOMTests::testBug36240(). 
	Added DOMTests::testBug36254().

2003-04-09 John Camelon
	Updated ScannerTest::testBug36045().
	Added ScannerTest::testBug36287().
	Added DOMTests::testBug36288(). 

2003-04-06 Andrew Niefer
	Added ParserSymbolTableTest::testOverloadRanking()

2003-04-04 Alain Magloire
	* src/org/eclipse/cdt/testplugin/util/VerifyDialog.java:
	Remove some warnings.

2003-04-03 John Camelon
	Updated ScannerTest::testSimpleIfdef() for bug36019.  
	Updated ScannerTest::testNumerics() for bug36020.  
	Added ScannerTest::testBug36045().  
	Updated DOMTests::testTemplateDeclaration() for template grammar updates.  

2003-04-01 Andrew Niefer
	ParserSymbolTableTest. modifications to using declaration tests to reflect changes in the
	symbol table.  Also added testUserDefinedConversionSequences()

2003-04-01 John Camelon
	Added testBug35906() to DOMTests.

2003-03-31 John Camelon
	Added testStruct() to DOMTests.  
	Added test35892()to ScannerTest. 

2003-03-31 Andrew Niefer
	In ParserSymbolTableTest, renamed testFunctionResolution_2() to testFunctionResolution_PointersAndBaseClasses(),
	and modified to reflect changes in function resolution.  
	Added testFunctionResolution_TypedefsAndPointers().
	
2003-03-31 John Camelon
	Added testWeirdStrings() and testNumerics() to ScannerTestCase. 
	Added testTemplateSpecialization(), testTemplateDeclaration(), testBug26467(), 
	  testTypedef() and testTemplateInstantiation() to DOMTests.

2003-03-28 John Camelon
	Added testConstructorChain() and testASMDefinition() to DOMTests.

2003-03-27 Alain Magloire
	Changes were done in the Core Model API, the hierarchy is now
	ICModel
		ICProject
			ICContainer
				ITranslationUnit
				IArchive
				IBinary
	We adjust the tests.
	* model/org/eclipse/cdt/core/model/tests/ArchiveTests.java
	* model/org/eclipse/cdt/core/model/tests/BinaryTests.java
	* model/org/eclipse/cdt/core/model/tests/TranslationUniTests.java
	* model/org/eclipse/cdt/core/model/tests/WorkingCopyTests.java

2003-03-26 Andrew Niefer
	In ParserSymbolTableTest : 
		updated all tests to reflect TypeInfo changes
		Added testFunctionResolution() & testFunctionResolution_2() in

2003-03-25 John Camelon
	Added testDeclSpecifier(), testNamespaceDefinition(), testLinkageSpecification(), 
	testUsingClauses() and testEnumSpecifier() to DOMTests.

2003-03-23 John Camelon
	Added ptrOperator() test to DOMTests.  
	Added testFunctionModifiers() test to DOMTests.
	Added testArrays() test to DOMTests.

2003-03-20 Alain Magloire

	Patch from Amer Hoda, tests for the CElement deltas for Translation Units.
	* model/org/eclipse/cdt/core/model/tests/ElementDeltaTest.java
	* model/org/eclipse/cdt/core/model/tests/resource/WorkingCopyTestStart.h
	
2003-03-19 Alain Magloire
	Patch from Amer Hoda, introducing a simple test for the core model.
	* model/org/eclipse/cdt/core/model/tests/WorkingCopyTests.java
	* model/org/eclipse/cdt/core/model/tests/resource/WorkingCopyTestStart.h

2003-03-18 John Camelon
	Updated DOMTests to validate simple case of a function declaration with multiple parameters.  
	* parser/org/eclipse/cdt/core/parser/tests/DOMTests.java

2003-03-11 John Camelon
	Updated DOMTests for core.internal.parser change of merging DeclarationSpecifier and DeclSpecifier
	Organized imports
	* parser/org/eclipse/cdt/core/parser/tests/DOMTests.java
	* parser/org/eclipse/cdt/core/parser/tests/ParserSymbolTableTest.java

2003-03-10 John Camelon
	Added macro pasting tests

2003-03-06 Andrew Niefer
	Added tests for exercising Namespaces & using directives in new parser's symbol table

2003-03-04 Doug Schaefer
	This is a pretty big patch, but it is the merge of the NewParser1 branch into the HEAD branch.  lder "parser") 
	JUnit tests for testing various pieces (source folder "parser" in cdt.ui.tests. 

2003-01-29 Peter Graves

    Fixed the warnings when accessing static methods
    * src/org/eclipse/cdt/testplugin/util/DialogCheck.java:
    * src/org/eclipse/cdt/testplugin/CTestPlugin.java
    * src/org/eclipse/cdt/testplugin/TestWorkbench.java
    * ChangeLog: make all entries have the same formatting

2002-12-17 Peter Graves

    * plugin.xml,test.xml: Some simple cleanups to remove refrences to the jdt and
	to move closer to automated running
    
2002-11-27 Alain Magloire

	* model/org/eclipse/cdt/core/model/tests/CModelTests.java:
	Use CoreModel.getDefault().

2002-10-30 Alain Magloire

	* model/org/eclipse/cdt/core/model/tests/CModelTests.java (testGetNatureID):
	The fields and the methods use in this test was removed from the CoreModel class.
	(testHasNature): The method use in this case was refactor in the classes
	CProjectNature and CCProjectNature, fix the test.

2002-10-18 Peter Graves

	src/org/eclipse/cdt/testplugin/CProjectHelper.jada
    Cleanup of the CProjectHelper file to remove unused imports, commeted out code etc.
    
=======
2003-04-21 Andrew Niefer
	Added DOMFailedTests::testBug36713()
	Added DOMFailedTests::testBug36714()
	Added DOMFailedTests::testBug36717()
	Added DOMFailedTests::testBug36730()

2003-04-21 Andrew Niefer
	Added ScannerTestCase::testBug36695()
	Moved ScannerFailedTest::testBug36521 to ScannerTestCase::testBug36521()
	Moved ScannerFailedTest::testBug36509 to ScannerTestCase::testBug36509()
	Moved ScannerFailedTest::testBug36475 to ScannerTestCase::testBug36475() 
	Updated ScannerTestCase::testBug36047
	Updated ScannerTestCase::testBug36045

2003-04-20 John Camelon
	Added DOMTests::testBug36551().
	Adjusted AutomatedTest to turn on line numbering. 
	Added DOMFailedTests and 11 failed test cases.  

2003-04-17 John Camelon
	Updated DOMTests::testBug36600().
	Updated LineNumberTest::testDOMLineNos().  
	Added DOMTests::testBug36559().  

2003-04-17 Andrew Niefer
	Added AutomatedTest
	Added resources.cFiles
	Added resources.cppFiles

2003-04-16 John Camelon
	Added DOMTests::testBug36532().
	Added DOMTests::testBug36432(). 
	Added DOMTests::testBug36594().
	Added DOMTests::testBug36600(). 
	Added DOMTests::testArrayOfPointerToFunctions(). 

2003-04-15 John Camelon
	Added ScannerTestCase::testBug36434().
	Added ScannerTestCase::testMultipleLines(). 
	Added ParserTestSuite. 
	Added LineNumberTest.
	Updated CModelElementsTests to set the Nature of the C++ project appropriately.

2003-04-15 Andrew Niefer
	Moved ScannerFailedTest::testBug36047 to ScannerTestCase::testBug36047
	Added ScannerFailedTest::testBug36475

2003-04-13 John Camelon
	Added DOMTests::testPointersToFunctions.  

2003-04-11 John Camelon
	Added DOMTests::testBug36247().  

2003-04-11 Andrew Niefer
	Moved ScannerFailedTest::testBug36316 to ScannerTestCase::testBug36316
	Added ScannerFailedTest::testBug36047
	Added ScannerTestCase::testNestedRecursiveDefines

2003-04-10 John Camelon
	Added DOMTests::testBug36237().

2003-04-09 John Camelon
	Removed all the old Code Model Builder source that was no longer being used (NewModelBuilder.java, etc.). 
	Moved all the files in parser.util directory to the dom.  
	Organized imports. 
	Added DOMTests::testTemplateDeclarationOfMethod().
	Added DOMTests::testBug36250().  
	Added DOMTests::testBug36240(). 
	Added DOMTests::testBug36254().

2003-04-09 John Camelon
	Updated ScannerTest::testBug36045().
	Added ScannerTest::testBug36287().
	Added DOMTests::testBug36288(). 

2003-04-06 Andrew Niefer
	Added ParserSymbolTableTest::testOverloadRanking()

2003-04-04 Alain Magloire
	* src/org/eclipse/cdt/testplugin/util/VerifyDialog.java:
	Remove some warnings.

2003-04-03 John Camelon
	Updated ScannerTest::testSimpleIfdef() for bug36019.  
	Updated ScannerTest::testNumerics() for bug36020.  
	Added ScannerTest::testBug36045().  
	Updated DOMTests::testTemplateDeclaration() for template grammar updates.  

2003-04-01 Andrew Niefer
	ParserSymbolTableTest. modifications to using declaration tests to reflect changes in the
	symbol table.  Also added testUserDefinedConversionSequences()

2003-04-01 John Camelon
	Added testBug35906() to DOMTests.

2003-03-31 John Camelon
	Added testStruct() to DOMTests.  
	Added test35892()to ScannerTest. 

2003-03-31 Andrew Niefer
	In ParserSymbolTableTest, renamed testFunctionResolution_2() to testFunctionResolution_PointersAndBaseClasses(),
	and modified to reflect changes in function resolution.  
	Added testFunctionResolution_TypedefsAndPointers().
	
2003-03-31 John Camelon
	Added testWeirdStrings() and testNumerics() to ScannerTestCase. 
	Added testTemplateSpecialization(), testTemplateDeclaration(), testBug26467(), 
	  testTypedef() and testTemplateInstantiation() to DOMTests.

2003-03-28 John Camelon
	Added testConstructorChain() and testASMDefinition() to DOMTests.

2003-03-27 Alain Magloire
	Changes were done in the Core Model API, the hierarchy is now
	ICModel
		ICProject
			ICContainer
				ITranslationUnit
				IArchive
				IBinary
	We adjust the tests.
	* model/org/eclipse/cdt/core/model/tests/ArchiveTests.java
	* model/org/eclipse/cdt/core/model/tests/BinaryTests.java
	* model/org/eclipse/cdt/core/model/tests/TranslationUniTests.java
	* model/org/eclipse/cdt/core/model/tests/WorkingCopyTests.java

2003-03-26 Andrew Niefer
	In ParserSymbolTableTest : 
		updated all tests to reflect TypeInfo changes
		Added testFunctionResolution() & testFunctionResolution_2() in

2003-03-25 John Camelon
	Added testDeclSpecifier(), testNamespaceDefinition(), testLinkageSpecification(), 
	testUsingClauses() and testEnumSpecifier() to DOMTests.

2003-03-23 John Camelon
	Added ptrOperator() test to DOMTests.  
	Added testFunctionModifiers() test to DOMTests.
	Added testArrays() test to DOMTests.

2003-03-20 Alain Magloire

	Patch from Amer Hoda, tests for the CElement deltas for Translation Units.
	* model/org/eclipse/cdt/core/model/tests/ElementDeltaTest.java
	* model/org/eclipse/cdt/core/model/tests/resource/WorkingCopyTestStart.h
	
2003-03-19 Alain Magloire
	Patch from Amer Hoda, introducing a simple test for the core model.
	* model/org/eclipse/cdt/core/model/tests/WorkingCopyTests.java
	* model/org/eclipse/cdt/core/model/tests/resource/WorkingCopyTestStart.h

2003-03-18 John Camelon
	Updated DOMTests to validate simple case of a function declaration with multiple parameters.  
	* parser/org/eclipse/cdt/core/parser/tests/DOMTests.java

2003-03-11 John Camelon
	Updated DOMTests for core.internal.parser change of merging DeclarationSpecifier and DeclSpecifier
	Organized imports
	* parser/org/eclipse/cdt/core/parser/tests/DOMTests.java
	* parser/org/eclipse/cdt/core/parser/tests/ParserSymbolTableTest.java

2003-03-10 John Camelon
	Added macro pasting tests

2003-03-06 Andrew Niefer
	Added tests for exercising Namespaces & using directives in new parser's symbol table

2003-03-04 Doug Schaefer
	This is a pretty big patch, but it is the merge of the NewParser1 branch into the HEAD branch.  lder "parser") 
	JUnit tests for testing various pieces (source folder "parser" in cdt.ui.tests. 

2003-01-29 Peter Graves

    Fixed the warnings when accessing static methods
    * src/org/eclipse/cdt/testplugin/util/DialogCheck.java:
    * src/org/eclipse/cdt/testplugin/CTestPlugin.java
    * src/org/eclipse/cdt/testplugin/TestWorkbench.java
    * ChangeLog: make all entries have the same formatting

2002-12-17 Peter Graves

    * plugin.xml,test.xml: Some simple cleanups to remove refrences to the jdt and
	to move closer to automated running
    
2002-11-27 Alain Magloire

	* model/org/eclipse/cdt/core/model/tests/CModelTests.java:
	Use CoreModel.getDefault().

2002-10-30 Alain Magloire

	* model/org/eclipse/cdt/core/model/tests/CModelTests.java (testGetNatureID):
	The fields and the methods use in this test was removed from the CoreModel class.
	(testHasNature): The method use in this case was refactor in the classes
	CProjectNature and CCProjectNature, fix the test.

2002-10-18 Peter Graves

	src/org/eclipse/cdt/testplugin/CProjectHelper.jada
    Cleanup of the CProjectHelper file to remove unused imports, commeted out code etc.
    
>>>>>>> 1.36

Back to the top