forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-FACE
1713 lines (1174 loc) · 58.9 KB
/
ChangeLog-FACE
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
Mon Feb 16 16:52:53 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Messenger/face_config.ini:
Added transient local durability to handle late subscribers.
Mon Feb 16 16:15:07 UTC 2015 Adam Mitz <[email protected]>
* Merged from trunk r6924 through r6949
Mon Feb 9 16:44:28 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
Need to release lock before destroying WDC.
Failed on ACE safety-enabled due to emulated recursive mutexes.
Fri Feb 6 21:12:24 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/transport/framework/TransportClient.h:
Work-arounds to compile under LynxOS-178's version of GCC with broken
nested classes (they don't have access to the private members of the
enclosing class).
Fri Feb 6 19:47:30 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
TcpReconnect test can't run in safety profile.
Fri Feb 6 18:51:05 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/GuidUtils.h:
Fixed safety-enabled, inline=0 build.
Fri Feb 6 15:56:58 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
Updated profile-based exclusions for new test cases merged from trunk.
* tests/DCPS/LivelinessTimeout/run_test.pl:
Updated to use PerlDDS::TestFramework after merge.
Thu Feb 5 23:22:18 UTC 2015 Adam Mitz <[email protected]>
* Merged from trunk r6920 through r6923
Wed Feb 4 23:13:32 UTC 2015 Adam Mitz <[email protected]>
* Merged from trunk r6908 through r6919
Wed Feb 4 18:44:38 UTC 2015 Adam Mitz <[email protected]>
* Merged from trunk r6749 through r6907
Tue Feb 3 00:06:48 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
Updated list of tests that can run with ownership profile disabled.
Fri Jan 30 21:54:49 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/FeatureDisabledQosCheck.h:
With ownership profile disabled, history kind may not be KEEP_ALL.
* bin/dcps_tests.lst:
Updated list of tests that can run with ownership profile disabled.
Fri Jan 30 20:16:07 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/TransientLocalTest/DataReaderListener.h:
* tests/DCPS/TransientLocalTest/DataReaderListener.cpp:
* tests/DCPS/TransientLocalTest/publisher.cpp:
* tests/DCPS/TransientLocalTest/rtps_disc.ini:
* tests/DCPS/TransientLocalTest/run_test.pl:
* tests/DCPS/TransientLocalTest/subscriber.cpp:
Return non-0 on test failure and added an rtps_disc test case.
Tue Jan 27 22:04:29 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Partition/Idl:
* tests/FACE/Partition/Publisher/FacePartitionPublisher.mpc:
* tests/FACE/Partition/Subscriber/FacePartitionSubscriber.mpc:
* tests/FACE/Partition/run_test.pl:
Make IDL for this project, and declare a key.
* tests/FACE/Partition/Publisher/Publisher.cpp:
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
Use ACE_DEBUG instead of streams.
Fri Jan 23 17:19:46 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/GuidConverter.h:
* dds/DCPS/transport/framework/ReceiveListenerSet.inl:
* dds/DCPS/transport/framework/ReceiveListenerSetMap.inl:
* dds/DCPS/transport/framework/RepoIdSet.inl:
Corrected the previous commit to work with the non-safety build.
Fri Jan 23 15:10:56 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/GuidConverter.h:
* dds/DCPS/transport/framework/ReceiveListenerSet.inl:
* dds/DCPS/transport/framework/ReceiveListenerSetMap.inl:
* dds/DCPS/transport/framework/RepoIdSet.inl:
* tests/DCPS/TimeBasedFilter/main.cpp:
Fixed invalid log parameters (detected by the new
safety-enabled logging in ACE).
* dds/CORBA/tao/Object.cpp:
* dds/CORBA/tao/SystemException.cpp:
Fixed warnings.
Wed Jan 21 17:41:32 UTC 2015 Brian Johnson <[email protected]>
* bin/dcps_tests.lst:
Changed MutliRepoTest to have !OPENDDS_SAFETY_PROFILE flag, since it is a InfoRepo specific test.
Tue Jan 20 18:18:11 UTC 2015 Jeff Schmitz <[email protected]>
* dds/DCPS/Service_Participant.h:
* dds/DCPS/Service_Participant.cpp:
* dds/FACE/config/Parser.cpp:
* tests/FACE/Partition/face_config.ini:
Accept filename into load_configuration, and pass to transport
configuration, so that Global default transports may be loaded.
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
Whitespace.
Mon Jan 19 18:43:46 UTC 2015 Adam Mitz <[email protected]>
* tests/FACE/Unit/FaceUnitTests.mpc:
Use the base project to get the 'after' setting.
Mon Jan 19 18:12:06 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Unit/QosSettingsTest.cpp:
Don't try to set durability kind to those not supported by build.
Mon Jan 19 17:34:33 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/RecorderImpl.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpReceiveStrategy.cpp:
* dds/FACE/FaceTSS.cpp:
* tests/FACE/Partition/Publisher/Publisher.cpp:
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
Fixed compile errors on LynxOS-178.
Mon Jan 19 16:47:04 UTC 2015 Brian Johnson <[email protected]>
* tests/DCPS/FooTest3_2/run_test.pl:
Added back in support for passing mi and mw.
Fri Jan 16 23:07:46 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Partition/face_config.ini:
Explicitly set DCPSGlobalTransportConfig, was running with TCP.
Fri Jan 16 22:11:25 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Partition/Publisher/Publisher.cpp:
Sleep between sends, as we don't have reliability.
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
Log which subscriber got message.
Fri Jan 16 20:53:39 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/QosSettings.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
Set liveliness kind from file.
Fri Jan 16 17:35:20 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/ManyTopicTest/publisher.cpp:
* tests/DCPS/common/SampleInfo.cpp:
* tests/Utils/Options.cpp:
sprintf -> snprintf
Fri Jan 16 15:43:07 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
Updated for tests that won't run under safety profile.
* tests/DCPS/TransientLocalTest/run_test.pl:
Cleaned up unused or unneeded cruft in the script.
Thu Jan 15 22:53:01 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Partition/Publisher/Publisher.cpp:
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
Only use ACE_OS::snprintf when NOT using safety profile build.
Thu Jan 15 22:11:39 UTC 2015 Jeff Schmitz <[email protected]>
* bin/dcps_tests.lst:
Add QosSettings test and Partition test.
Thu Jan 15 22:09:27 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Unit/QosSettingsTest.cpp:
Added #include of <iostream>
Thu Jan 15 20:36:27 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/Parser.cpp:
Parse and set publisher and subscriber qos.
* dds/FACE/config/QosSettings.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
Allow comma-separated list for partition.name
* tests/FACE/Partition:
Test setting partititon name.
Thu Jan 15 20:30:23 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.h:
Set readcondition to filter ALIVE_INSTANCE_STATE
Thu Jan 15 18:11:02 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/FooTest5/run_test.pl:
Fixed tests to work with safety profile.
Wed Jan 14 23:25:08 UTC 2015 Adam Mitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
Fixed compile on inline=0 safety profile builds.
Wed Jan 14 23:18:18 UTC 2015 Adam Mitz <[email protected]>
* dds/FACE/FaceTSS.h:
* dds/FACE/FaceTSS.cpp:
Started impelementation of callback-based FACE TS reads.
* bin/dcps_tests.lst:
* tests/FACE/Messenger/Publisher/Publisher.cpp:
* tests/FACE/Messenger/Subscriber/Subscriber.cpp:
* tests/FACE/Messenger/face_config.ini:
* tests/FACE/Messenger/run_test.pl:
Testing callbacks.
Wed Jan 14 21:26:32 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Reliability/Publisher/Publisher.cpp:
* tests/FACE/Reliability/Subscriber/Subscriber.cpp:
Preserve failed status when closing connection.
Wed Jan 14 21:11:32 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
* tests/FACE/Reliability/face_config.ini:
If Connection qos name not specified, default to topic name.
Wed Jan 14 20:28:03 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/ConnectionSettings.h:
* dds/FACE/config/ConnectionSettings.cpp:
Add default constructor.
* tests/FACE/Reliability/face_config.ini:
Specify writer's qos settings name.
Wed Jan 14 19:14:11 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/FooTest5/rtps.ini:
* tests/DCPS/FooTest5/run_test.pl:
* tests/DCPS/TransientLocalTest/rtps.ini:
Fixed tests to work with safety profile.
Wed Jan 14 19:08:12 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/QosSettings.h:
* tests/FACE/Unit/QosSettingsTest.cpp:
Fix test failures, remove accessor.
Wed Jan 14 18:59:22 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Unit/QosSettingsTest.cpp:
Fix build error.
Wed Jan 14 18:49:25 UTC 2015 Jeff Schmitz <[email protected]>
* bin/dcps_tests.lst:
* tests/FACE/Reliability:
New test that sets qos policy on datawriter and datareader.
Wed Jan 14 18:46:06 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
* dds/FACE/config/ConnectionSettings.h:
* dds/FACE/config/ConnectionSettings.cpp:
* dds/FACE/config/Parser.h:
* dds/FACE/config/Parser.cpp:
* dds/FACE/config/QosSettings.h:
* dds/FACE/config/QosSettings.cpp:
Parse in Qos Settings also, and use them when creating datareaders,
datawriters, publishers, and subscribers.
Wed Jan 14 16:52:35 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
Fixed expected result when running with DCPSInfoRepo.
Wed Jan 14 16:34:48 UTC 2015 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Corrected date/time formatting, month number was off by one
and we shoudln't be reinventing the wheel of strftime.
* bin/dcps_tests.lst:
Disabled ConfigTransports test under safety profile.
Tue Jan 13 22:11:46 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
* tests/DCPS/LargeSample/Writer.h:
* tests/DCPS/LargeSample/Writer.cpp:
* tests/DCPS/LargeSample/publisher.cpp:
* tests/DCPS/LargeSample/run_test.pl:
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/run_test.pl:
* tests/DCPS/ManyToMany/subscriber.cpp:
* tests/DCPS/RtpsDiscovery/run_test.pl:
Fixed tests to work with safety profile.
Tue Jan 13 17:46:19 UTC 2015 Adam Mitz <[email protected]>
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
* tests/DCPS/BuiltInTopicTest/rtps_disc.ini:
* tests/DCPS/BuiltInTopicTest/run_test.pl:
* tests/DCPS/ZeroCopyDataReaderListener/run_test.pl:
Fixed tests to work with safety profile.
* tests/DCPS/BuiltInTopicTest/tcp.ini:
Removed this file.
Mon Jan 12 20:40:50 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Messenger/face_config.ini:
DCPSDebugLevel 10
Mon Jan 12 17:41:47 UTC 2015 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
* bin/dcps_tests.lst:
* tests/DCPS/DcpsIntegration/run_test-integration.pl:
* tests/DCPS/ManyTopicMultiProcess/run_test.pl:
* tests/DCPS/MultiDPTest/run_test.pl:
* tests/DCPS/RtpsDiscovery/run_test.pl:
* tests/DCPS/Thrasher/run_test.pl:
* tests/DCPS/WaitForAck/run_test.pl:
Updated these tests to use PerlDDS::TestFramework.
Mon Jan 12 17:32:13 UTC 2015 Jeff Schmitz <[email protected]>
* tests/FACE/Messenger/run_test.pl:
Undo last change.
Mon Jan 12 16:49:18 UTC 2015 Jeff Schmitz <[email protected]>
* dds/DCPS/Service_Participant.h:
* dds/DCPS/Service_Participant.cpp:
* dds/FACE/config/Parser.cpp:
Use ini file provided to TS::Initialize() as config for
Service Participant.
* tests/FACE/Messenger/run_test.pl:
Don't start info repo.
Fri Jan 9 22:47:48 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/LatencyBudget/run_test.pl:
* tests/DCPS/Lifespan/run_test.pl:
Updated these tests to use PerlDDS::TestFramework.
* tests/DCPS/LatencyBudget/pub.ini:
* tests/DCPS/LatencyBudget/sub.ini:
* tests/DCPS/Lifespan/pub.ini:
* tests/DCPS/Lifespan/sub.ini:
Removed these files.
Fri Jan 9 21:53:23 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/GuidGenerator.cpp:
Updated previous change to account for different
parameter types in different versions of ACE.
Fri Jan 9 21:36:18 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/GuidGenerator.cpp:
Safety profile doesn't have getpid(), need to use a
random number for that part of the GUID.
* dds/DCPS/transport/rtps_udp/RtpsUdpReceiveStrategy.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
Safety profile doesn't have sendmsg/recvmsg, work-arounds here.
* dds/DCPS/Service_Participant.cpp:
Cleaned up code for configuring the ACE logger to output to a file.
* dds/DCPS/FileLogger.h:
* dds/DCPS/FileLogger.cpp:
Removed these files.
Fri Jan 9 17:26:51 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/Registered_Data_Types.cpp:
* dds/FACE/FaceTSS.cpp:
Fixes for LynxOS build.
Fri Jan 9 17:05:49 UTC 2015 Adam Mitz <[email protected]>
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/raw_tcp_latency_publisher.mpc:
* performance-tests/DCPS/SimpleLatency/raw_tcp/subscriber/raw_tcp_latency_subscriber.mpc:
Added MPC base project for safety profile settings.
Fri Jan 9 16:27:34 UTC 2015 Adam Mitz <[email protected]>
* dds/CORBA/tao/Inlines.cpp:
* performance-tests/DCPS/SimpleLatency/PubListener.cpp:
* tests/DCPS/UnitTests/ut_Reassembly.cpp:
* tests/DCPS/UnitTests/ut_RepoIdSequence.cpp:
* tests/DCPS/ZeroCopyRead/main.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
Updates to compile on Linux inline=0 safety-enabled.
Fri Jan 9 16:16:41 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
Pass in domain ID to create_opendds_entities.
Fri Jan 9 15:27:06 UTC 2015 Adam Mitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
Updates to build on LynxOS.
* dds/FACE/config/ConnectionSettings.cpp:
* dds/FACE/config/Parser.cpp:
* dds/FACE/config/QosSettings.cpp:
* dds/FACE/config/TopicSettings.cpp:
Build fixes for inline=0.
* tests/FACE/Messenger/run_test.pl:
Removed unused variable.
* tools/scripts/set_svnignore.pl:
Keep the svn:ignore list sorted.
Thu Jan 8 22:58:53 UTC 2015 Jeff Schmitz <[email protected]>
* dds/DCPS/MultiTopicDataReader_T.cpp:
Missing include.
Thu Jan 8 22:37:55 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/ConnectionSettings.h:
* dds/FACE/config/ConnectionSettings.cpp:
* dds/FACE/config/Parser.h:
* dds/FACE/config/Parser.cpp:
* dds/FACE/config/TopicSettings.h:
* dds/FACE/config/TopicSettings.cpp:
Parse topic and connection settings.
* dds/FACE/FaceTSS.cpp:
Use the parsed connection and topic settings to configure
entites, instead of hard-coded values.
* tests/FACE/Messenger/Publisher/Publisher.cpp:
* tests/FACE/Messenger/Subscriber/Subscriber.cpp:
* tests/FACE/Messenger/face_config.ini:
Supply proper config file name to Initialize().
Thu Jan 8 16:50:25 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
* dds/FACE/config/Parser.h:
* dds/FACE/config/Parser.cpp:
Change namespace to config.
Wed Jan 7 22:51:47 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/FaceTSS.cpp:
* dds/FACE/config/Parser.h:
* dds/FACE/config/Parser.cpp:
* tests/FACE/Messenger/face_config.ini:
Begin to use parser for connection settings.
Wed Jan 7 22:06:54 UTC 2015 Adam Mitz <[email protected]>
* dds/DCPS/FileLogger.h:
#include required stdlib header.
Wed Jan 7 22:02:06 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/NotifyTest/run_test.pl:
* tests/DCPS/Partition/run_test.pl:
* tests/DCPS/ReaderDataLifecycle/run_test.pl:
* tests/DCPS/sub_init_loop/run_test.pl:
Updated these tests to use PerlDDS::TestFramework.
* tests/DCPS/NotifyTest/pub.ini:
* tests/DCPS/NotifyTest/sub.ini:
* tests/DCPS/Partition/pub.ini:
* tests/DCPS/Partition/sub.ini:
Removed these files.
Wed Jan 7 16:41:05 UTC 2015 Adam Mitz <[email protected]>
* Merged from trunk r6696 through r6748.
Wed Jan 7 16:20:28 UTC 2015 Jeff Schmitz <[email protected]>
* bin/dcps_tests.lst:
Updated for conversion
Wed Jan 7 15:54:48 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/QosSettings.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
Support all remaining QOS policies and test them.
Tue Jan 6 22:17:58 UTC 2015 Jeff Schmitz <[email protected]>
* dds/FACE/config/QosSettings.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
Support additional QOS policies and test them.
Tue Jan 6 16:16:12 UTC 2015 Jeff Schmitz <[email protected]>
* tests/DCPS/TransientLocalTest/run_test.pl:
Updated this test to use PerlDDS::TestFramework.
Tue Jan 6 15:55:59 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/StringKey/run_test.pl:
Updated this test to use PerlDDS::TestFramework.
* tests/DCPS/StringKey/pub.ini:
* tests/DCPS/StringKey/sub.ini:
Removed these files.
Tue Jan 6 15:51:27 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/DPFactoryQos/run_test.pl:
Updated this test to use PerlDDS::TestFramework.
* tests/DCPS/DPFactoryQos/pub.ini:
* tests/DCPS/DPFactoryQos/sub.ini:
Removed these files.
Mon Jan 5 23:29:10 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/Serializer_wstring/run_test.pl:
Updated this test to use PerlDDS::TestFramework.
* tests/DCPS/Serializer_wstring/pub.ini:
* tests/DCPS/Serializer_wstring/sub.ini:
Removed these files.
Mon Jan 5 23:20:39 UTC 2015 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/CorbaSeq/run_test.pl:
Updated this test to use PerlDDS::TestFramework.
* tests/DCPS/CorbaSeq/pub.ini:
* tests/DCPS/CorbaSeq/sub.ini:
Removed these files.
Mon Jan 5 20:45:00 UTC 2015 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added unlinking repo ior file and added more test debug output.
* bin/dcps_tests.lst:
Removed !SAFETY_TODO_CONVERT flags for converted test.
* tests/DCPS/BuiltInTopicTest/run_test.pl:
Converted to use TestFramework.
* tests/DCPS/BuiltInTopicTest/tcp.ini:
Replaced duplicate pub.ini and sub.ini with tcp.ini.
* tests/DCPS/BuiltInTopicTest/pub.ini:
* tests/DCPS/BuiltInTopicTest/sub.ini:
Removed these files.
Mon Jan 5 19:46:30 UTC 2015 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
* bin/dcps_tests.lst:
* tests/DCPS/ZeroCopyDataReaderListener/run_test.pl:
* tests/DCPS/ZeroCopyDataReaderListener/tcp.ini:
* tests/DCPS/sub_init_loop/run_test.pl:
* tests/DCPS/unit/run_test.pl:
Updated these tests to use PerlDDS::TestFramework.
* tests/DCPS/ZeroCopyDataReaderListener/pub.ini:
* tests/DCPS/ZeroCopyDataReaderListener/sub.ini:
Removed these files.
Mon Jan 5 18:41:00 UTC 2015 Brian Johnson <[email protected]>
* bin/dcps_tests.lst:
Fixed passed parameters.
Mon Jan 5 15:30:54 UTC 2015 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Removed command_lines subroutine.
* bin/dcps_tests.lst:
Added back !SAFETY_TODO_CONVERT to tests that were not yet converted.
* performance-tests/DCPS/TCPListenerTest/run_test.pl:
Removed noaction flag and command_lines call.
Mon Jan 5 14:30:03 UTC 2015 Brian Johnson <[email protected]>
* bin/dcps_tests.lst:
Removed !SAFETY_TODO_CONVERT flags for converted test.
* tests/DCPS/BuiltInTopic/run_test.pl:
Converted to use TestFramework.
Sat Jan 3 14:11:35 UTC 2015 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added debugging, added feature to support just reporting command lines, and
added support for flags with values.
* bin/dcps_tests.lst:
Removed !SAFETY_TODO_CONVERT flags for converted tests and removed unneeded
FooTest3_1 tests.
* dds/CORBA/tao/OpenDDS_Corba.mpc:
Added needed include path for ACE.
* performance-tests/DCPS/TCPListenerTest/run_test.pl:
* tests/DCPS/FooTest3_2/run_test.pl:
Converted tests to use TestFramework.
* tests/DCPS/FooTest5/run_test.pl:
Cleanup.
* tests/DCPS/FooTest3_1:
* tests/DCPS/FooTest3_1/DataReaderListener.h:
* tests/DCPS/FooTest3_1/DataReaderListener.cpp:
* tests/DCPS/FooTest3_1/FooTest3_1.mpc:
* tests/DCPS/FooTest3_1/FooTest3_1NoKey.mpc:
* tests/DCPS/FooTest3_1/InstanceDataMap.h:
* tests/DCPS/FooTest3_1/InstanceDataMap.cpp:
* tests/DCPS/FooTest3_1/PubDriver.h:
* tests/DCPS/FooTest3_1/PubDriver.cpp:
* tests/DCPS/FooTest3_1/README:
* tests/DCPS/FooTest3_1/SubDriver.h:
* tests/DCPS/FooTest3_1/SubDriver.cpp:
* tests/DCPS/FooTest3_1/TestException.h:
* tests/DCPS/FooTest3_1/Writer.h:
* tests/DCPS/FooTest3_1/Writer.cpp:
* tests/DCPS/FooTest3_1/pub_main.cpp:
* tests/DCPS/FooTest3_1/rtps.ini:
* tests/DCPS/FooTest3_1/run_test.pl:
* tests/DCPS/FooTest3_1/run_test_nokey.pl:
* tests/DCPS/FooTest3_1/sub_main.cpp:
Removed these files.
Wed Dec 31 19:26:47 UTC 2014 Jeff Schmitz <[email protected]>
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/raw_tcp_latency_publisher.mpc:
* performance-tests/DCPS/SimpleLatency/raw_tcp/subscriber/raw_tcp_latency_subscriber.mpc:
Don't build with safety profile.
Wed Dec 31 19:05:02 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/FileLogger.cpp:
Open and close file.
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TcpPublisher.cpp:
Build errors.
Tue Dec 30 23:27:52 UTC 2014 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/DestinationOrder/run_test.pl:
* tests/DCPS/Dispose/run_test.pl:
* tests/DCPS/ReadCondition/run_test.pl:
* tests/DCPS/TimeBasedFilter/run_test.pl:
Updated these tests to use PerlDDS::TestFramework.
Tue Dec 30 21:55:50 UTC 2014 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
* bin/dcps_tests.lst:
* tests/DCPS/LivelinessTimeout/run_test.pl:
* tests/DCPS/LivelinessTimeout/subscriber.cpp:
Updated LivelinessTimeout to use PerlDDS::TestFramework.
Tue Dec 30 20:59:46 UTC 2014 Jeff Schmitz <[email protected]>
* performance-tests/DCPS/SimpleLatency/PubListener.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TcpPublisher.cpp:
* performance-tests/DCPS/SimpleLatency/sample_sub.cpp:
Fourth round of using namespace std and including ExceptionStreams.
Tue Dec 30 19:34:35 UTC 2014 Adam Mitz <[email protected]>
* tests/DCPS/Partition/DataReaderListener.cpp:
* tests/DCPS/Partition/Publisher.cpp:
* tests/DCPS/SetQosDeadline/DataReaderListener.cpp:
Fixed build errors.
Tue Dec 30 19:16:05 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/StringKey/DataReaderListener.cpp:
* tests/DCPS/StringKey/Writer.cpp:
* tests/DCPS/StringKey/publisher.cpp:
* tests/DCPS/StringKey/subscriber.cpp:
* tests/DCPS/TopicReuse/tpreuse.cpp:
* tests/DCPS/TransientLocalTest/DataReaderListener.cpp:
* tests/DCPS/TransientLocalTest/publisher.cpp:
* tests/DCPS/TransientLocalTest/subscriber.cpp:
* tests/DCPS/sub_init_loop/publisher.cpp:
Third round of using namespace std and including ExceptionStreams.
Tue Dec 30 18:50:16 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/DPFactoryQos/DataReaderListener.cpp:
* tests/DCPS/DPFactoryQos/publisher.cpp:
* tests/DCPS/DPFactoryQos/subscriber.cpp:
Missed includes.
Tue Dec 30 18:46:12 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/CorbaSeq/DataReaderListener.cpp:
* tests/DCPS/CorbaSeq/Writer.cpp:
* tests/DCPS/CorbaSeq/publisher.cpp:
* tests/DCPS/CorbaSeq/subscriber.cpp:
* tests/DCPS/ManualAssertLiveliness/DataReaderListener.cpp:
* tests/DCPS/ManualAssertLiveliness/Writer.cpp:
* tests/DCPS/ManualAssertLiveliness/publisher.cpp:
* tests/DCPS/ManualAssertLiveliness/subscriber.cpp:
* tests/DCPS/NotifyTest/DataReaderListener.cpp:
* tests/DCPS/NotifyTest/Writer.cpp:
* tests/DCPS/NotifyTest/publisher.cpp:
* tests/DCPS/NotifyTest/subscriber.cpp:
* tests/DCPS/Partition/DataReaderListener.cpp:
* tests/DCPS/Partition/Publisher.cpp:
* tests/DCPS/Partition/Subscriber.cpp:
* tests/DCPS/Prst_delayed_subscriber/DataReaderListener.cpp:
* tests/DCPS/Prst_delayed_subscriber/Writer.cpp:
* tests/DCPS/Prst_delayed_subscriber/publisher.cpp:
* tests/DCPS/Prst_delayed_subscriber/subscriber.cpp:
* tests/DCPS/Rejects/DataReaderListener.cpp:
* tests/DCPS/Rejects/Writer.cpp:
* tests/DCPS/Rejects/publisher.cpp:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/Serializer_wstring/DataReaderListener.cpp:
* tests/DCPS/Serializer_wstring/Writer.cpp:
* tests/DCPS/Serializer_wstring/publisher.cpp:
* tests/DCPS/Serializer_wstring/subscriber.cpp:
* tests/DCPS/SetQosDeadline/DataReaderListener.cpp:
* tests/DCPS/SetQosDeadline/Writer.cpp:
* tests/DCPS/SetQosDeadline/publisher.cpp:
* tests/DCPS/SetQosDeadline/subscriber.cpp:
* tests/DCPS/SetQosPartition/DataReaderListener.cpp:
* tests/DCPS/SetQosPartition/Writer.cpp:
* tests/DCPS/SetQosPartition/publisher.cpp:
* tests/DCPS/SetQosPartition/subscriber.cpp:
Second round of using namespace std and including ExceptionStreams.
Tue Dec 30 18:10:53 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/CorbaSeq/DataReaderListener.cpp:
* tests/DCPS/CorbaSeq/Writer.cpp:
* tests/DCPS/CorbaSeq/publisher.cpp:
* tests/DCPS/CorbaSeq/subscriber.cpp:
* tests/DCPS/DPFactoryQos/DataReaderListener.cpp:
* tests/DCPS/DPFactoryQos/Writer.cpp:
* tests/DCPS/DPFactoryQos/publisher.cpp:
* tests/DCPS/DPFactoryQos/subscriber.cpp:
* tests/DCPS/Deadline/Writer.cpp:
* tests/DCPS/Deadline/publisher.cpp:
* tests/DCPS/Deadline/subscriber.cpp:
* tests/DCPS/DpShutdown/dpshutdown.cpp:
* tests/DCPS/LatencyBudget/DataReaderListener.cpp:
* tests/DCPS/LatencyBudget/Writer.cpp:
* tests/DCPS/LatencyBudget/publisher.cpp:
* tests/DCPS/LatencyBudget/subscriber.cpp:
* tests/DCPS/Lifespan/DataReaderListener.cpp:
* tests/DCPS/Lifespan/Writer.cpp:
* tests/DCPS/Lifespan/publisher.cpp:
* tests/DCPS/Lifespan/subscriber.cpp:
First round of using namespace std and including ExceptionStreams.
Tue Dec 30 17:20:39 UTC 2014 Adam Mitz <[email protected]>
* tests/DCPS/Instances/SubDriver.h:
* tests/DCPS/PersistentInfoRepo/Publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Subscriber.cpp:
* tests/Utils/TestUtils.mpc:
Updated TestUtils to not depend on the model library.
These two tests can use the model library directly.
* tests/Utils/Sync.h:
* tests/Utils/Sync.cpp:
Removed these files.
Tue Dec 30 15:47:29 UTC 2014 Adam Mitz <[email protected]>
* tests/FACE/Messenger/run_test.pl:
Updated to use PerlDDS::TestFramework.
Tue Dec 30 15:25:50 UTC 2014 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
* bin/dcps_tests.lst:
* tests/FACE/Messenger/run_test.pl:
Updated tests for safety profile.
Those marked with SAFETY_TODO_CONVERT in the lst file need have their
Perl scripts converted to use the TestFramework so they don't try to
start the DCPSInfoRepo when safety profile is enabled.
Mon Dec 29 21:58:30 UTC 2014 Jeff Schmitz <[email protected]>
* tests/Utils/ExceptionStreams.h:
Fix build errors.
Mon Dec 29 21:43:34 UTC 2014 Adam Mitz <[email protected]>
* bin/PerlDDS/Run_Test.pm:
* bin/dcps_tests.lst:
* tests/DCPS/ZeroCopyRead/run_test.pl:
Adapt tests for safety profile.
* dds/DCPS/Service_Participant.cpp:
* dds/DCPS/transport/framework/TransportRegistry.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpLoader.cpp:
Fixed default transport & discovery for safety profile.
* examples/DCPS/DistributedContent/DistributedContent.mpc:
* examples/DCPS/Messenger_IOGR_Imr/Messenger_IOGR_Imr.mpc:
Exclusions for safety profile
Mon Dec 29 21:02:09 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/BuiltInTopicTest/DataReaderListener.cpp:
* tests/DCPS/BuiltInTopicTest/Writer.cpp:
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
* tests/DCPS/BuiltInTopicTest/publisher.cpp:
* tests/DCPS/BuiltInTopicTest/subscriber.cpp:
* tests/Utils/ExceptionStreams.h:
Handle cout, cerr and endl in tests.