-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5005 lines (3759 loc) · 210 KB
/
ChangeLog
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
Wed Mar 5 22:08:03 UTC 2014 Adam Mitz <mitza@ociweb.com>
* expected/*/*make/**:
Updated for MPC r2191: Wed Mar 5 21:59:52 UTC 2014 Adam Mitz
Mon Aug 19 09:55:47 CDT 2013 Adam Mitz <mitza@ociweb.com>
* expected/*/make/**/Makefile.*:
Updated for MPC r2148: Mon Aug 19 09:52:47 CDT 2013 Adam Mitz
Tue Jul 9 15:15:12 UTC 2013 Adam Mitz <mitza@ociweb.com>
* expected/wide_coverage/make/source/Makefile.source_lib:
* expected/wide_coverage/make/source/Makefile.source:
* expected/wide_coverage/make/generator/Makefile.generator:
* expected/wide_coverage/make/generator/Makefile.generator_be:
* expected/options/make/source/Makefile.basic_Zargaflan:
Updated for MPC r2143: Tue Jul 9 15:06:50 UTC 2013 Adam Mitz
Mon Jun 24 19:39:08 UTC 2013 Adam Mitz <mitza@ociweb.com>
* expected/**/make/Makefile.*:
Updated for MPC r2140: Mon Jun 24 18:55:51 UTC 2013 Adam Mitz
Tue Feb 21 20:24:25 UTC 2012 Adam Mitz <mitza@ociweb.com>
* expected/relative/vc10/build/build_exe.vcxproj:
* expected/relative/vc10/build/build_lib.vcxproj:
Updated to work with the following MPC change:
Tue Feb 21 20:13:24 UTC 2012 Adam Mitz <mitza@ociweb.com>
Mon Dec 5 15:22:49 UTC 2011 Chad Elliott <elliott_c@ociweb.com>
* expected/*/Makefile.*:
Update for my most recent set of changes.
* utils/nightly.sh:
Allow passing options.
Wed Nov 9 16:08:42 UTC 2011 Chad Elliott <elliott_c@ociweb.com>
* expected/features_custom_only/wix/source/fco.wxi:
* expected/multi_custom_mapping/wix/mpc_test.wxi:
Updated from recent MPC version.
Fri Jun 10 14:54:03 UTC 2011 Adam Mitz <mitza@ociweb.com>
* expected/wide_coverage/vc10/source/source_lib.vcxproj:
Updated to account for MPC change:
Fri Jun 10 14:51:32 UTC 2011 Adam Mitz <mitza@ociweb.com>
Wed Apr 27 14:43:25 UTC 2011 Adam Mitz <mitza@ociweb.com>
* expected/MultiWS/make:
Added expected results for -type make and the MultiWS test.
* expected/*/make/**/Makefile*:
Updated to account for MPC changes:
Wed Apr 27 14:07:44 UTC 2011 Adam Mitz <mitza@ociweb.com>
Wed Apr 27 14:31:56 UTC 2011 Adam Mitz <mitza@ociweb.com>
* tests/wide_coverage/generator/generator.cpp:
Added #includes for C standard library headers. Some compiler
versions are more strict about which #includes must be used.
Tue Apr 5 17:23:14 UTC 2011 Don Hudson <hudsond@ociweb.com>
* expected/command_helper/bmake/Makefile.simple.bmak:
* expected/command_helper/em3/simple.vcp:
* expected/command_helper/nmake/Makefile.simple.mak:
* expected/command_helper/vc10/simple.vcxproj:
* expected/command_helper/vc10/simple.vcxproj.filters:
* expected/command_helper/vc6/simple.dsp:
* expected/command_helper/vc7/simple.vcproj:
* expected/command_helper/vc71/simple.vcproj:
* expected/command_helper/vc8/simple.vcproj:
* expected/command_helper/vc9/simple.vcproj:
Returned line feeds to Windows format. Shouldn't have changed them.
* expected/conditional_specific_verbatim_wildcards/rpmspec/source.spec:
* expected/wide_coverage/html/source/source_lib.html:
Changed line feeds to UNIX format.
Tue Apr 5 14:27:35 UTC 2011 Don Hudson <hudsond@ociweb.com>
* expected/MultiWS/html/Multiws/src/bar_testing.html:
* expected/MultiWS/html/Multiws/src/foo_testing.html:
* expected/aggregated/rpmspec/dir1/bar.spec:
* expected/aggregated/rpmspec/dir2/dir2.spec:
* expected/aggregated_env/rpmspec/t/i/i.spec:
* expected/buildflags/html/source/bfs_exe.html:
* expected/buildflags/html/source/bfs_lib.html:
* expected/buildflags/html/source/bfs_lib.ins:
* expected/circular_dependencies/html/NodeApplication/NodeApplication.html:
* expected/circular_dependencies/html/NodeApplication/RTNA_Configurator.html:
* expected/circular_dependencies/html/NodeManager/Monitor_Monitorlib.html:
* expected/circular_dependencies/html/NodeManager/NodeManager.html:
* expected/circular_dependencies/html/NodeManager/NodeManager_stub.html:
* expected/circular_dependencies/html/NodeManager/lib.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_exec.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_stub.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_svnt.html:
* expected/circular_dependencies/html/TargetManager/TMClient.html:
* expected/command_helper/bmake/Makefile.simple.bmak:
* expected/command_helper/em3/simple.vcp:
* expected/command_helper/ghs/simple.gpj:
* expected/command_helper/gnuace/GNUmakefile.simple:
* expected/command_helper/html/simple.html:
* expected/command_helper/make/Makefile.simple:
* expected/command_helper/nmake/Makefile.simple.mak:
* expected/command_helper/sle/simple.vpj:
* expected/command_helper/vc10/simple.vcxproj:
* expected/command_helper/vc10/simple.vcxproj.filters:
* expected/command_helper/vc6/simple.dsp:
* expected/command_helper/vc7/simple.vcproj:
* expected/command_helper/vc71/simple.vcproj:
* expected/command_helper/vc8/simple.vcproj:
* expected/command_helper/vc9/simple.vcproj:
* expected/command_helper/wb30/wb_simple/.wrmakefile:
* expected/command_helper/wb30/wb_simple/.wrproject:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_A.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_B.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_C.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_D.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_E.html:
* expected/dependencies/html/foo.html:
* expected/dependencies/html/foo__someexecutable.html:
* expected/dependencies/html/foo__somelib.html:
* expected/features_custom_only/html/source/fco.html:
* expected/features_custom_only/html/source/fco_use.html:
* expected/grouping/html/source/grouping_A.html:
* expected/grouping/html/source/grouping_B.html:
* expected/grouping/html/source/grouping_C.html:
* expected/grouping/html/source/grouping_D.html:
* expected/grouping/html/source/grouping_E.html:
* expected/grouping/html/source/grouping_F.html:
* expected/more_workspaces/html/src/src.html:
* expected/multiple_define_customs/html/foo.html:
* expected/relative/html/build/build_exe.html:
* expected/relative/html/build/build_lib.html:
* expected/value_template/html/foo_a.html:
* expected/value_template/html/foo_b.html:
* expected/value_template/html/foo_c.html:
* expected/wide_coverage/html/generator/generator.html:
* expected/wide_coverage/html/generator/generator_be.html:
* expected/wider_coverage/gnuace/GNUmakefile:
* expected/wider_coverage/html/Some_Test_Other_Lib.html:
* expected/wider_coverage/html/Some_Test_Other_Lib.ins:
* expected/wider_coverage/html/Some_Test_Simple_Lib.html:
* expected/wider_coverage/html/Some_Test_Simple_Lib.ins:
* expected/wider_coverage/html/simple.html:
* expected/wider_coverage/html/wider_coverage_workspace.html:
Changed line feeds to UNIX format.
Tue Apr 5 12:57:23 UTC 2011 Don Hudson <hudsond@ociweb.com>
* README:
Fixed typo.
Added comment that $QTDIR and $PERL5_INCLUDE need to be set for UNIX build support.
Added comment that base.cfg now can optionally be added to $MPC_ROOT/config with content
$TEST_ROOT = $TEST_MPC_CONFIG for MPC_TEST to use MPC_TEST/config/MPC.cfg or
$TEST_ROOT/config/MPC.cfg if it exists.
* config/MPC.cfg:
Added file. Default MPC.cfg for MPC_TEST. Does not include TAO_ROOT/DDS_ROOT/CIAO_ROOT
references as these can cause some test results to change on systems where
these are defined. Turned on info logging.
* config/html.mpb:
Added file. Excludes .html files from Documentation Files for html project
type. Needed for the case where there are multiple projects in the same directory,
otherwise generated html will be added to the document files for the second and
subsequent projects that are processed, which is indeterminate.
* expected/MultiWS/html/Multiws/src/bar_testing.html:
* expected/MultiWS/html/Multiws/src/foo_testing.html:
* expected/buildflags/html/source/bfs_exe.html:
* expected/buildflags/html/source/bfs_lib.html:
* expected/buildflags/html/source/bfs_lib.ins:
* expected/circular_dependencies/html/NodeApplication/NodeApplication.html:
* expected/circular_dependencies/html/NodeApplication/RTNA_Configurator.html:
* expected/circular_dependencies/html/NodeManager/Monitor_Monitorlib.html:
* expected/circular_dependencies/html/NodeManager/NodeManager.html:
* expected/circular_dependencies/html/NodeManager/NodeManager_stub.html:
* expected/circular_dependencies/html/NodeManager/lib.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_exec.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_stub.html:
* expected/circular_dependencies/html/TargetManager/CIAO_TargetManager_svnt.html:
* expected/circular_dependencies/html/TargetManager/TMClient.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_A.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_B.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_C.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_D.html:
* expected/conditional_specific_verbatim_wildcards/html/source/csvw_E.html:
* expected/dependencies/html/foo.html:
* expected/dependencies/html/foo__someexecutable.html:
* expected/dependencies/html/foo__somelib.html:
* expected/features_custom_only/html/source/fco.html:
* expected/features_custom_only/html/source/fco_use.html:
* expected/features_custom_only/html/source/other.html:
* expected/grouping/html/source/grouping_A.html:
* expected/grouping/html/source/grouping_B.html:
* expected/grouping/html/source/grouping_C.html:
* expected/grouping/html/source/grouping_D.html:
* expected/grouping/html/source/grouping_E.html:
* expected/grouping/html/source/grouping_F.html:
* expected/grouping/html/source/grouping_G.html:
* expected/more_workspaces/html/src/src.html:
* expected/multiple_define_customs/html/foo.html:
* expected/relative/html/build/build_exe.html:
* expected/relative/html/build/build_lib.html:
* expected/value_template/html/foo_a.html:
* expected/value_template/html/foo_b.html:
* expected/value_template/html/foo_c.html:
* expected/wide_coverage/html/generator/generator.html:
* expected/wide_coverage/html/generator/generator_be.html:
* expected/wide_coverage/html/source/source_lib.html:
* expected/wider_coverage/html/Some_Test_Other_Lib.html:
* expected/wider_coverage/html/Some_Test_Other_Lib.ins:
* expected/wider_coverage/html/Some_Test_Simple_Lib.html:
* expected/wider_coverage/html/Some_Test_Simple_Lib.ins:
* expected/wider_coverage/html/simple.html:
* expected/wider_coverage/html/wider_coverage_workspace.html:
Results updated because .html files are not considered documentation
when testing html type. See comment on config/html.mpb. Also,
because html.mpb is now shown in MPC inheritance hierarchy.
* expected/aggregated/rpmspec/dir1/bar.spec:
* expected/aggregated/rpmspec/dir2/dir2.spec:
Updated to reflect addtional test content.
* expected/aggregated_env/rpmspec/t/i/i.spec:
* expected/conditional_specific_verbatim_wildcards/rpmspec/source.spec:
Updated to reflect generation of %pre section.
* expected/command_helper/*:
Results updated because of correction to tests/command_helper/additional_options.txt.
* expected/wider_coverage/gnuace/GNUmakefile:
Result updated because link file was missing from file, but wasn't
doesn't caught because it doesn't cause the regression test to fail.
* run_tests.pl:
Added support for optionally using MPC_TEST/config/MPC.cfg and
$TEST_ROOT/config/MPC.cfg. See comment on README.
Added test and type headings to log file.
* tests/MultiWS/Multiws/src/bar.mpc:
* tests/MultiWS/Multiws/src/foo.mpc:
* tests/buildflags/source/bfs.mpc:
* tests/circular_dependencies/NodeApplication/NodeApplication.mpc:
* tests/circular_dependencies/NodeManager/Monitor.mpc:
* tests/circular_dependencies/NodeManager/NodeManager.mpc:
* tests/circular_dependencies/TargetManager/TM_Client.mpc:
* tests/circular_dependencies/TargetManager/TargetManager.mpc:
* tests/conditional_specific_verbatim_wildcards/source/csvw.mpc:
* tests/dependencies/foo.mpc:
* tests/features_custom_only/source/fco.mpc:
* tests/features_custom_only/source/other.mpc:
* tests/grouping/source/grouping.mpc:
* tests/more_workspaces/src/src.mpc:
* tests/multiple_define_customs/foo.mpc:
* tests/no_workspace/src/foo.mpc:
* tests/relative/build/build.mpc:
* tests/value_template/foo.mpc:
* tests/wide_coverage/generator/generator.mpc:
* tests/wide_coverage/source/source_lib.mpc:
* tests/wider_coverage/other_lib.mpc:
* tests/wider_coverage/simple.mpc:
* tests/wider_coverage/simple_lib.mpc:
Added html.mpb as parent project. See comment on config/html.mpb.
* tests/aggregated/aggregated.mwc:
* tests/aggregated/dir2/dir2.mwc:
Added content to test multi-line assignments, %pre section and URL tag
of generated RPM spec files.
* tests/aggregated/dir1/bar.mwc:
Put $PWD used in command line in quotes so can handle path with spaces.
* tests/backwards/config/MPC_PHONY.cfg:
Added file so this test will use $MPC_ROOT/config/MPC.cfg.
* tests/command_helper/additional_options.txt:
Corrected erroneous use of -value_tempate with -value_project.
This was causing a warning and bad test results.
* tests/command_helper/config/idl2jni.mpb:
Removed comments that are no longer relavent.
* tests/more_options/environment.txt:
Defined some environment variables as the same value to stop
the test from trying to expand them and giving warning that they
don't exist.
* expected/MultiWS/automake/*:
* expected/MultiWS/bmake/*:
* expected/MultiWS/ghs/*:
* expected/MultiWS/gnuace/*:
* expected/MultiWS/make/*:
* expected/MultiWS/nmake/*:
Removed expected results as these types aren't setup to support
multiple workspace generation.
Wed Dec 22 17:41:51 UTC 2010 Adam Mitz <mitza@ociweb.com>
* README:
typo fix
* tests/aggregated/aggregated.mwc:
Extended this test to use workspace-scoped specifics.
* expected/aggregated/make/dir1/dir2/Makefile.foo:
* expected/aggregated/make/dir1/dir4/Makefile.dir4:
* expected/aggregated/make/dir1/dir5/Makefile.dir5:
* expected/aggregated/make/dir2/Makefile.another:
Re-generated for the above change.
* expected/aggregated/rpmspec:
* expected/aggregated_env/rpmspec:
* expected/buildflags/rpmspec:
* expected/conditional_specific_verbatim_wildcards/rpmspec:
* expected/options/rpmspec:
* expected/wider_coverage/rpmspec:
Added expected results for -type rpmspec.
* run_tests.pl:
Ignore timestamp lines during comparison.
* .cvsignore:
Removed this file.
Mon Dec 20 18:57:26 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/circular_dependencies/vc10/*/*:
* expected/implicit_projects/vc10/source/one/one.vcxproj:
* expected/more_workspaces/vc10/src/src.vcxproj:
* expected/template_input/vc10/lib/lib.vcxproj:
* expected/wide_coverage/vc10/source/source_lib.vcxproj:
* expected/wider_coverage/vc10/*:
Re-generated after the MPC commit: Mon Dec 20 18:55:04 UTC 2010.
* run_tests.pl:
Typo in usage message.
Wed Dec 1 21:33:19 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/implicit_resources/cdt6/dir1/cdt_dir1/.cproject:
* expected/implicit_resources/cdt6/dir3/cdt_dir3/.cproject:
* expected/multiple_define_customs/cdt6/cdt_foo/.cproject:
* expected/multiple_define_customs/cdt7/cdt_foo/.cproject:
Re-generated after the MPC commit: Wed Dec 1 00:21:47 UTC 2010.
Fri Nov 5 12:23:56 UTC 2010 Chad Elliott <elliott_c@ociweb.com>
* expected/*/wix:
Added expected results to all tests for the wix type.
* run_tests.pl:
Fixed a bug where the --break option would cause testing to stop
whether there was an error or not.
* tests/mixed_languages/mixed_languages.mwc:
* tests/webapp/source/aly.mpc:
* tests/webapp/source/cras.mpc:
Added the 'make_group' template variable to test alternate logic
in the WixWorkspaceCreator.
* utils/add_expected_directories.sh:
Removed the --config-option as not all versions of svn support it.
* utils/nightly.sh:
Update the test directory before running the tests.
Thu Nov 4 17:51:19 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/mixed_languages_refs/gnuace/o/GNUmakefile.o:
Adding file which should have been added before.
Wed Nov 3 18:56:20 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/mixed_languages_refs/wix/mixed_languages_refs.wxi:
* expected/mixed_languages_refs/wix/z:
* expected/mixed_languages_refs/wix/z/z.wxi:
C# language is now generated in -type wix.
Wed Nov 3 14:49:20 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/*/wb30/*:
Re-generated wb30 after the MPC commit: Wed Nov 3 14:31:32 UTC 2010.
Mon Nov 1 19:14:54 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/multiple_define_customs/cdt6:
* expected/multiple_define_customs/cdt7:
Added expected results for cdt6 and cdt7, for this one test.
Mon Nov 1 19:05:32 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/implicit_resources/cdt6/dir1/cdt_dir1/.cproject:
* expected/implicit_resources/cdt6/dir3/cdt_dir3/.cproject:
* expected/multi_custom_mapping/vc10/mpc_test.vcxproj:
* expected/multi_custom_mapping/vc10/mpc_test.vcxproj.filters:
* expected/qt/vc10/qt_uic_moc.vcxproj:
* expected/qt/vc10/qt_uic_moc.vcxproj.filters:
Updated to reflect my MPC change from Mon Nov 1 18:21:59 UTC 2010.
* tests/multiple_define_customs/dep1:
* tests/multiple_define_customs/dep2:
* tests/multiple_define_customs/foo.mpc:
* expected/multiple_define_customs/*:
Extended this test to use explicit dependencies (<<) on the custom
type input files.
Mon Oct 4 15:38:38 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/mixed_languages/vc10/csharp/csharp.csproj:
* expected/mixed_languages/vc8/csharp/csharp.csproj:
* expected/mixed_languages/vc9/csharp/csharp.csproj:
* tests/mixed_languages/csharp/csharp.mpc:
* tests/mixed_languages/csharp/embres.xml:
Updated to test the C# Embedded_Resource_Files componet name.
Tue Sep 21 18:19:31 UTC 2010 Chad Elliott <elliott_c@ociweb.com>
* expected/workspaces/make/c/Makefile:
* expected/workspaces/make/c/good/Makefile:
* expected/workspaces/make/c/good/Makefile.good:
Reverted a local change in my MPC workspace and regenerated.
Tue Sep 21 18:10:34 UTC 2010 Chad Elliott <elliott_c@ociweb.com>
* expected/*/make/*:
Updated to reflect my change from Fri Sep 17 11:25:48 UTC 2010.
* run_tests.pl:
Elaborated on the --coverage option.
Mon Sep 13 21:59:09 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/mixed_languages/vc10/csharp/csharp.csproj:
* expected/mixed_languages/vc8/csharp/csharp.csproj:
* expected/mixed_languages/vc9/csharp/csharp.csproj:
* expected/mixed_languages_refs/vc10/z/z.csproj:
* expected/mixed_languages_refs/vc8/z/z.csproj:
* expected/mixed_languages_refs/vc9/z/z.csproj:
* expected/webapp/vc10/source/aly.csproj:
* expected/webapp/vc10/source/cras.csproj:
* expected/webapp/vc8/source/aly.csproj:
* expected/webapp/vc8/source/cras.csproj:
* expected/webapp/vc9/source/aly.csproj:
* expected/webapp/vc9/source/cras.csproj:
New test results based on latest vc8csharp.mpd changes.
Mon Sep 13 20:35:35 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/*/gnuace/*:
New test results based on latest gnu.mpd changes.
Wed Sep 1 18:58:43 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/command_helper/gnuace/GNUmakefile.simple:
* expected/custom_generates_custom/gnuace/src/GNUmakefile.src:
* expected/features_custom_only/gnuace/source/GNUmakefile.fco:
* expected/features_custom_only/gnuace/source/GNUmakefile.other:
* expected/flex_bison/gnuace/GNUmakefile.flex_bison:
* expected/grouping/gnuace/source/GNUmakefile.grouping_A:
* expected/grouping/gnuace/source/GNUmakefile.grouping_B:
* expected/grouping/gnuace/source/GNUmakefile.grouping_C:
* expected/grouping/gnuace/source/GNUmakefile.grouping_D:
* expected/grouping/gnuace/source/GNUmakefile.grouping_E:
* expected/grouping/gnuace/source/GNUmakefile.grouping_F:
* expected/grouping/gnuace/source/GNUmakefile.grouping_G:
* expected/multiple_define_customs/gnuace/GNUmakefile.foo:
* expected/partial_implicit/gnuace/explicit/GNUmakefile.explicit:
* expected/psuedo_replacement/gnuace/GNUmakefile.zz:
* expected/swig_perl/gnuace/GNUmakefile.MyModule:
* expected/wide_coverage/gnuace/source/GNUmakefile.source_lib:
* expected/wide_coverage/gnuace/source/fake/GNUmakefile.fake:
New test results based on latest gnu.mpd changes.
Tue Aug 31 14:26:03 UTC 2010 Adam Mitz <mitza@ociweb.com>
* run_tests.pl:
Moved setting the MPC_CDT_* environment variables to the
determine_setup() perl function.
Tue Aug 31 14:14:11 UTC 2010 Adam Mitz <mitza@ociweb.com>
* run_tests.pl:
Save and restore changed environment variables from environment.txt.
This prevents one test from interfering with all subsequent tests.
* tests/conditional_specific_verbatim_wildcards/environment.txt:
Set MPC_GHS_UNIX=1 so ghs is treated a Unix for this test.
* expected/conditional_specific_verbatim_wildcards/ghs/source/*.gpj:
Re-generated for the above change.
Mon Aug 30 21:47:57 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/conditional_specific_verbatim_wildcards/vc10/*:
* expected/conditional_specific_verbatim_wildcards/vc9/*:
Re-generated based on the change below:
* tests/conditional_specific_verbatim_wildcards/source/csvw.mpc:
Use prop:windows instead of listing individual types, this accounts
for vc9 and vc10 which were previously excluded.
Mon Aug 30 19:29:31 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/*/nmake/*:
Re-generated nmake results based on the MPC change:
Mon Aug 30 19:21:23 UTC 2010 Adam Mitz <mitza@ociweb.com>
* run_tests.pl:
Set environment variables to force -type cdt6 into Linux mode.
Mon Aug 30 18:39:12 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/implicit_resources/cdt6/dir3/cdt_dir3/.cproject:
* tests/implicit_resources/additional_options.txt:
Added -value_template use_threads=1 for cdt6 to work-around bug
#3880, and re-generated the expected output.
Sat Aug 28 04:21:56 UTC 2010 Brian Johnson <johnsonb@ociweb.com>
* expected/dependencies/vc10/foo__someexecutable.vcxproj:
* expected/dependencies/vc10/foo__someexecutable.vcxproj.filters:
* expected/dependencies/vc10/foo__somelib.vcxproj:
* expected/dependencies/vc10/foo__somelib.vcxproj.filters:
Missed adding files for vc10 dependencies added during
dependent_libs keyword addition.
Fri Aug 27 21:32:26 UTC 2010 Brian Johnson <johnsonb@ociweb.com>
* expected/dependencies/wb26/foo/.wrmakefile:
* expected/dependencies/wb30/wb_foo/.wrmakefile:
Changes in expected due to addition of dependent_libs
to wb26.
Fri Aug 27 18:19:51 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/dependencies/gnuace/GNUmakefile.foo:
* expected/dependent_libs/gnuace/GNUmakefile.foo:
Updated to correspond to the latest gnu.mpd changes in ACE.
Thu Aug 26 21:08:49 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/MultiWS/bmake/Multiws/src/Makefile.bar_testing.bmak:
* expected/MultiWS/vc8/Multiws/src/bar_testing.vcproj:
Fixed line endings and svn properties.
Thu Aug 26 20:28:03 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/MultiWS/em3/Multiws/src/bar_testing.vcp:
* expected/MultiWS/html/Multiws/src/bar_testing.html:
* expected/MultiWS/nmake/Multiws/src/Makefile.bar_testing.mak:
* expected/MultiWS/vc6/Multiws/src/bar_testing.dsp:
* expected/MultiWS/vc7/Multiws/src/bar_testing.vcproj:
* expected/MultiWS/vc71/Multiws/src/bar_testing.vcproj:
Fixed line endings and svn properties.
* expected/wider_coverage/vc8/Some_Test_Other_Lib.vcproj:
* expected/wider_coverage/vc8/Some_Test_Simple_Lib.vcproj:
* expected/wider_coverage/vc8/simple.vcproj:
Re-generated with correct ACE_ROOT set.
* run_tests.pl:
Don't skip ACE_HAS_MFC lines when doing --expected.
Added vc10 project file names to the list of files to clean.
Thu Aug 26 15:11:00 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/implicit_resources/gnuace:
Added expected results for gnuace for the implicit_resources test.
Thu Aug 26 14:56:07 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/wider_coverage/vc10/Some_Test_Other_Lib.vcxproj:
* expected/wider_coverage/vc10/Some_Test_Simple_Lib.vcxproj:
* expected/wider_coverage/vc10/simple.vcxproj:
* expected/wider_coverage/vc10/wider_coverage.sln:
* expected/wider_coverage/vc9/Some_Test_Other_Lib.vcproj:
* expected/wider_coverage/vc9/Some_Test_Simple_Lib.vcproj:
* expected/wider_coverage/vc9/simple.vcproj:
* expected/wider_coverage/vc9/wider_coverage.sln:
Re-generated with correct ACE_ROOT set and to account for latest
changes in MPC.
Thu Aug 26 14:10:35 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/*/wb30/*:
* expected/*/wb26/*:
Fixed bad line endings from
Tue Aug 24 14:02:18 UTC 2010 Adam Mitz <mitza@ociweb.com>
Wed Aug 25 22:45:57 UTC 2010 Brian Johnson <johnson_b@ociweb.com>
* expected/dependencies/ghs/foo.gpj:
* expected/dependencies/html/dependencies_workspace.html:
* expected/dependencies/make/Makefile:
* expected/dependencies/wb26/foo/.project:
* expected/dependencies/wb26/foo__someexecutable/.project:
* expected/dependencies/wb26/foo__somelib/.project:
* expected/dependencies/wb26/org.eclipse.core.resources.prefs:
* expected/dependencies/wb26/wb26projects.lst:
* expected/dependencies/wb30/org.eclipse.core.resources.prefs:
* expected/dependencies/wb30/wb_foo/.project:
* expected/dependencies/wb30/wb_foo__someexecutable/.project:
* expected/dependencies/wb30/wb_foo__somelib/.project:
* expected/dependent_libs/ghs/foo.gpj:
Fixing line ending problems on linux.
Wed Aug 25 21:54:48 UTC 2010 Brian Johnson <johnsonb@ociweb.com>
* expected/dependencies/automake/Makefile.am:
* expected/dependencies/bmake/Makefile.bmak:
* expected/dependencies/em3/dependencies.vcw:
* expected/dependencies/gnuace/GNUmakefile:
* expected/dependencies/gnuace/GNUmakefile.foo:
* expected/dependencies/html/dependencies_workspace.html:
* expected/dependencies/make/Makefile:
* expected/dependencies/nmake/Makefile:
* expected/dependencies/vc10/dependencies.sln:
* expected/dependencies/vc6/dependencies.dsw:
* expected/dependencies/vc7/dependencies.sln:
* expected/dependencies/vc71/dependencies.sln:
* expected/dependencies/vc8/dependencies.sln:
* expected/dependencies/vc9/dependencies.sln:
* expected/dependencies/wb26/foo/.project:
* expected/dependencies/wb26/foo__someexecutable/.project:
* expected/dependencies/wb26/foo__somelib/.project:
* expected/dependencies/wb26/org.eclipse.core.resources.prefs:
* expected/dependencies/wb26/wb26projects.lst:
* expected/dependencies/wb30/org.eclipse.core.resources.prefs:
* expected/dependencies/wb30/wb30projects.lst:
* expected/dependencies/wb30/wb_foo/.project:
* expected/dependencies/wb30/wb_foo__someexecutable/.project:
* expected/dependencies/wb30/wb_foo__somelib/.project:
Merges for octet-stream files in dependencies were incorrect.
This has the dependent_libs keyword generated changes.
Wed Aug 25 21:37:37 UTC 2010 Brian Johnson <johnsonb@ociweb.com>
* .:
* BranchChangeLog:
* expected/command_helper/nmake/Makefile.simple.mak:
* expected/custom_generates_custom/nmake/src/Makefile.src.mak:
* expected/dependencies/bmake/Makefile.foo__someexecutable.bmak:
* expected/dependencies/bmake/Makefile.foo__somelib.bmak:
* expected/dependencies/em3/foo.vcp:
* expected/dependencies/em3/foo__someexecutable.vcp:
* expected/dependencies/em3/foo__somelib.vcp:
* expected/dependencies/ghs/default.gpj:
* expected/dependencies/ghs/foo.gpj:
* expected/dependencies/ghs/foo__someexecutable.gpj:
* expected/dependencies/ghs/foo__someexecutable_int.gpj:
* expected/dependencies/ghs/foo__someexecutable_int.int:
* expected/dependencies/ghs/foo__somelib.gpj:
* expected/dependencies/gnuace/GNUmakefile.foo__someexecutable:
* expected/dependencies/gnuace/GNUmakefile.foo__somelib:
* expected/dependencies/html/foo.html:
* expected/dependencies/html/foo__someexecutable.html:
* expected/dependencies/html/foo__somelib.html:
* expected/dependencies/make/Makefile.foo:
* expected/dependencies/make/Makefile.foo__someexecutable:
* expected/dependencies/make/Makefile.foo__somelib:
* expected/dependencies/nmake/Makefile.foo.mak:
* expected/dependencies/nmake/Makefile.foo__someexecutable.mak:
* expected/dependencies/nmake/Makefile.foo__somelib.mak:
* expected/dependencies/vc10/foo.vcxproj:
* expected/dependencies/vc10/foo.vcxproj.filters:
* expected/dependencies/vc6/foo.dsp:
* expected/dependencies/vc6/foo__someexecutable.dsp:
* expected/dependencies/vc6/foo__somelib.dsp:
* expected/dependencies/vc7/foo.vcproj:
* expected/dependencies/vc7/foo__someexecutable.vcproj:
* expected/dependencies/vc7/foo__somelib.vcproj:
* expected/dependencies/vc71/foo.vcproj:
* expected/dependencies/vc71/foo__someexecutable.vcproj:
* expected/dependencies/vc71/foo__somelib.vcproj:
* expected/dependencies/vc8/foo.vcproj:
* expected/dependencies/vc8/foo__someexecutable.vcproj:
* expected/dependencies/vc8/foo__somelib.vcproj:
* expected/dependencies/vc9/foo.vcproj:
* expected/dependencies/wb26/foo/.project:
* expected/dependencies/wb26/foo/.wrmakefile:
* expected/dependencies/wb26/foo/.wrproject:
* expected/dependencies/wb26/foo__someexecutable:
* expected/dependencies/wb26/foo__someexecutable/.project:
* expected/dependencies/wb26/foo__someexecutable/.wrmakefile:
* expected/dependencies/wb26/foo__someexecutable/.wrproject:
* expected/dependencies/wb26/foo__somelib:
* expected/dependencies/wb26/foo__somelib/.project:
* expected/dependencies/wb26/foo__somelib/.wrmakefile:
* expected/dependencies/wb26/foo__somelib/.wrproject:
* expected/dependencies/wb30/wb_foo/.project:
* expected/dependencies/wb30/wb_foo/.wrmakefile:
* expected/dependencies/wb30/wb_foo/.wrproject:
* expected/dependencies/wb30/wb_foo__someexecutable:
* expected/dependencies/wb30/wb_foo__someexecutable/.cproject:
* expected/dependencies/wb30/wb_foo__someexecutable/.project:
* expected/dependencies/wb30/wb_foo__someexecutable/.wrmakefile:
* expected/dependencies/wb30/wb_foo__someexecutable/.wrproject:
* expected/dependencies/wb30/wb_foo__somelib:
* expected/dependencies/wb30/wb_foo__somelib/.cproject:
* expected/dependencies/wb30/wb_foo__somelib/.project:
* expected/dependencies/wb30/wb_foo__somelib/.wrmakefile:
* expected/dependencies/wb30/wb_foo__somelib/.wrproject:
* expected/dependent_libs:
* expected/dependent_libs/automake:
* expected/dependent_libs/automake/Makefile.am:
* expected/dependent_libs/automake/configure.ac.Makefiles:
* expected/dependent_libs/em3:
* expected/dependent_libs/em3/dependent_libs.vcw:
* expected/dependent_libs/em3/foo.vcp:
* expected/dependent_libs/ghs:
* expected/dependent_libs/ghs/default.gpj:
* expected/dependent_libs/ghs/foo.gpj:
* expected/dependent_libs/gnuace:
* expected/dependent_libs/gnuace/GNUmakefile:
* expected/dependent_libs/gnuace/GNUmakefile.foo:
* expected/dependent_libs/make:
* expected/dependent_libs/make/Makefile:
* expected/dependent_libs/make/Makefile.foo:
* expected/dependent_libs/nmake:
* expected/dependent_libs/nmake/Makefile:
* expected/dependent_libs/nmake/Makefile.foo.mak:
* expected/dependent_libs/vc6:
* expected/dependent_libs/vc6/dependent_libs.dsw:
* expected/dependent_libs/vc6/foo.dsp:
* expected/dependent_libs/vc7:
* expected/dependent_libs/vc7/dependent_libs.sln:
* expected/dependent_libs/vc7/foo.vcproj:
* expected/dependent_libs/vc71:
* expected/dependent_libs/vc71/dependent_libs.sln:
* expected/dependent_libs/vc71/foo.vcproj:
* expected/dependent_libs/vc8:
* expected/dependent_libs/vc8/dependent_libs.sln:
* expected/dependent_libs/vc8/foo.vcproj:
* expected/features_custom_only/nmake/source/Makefile.fco.mak:
* expected/features_custom_only/nmake/source/Makefile.other.mak:
* expected/flex_bison/nmake/Makefile.flex_bison.mak:
* expected/grouping/nmake/source/Makefile.grouping_A.mak:
* expected/grouping/nmake/source/Makefile.grouping_B.mak:
* expected/grouping/nmake/source/Makefile.grouping_C.mak:
* expected/grouping/nmake/source/Makefile.grouping_D.mak:
* expected/grouping/nmake/source/Makefile.grouping_E.mak:
* expected/grouping/nmake/source/Makefile.grouping_F.mak:
* expected/grouping/nmake/source/Makefile.grouping_G.mak:
* expected/more_options/nmake/c++/Makefile.foo.mak:
* expected/more_options/wb30/c++/wb_foo/.wrproject:
* expected/more_workspaces/wb26/src/src/.project:
* expected/multi_custom_mapping/nmake/Makefile.mpc_test.mak:
* expected/multiple_define_customs/nmake/Makefile.foo.mak:
* expected/no_workspace/nmake/src/Makefile.foo.mak:
* expected/partial_implicit/nmake/explicit/Makefile.explicit.mak:
* expected/psuedo_replacement/nmake/Makefile.zz.mak:
* expected/qt/nmake/Makefile.qt_uic_moc.mak:
* expected/swig_perl/nmake/Makefile.MyModule.mak:
* expected/wide_coverage/nmake/source/Makefile.source.mak:
* expected/wide_coverage/nmake/source/Makefile.source_lib.mak:
* expected/wide_coverage/nmake/source/fake/Makefile.fake.mak:
* tests/dependencies/foo.mpc:
* tests/dependencies/something.cpp:
* tests/dependencies/something_export.h:
* tests/dependencies/somethingthatworks.cpp:
* tests/dependent_libs:
* tests/dependent_libs/bar.ar:
* tests/dependent_libs/build_entry.txt:
* tests/dependent_libs/foo.ar:
* tests/dependent_libs/foo.cpp:
* tests/dependent_libs/foo.mpc:
* tests/dependent_libs/nospace.txt:
Merged changes from branch "dependent_libs". Added
the keyword dependent_libs to dependencies/foo.mpc
to verify that the output compiled. Added dependent_libs
test to test each path for the keyword in the templates.
Tue Aug 24 20:50:45 UTC 2010 Adam Mitz <mitza@ociweb.com>
* utils/add_expected_directories.sh:
"svn add" should not ignore any commonly-ignored files like vcproj.
* expected/mixed_languages/vc8/csharp/csharp.csproj:
* expected/mixed_languages/vc8/basic/basic.vcproj:
* expected/webapp/vc8/source/aly.csproj:
* expected/webapp/vc8/source/cras.csproj:
* expected/wider_coverage/vc8/Some_Test_Simple_Lib.vcproj:
* expected/wider_coverage/vc8/Some_Test_Other_Lib.vcproj:
* expected/wider_coverage/vc8/simple.vcproj:
* expected/MultiWS/vc8/Multiws/src/bar_testing.vcproj:
* expected/mixed_languages_refs/vc8/z/z.csproj:
* expected/mixed_languages_refs/vc8/o/o.vcproj:
* expected/more_options/vc8/c++/foo.vcproj:
* expected/MultiWS/vc71/Multiws/src/bar_testing.vcproj:
* expected/MultiWS/vc7/Multiws/src/bar_testing.vcproj:
Updated expected results for vc7,vc71,vc8 for recent changes to MPC.
* expected/*/vc9/*:
* expected/*/vc10/*:
Added expected results for vc9,vc10.
Tue Aug 24 14:02:18 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/*/wb30/*:
* expected/*/wb26/*:
Re-generated to reflect my Tue Aug 24 13:57:23 commit to MPC.
Wed Aug 18 16:24:59 UTC 2010 Adam Mitz <mitza@ociweb.com>
* expected/implicit_resources/*:
* tests/implicit_resources:
* tests/implicit_resources/dir1:
* tests/implicit_resources/dir1/res.rc:
* tests/implicit_resources/dir1/src.cpp:
* tests/implicit_resources/dir2: