-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
7881 lines (5273 loc) · 177 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
Tue Oct 22 12:25:14 2024 leake
* Revision tag: R1-15p
* "Removing GPU_MEM=0 and graphics tag."
SVN revision: 165309
M test/test_display/DTESTDEFS.cfg
Wed Oct 9 12:54:19 2024 leake
* Revision tag: R1-15o
* FORMATTED
SVN revision: 165154
M python/Test.py
Wed Oct 9 11:37:32 2024 elmquist
* Revision tag: R1-15n
* remove requirement to tag GPU_MEM to get display
SVN revision: 165151
M python/Test.py
Tue Oct 8 08:45:00 2024 leake
* Revision tag: R1-15m
* FORMATTED
SVN revision: 165107
M python/Test.py
Tue Oct 8 08:27:09 2024 elmquist
* Revision tag: R1-15l
* increase gpu reservation timeout, error if reservation not successful,
force gpu resource if display or gpu is needed
SVN revision: 165080
M test/test_display/DTESTDEFS.cfg
M python/Test.py
* Adding lock to shared variable where it is needed.
SVN revision: 165050
M python/Test.py
Wed Oct 2 14:41:00 2024 leake
* Revision tag: R1-15k
* Updating GPU_MEM.
SVN revision: 165016
A test/test_system/test_dtest/DTESTDEFS.cfg
Wed Sep 25 16:26:33 2024 vsteyert
* Revision tag: R1-15j
* only import GpuMem if we have it
SVN revision: 164869
M python/DtestCommon.py
Tue Sep 17 15:49:08 2024 leake
* Revision tag: R1-15i
* Adding GPU memory to tests. See https://dartsgitlab-
internal.jpl.nasa.gov/darts-lab/jpl-internal/all-
access/development/infrastructure/dtest/-/issues/11.
SVN revision: 164560
M test/test_system/test_dtest_truths_cmd/DTESTDEFS.cfg
M test/test_display/DTESTDEFS.cfg
M test/test_system/test_dtest_tags/DTESTDEFS.cfg
M test/test_system/test_dtest_truths_env/DTESTDEFS.cfg
* Adding dry-run capability, so we can see what would change without
changing anything.
SVN revision: 164547
M dtest-update-gpu-memory
Tue Sep 10 13:05:51 2024 leake
* Revision tag: R1-15h
* FORMATTED.
SVN revision: 164462
M gpu_mem.cc
* Updating GPU memory used.
SVN revision: 164461
M test/test_system/test_dtest_truths_env/DTESTDEFS.cfg
M test/test_system/test_dtest_tags/DTESTDEFS.cfg
* Minor updates so things write in the correct places.
SVN revision: 164460
M dtest-update-gpu-memory
* Using the actual sizes rather than trying to convert to unsigned int.
The latter led to issues when we had large GPU usage (it was reporting a
value that was way too small). Now using unsigned long long everywhere,
which is what the nvml functions return.
SVN revision: 164459
M gpu_mem.cc
* Committing mergeinfo
SVN revision: 164457
M .
* Committing mergeinfo
SVN revision: 164407
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15e-leake
* Okay getting close on the cuda context issue. There is now one context
that polls the available GPU and puts that in a value. Workers just read
this value. The last problem I have is cleaning up resources. Checking
in what I have for now.
SVN revision: 164364
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15d-leake/dtest
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15d-leake/python/DtestCommon.py
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15d-leake/dtest-sbox
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15d-leake/gpu_mem.cc
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15d-leake/python/Test.py
Mon Sep 9 12:12:18 2024 leake
* Revision tag: R1-15g
* FORMATTED
SVN revision: 164447
M gpu_mem.cc
Mon Sep 9 11:38:49 2024 elmquist
* Revision tag: R1-15f
* move to nvidia management library for gpu monitoring rather than cuda
SVN revision: 164436
M swig/DtestGpuMem_swig.i
M gpu_mem.cc
M Makefile.yam
Fri Sep 6 08:57:39 2024 leake
* Revision tag: R1-15e
* Moving tags before RESOURCES.
SVN revision: 164378
M test/test_display/DTESTDEFS.cfg
Thu Sep 5 12:09:40 2024 leake
* Revision tag: R1-15d
* Syncing pyam.
SVN revision: 164353
M dtest
M Makefile.yam
M test/test_system/test_dtest_truths_env/DTESTDEFS.cfg
M python/DtestCommon.py
M dtest-sbox
A dtest-update-gpu-memory
M test/test_system/test_dtest_tags/DTESTDEFS.cfg
M test/test_system/test_dtest_truths_cmd/DTESTDEFS.cfg
M python/Test.py
M test/test_display/DTESTDEFS.cfg
* Committing mergeinfo
SVN revision: 164351
M .
* FORMATTED.
SVN revision: 164349
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/DtestCommon.py
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/Test.py
* Minor updates to make commiting better and bug-free.
SVN revision: 164348
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/dtest-update-gpu-memory
* Updating GPU_MEM.
SVN revision: 164347
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/test/test_system/test_dtest_truths_env/DTESTDEFS.cfg
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/test/test_system/test_dtest_tags/DTESTDEFS.cfg
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/test/test_system/test_dtest_truths_cmd/DTESTDEFS.cfg
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/test/test_display/DTESTDEFS.cfg
* Adding the ability to add and commit files automatically.
SVN revision: 164346
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/dtest-update-gpu-memory
* Adding script to update GPU memory resource.
SVN revision: 164345
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/Makefile.yam
A Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/dtest-update-gpu-memory
* Adding initial GPU memory poller.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/11
SVN revision: 164343
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/DtestCommon.py
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/Test.py
* Fixing list mode so it works even with SERIAL flag.
SVN revision: 164325
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/DtestCommon.py
* Making the dispatcher more obvious.
* Renaming functions to what they are.
SVN revision: 164324
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/dtest
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/python/DtestCommon.py
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-15b-leake/dtest-sbox
Fri Aug 30 08:26:24 2024 gaut
* Revision tag: R1-15c
* Fix setting of _eval_result for ResultSpecial
SVN revision: 164305
M python/dunit/DUnitFactoryResult.py
Thu Aug 29 08:49:24 2024 leake
* Revision tag: R1-15b
* FORMATTED
SVN revision: 164254
M python/dunit/DUnitFactoryEvaluation.py
M python/dunit/DUnitTest.py
Thu Aug 29 08:19:23 2024 gaut
* Revision tag: R1-15a
* Handle numpy bools
SVN revision: 164245
M python/dunit/DUnitTest.py
M python/dunit/DUnitFactoryEvaluation.py
* Committing mergeinfo
SVN revision: 164234
M .
* Committing mergeinfo
SVN revision: 163041
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-14r-gaut
* Committing mergeinfo
SVN revision: 161457
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-14n-gaut
Sat Aug 17 08:41:59 2024 leake
* Revision tag: R1-15
* Now splitting with shlex and combinging args in sys.argv before parsing.
Shlex is more robust and makes parsing args simpler. Combinging and
parsing rather than parsing and combining means we don't have to try and
sort out defaults before combining.
SVN revision: 164050
M dtest-sbox
Tue Aug 13 12:34:20 2024 leake
* Revision tag: R1-14z
* Calling logTee before we create the pool. We must modify values on Test
before this happens, otherwise, it seems the workers don't pick the
changes up.
SVN revision: 163955
M python/DtestCommon.py
M dtest-sbox
M dtest
Mon Aug 12 13:17:00 2024 leake
* Revision tag: R1-14y
* FORMATTED.
SVN revision: 163943
M python/DtestCommon.py
M dtest-sbox
M python/Test.py
* Now using a shared variable to track GPU memory usage.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/9
SVN revision: 163942
M python/DtestCommon.py
M dtest-sbox
M python/Test.py
M dtest
* Getting rid of quiet global variable. Cleaning up functions as a result.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/8
SVN revision: 163941
M test/test_unit/test_test/script.py
M python/DtestCommon.py
M dtest-sbox
M python/Test.py
M dtest
* Moving tests to Dtest args only.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/8
SVN revision: 163940
M python/Test.py
Sat Aug 10 13:38:59 2024 leake
* Revision tag: R1-14x
* Bug fix. Should have been the intersection of two sets, not if both sets
contain values.
SVN revision: 163908
M python/Test.py
Sat Aug 10 09:44:16 2024 leake
* Revision tag: R1-14w
* FORMATTED.
SVN revision: 163893
M python/DtestCommon.py
M python/Test.py
* Fixing args combination so we don't get multiple instances of truth suffixes.
* Filtering out all "" from the truth suffixes.
* 2 commits ago, I should have mentioned that commit also fixes the issue where tests were showing up relative to the sbox main directory rather than individual module directory.
SVN revision: 163892
M dtest-sbox
M python/Test.py
* Updating reg test due to function argument refactor in last commit.
SVN revision: 163891
M test/test_unit/test_test/script.py
* Now processing extra arguments from SiteDefs that come through the Makefiles. This allows different exclude_tags, run_only_tags, and truth_suffix to each test.
* Refactoring dtest-sbox dispatch so we use a partial rather than exec/eval.
* Removing some global variables from Dtest that are now placed on args directly.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/8
SVN revision: 163890
M python/DtestCommon.py
M dtest-sbox
M python/Test.py
M dtest
Fri Aug 9 09:44:27 2024 leake
* Revision tag: R1-14v
* Improving exception handling so that dtest-sbox doesn't exit out
completely if one module fails.
SVN revision: 163883
M python/DtestCommon.py
M python/Test.py
M dtest-sbox
* Updating since dtest now reports a summary even if no tests ran.
SVN revision: 163882
M test/test_system/test_dtest_tags/output3.orig
Fri Aug 9 06:37:00 2024 leake
* Revision tag: R1-14u
* FORMATTED.
SVN revision: 163868
M python/DtestCommon.py
M python/Test.py
* Cleaning up typing. Removing system exit if no tests are found as this
will happen when we are running dtest-sbox.
SVN revision: 163867
M python/DtestCommon.py
* Making failure count available to scripts.
* Bug fix: setting ROOTDIR was missing for serial mode.
* Bug fix: fixing truth_suffix type.
SVN revision: 163866
M python/DtestCommon.py
M dtest-sbox
M python/Test.py
M dtest
* Updating test since function arguments have changed.
SVN revision: 163865
M test/test_unit/test_test/script.py
* Adding some comments to make things clearer.
SVN revision: 163864
M python/DtestCommon.py
* Moving common functions to their own file. This avoids code duplication.
SVN revision: 163859
M Makefile.yam
A python/DtestCommon.py
M dtest-sbox
M dtest
* Now, each test individually sets the $ROOTDIR environment variable. This
is so we can have the same Pool running tests in different modules, but
each test still gets the correct $ROOTDIR.
SVN revision: 163857
M dtest-sbox
M dtest
* Using variables already on args rather than passing around extras.
SVN revision: 163855
M dtest-sbox
M dtest
* Fixing how we remove the lock so it fires even if there are errors and works for each async pool correctly.
* Fixing bug in run() so we pass correct args when a SERIAL tag is encountered.
SVN revision: 163853
M dtest-sbox
M dtest
* Adding dtest-sbox. This appears to be working and will run all tests
under the same pool.
SVN revision: 163852
M Makefile.yam
A dtest-sbox
M python/Test.py
* Missed one of the logging functions.
SVN revision: 163851
M dtest
* Now using a UUID for each *Args instance. This corresponds to a unique logger. This will allow us to log to a different file for each Args created.
* The log and logTee functions now each take a log number.
SVN revision: 163850
M python/Test.py
M dtest
* Now using pydantic validators for the arguments. This simplifies some of the conditional logic and also makes it easy to use OOO to avoid duplicating options.
* Changing number of cores if < 0 to be number of cpu cores rather than 2 * number of cpu cores. This matches what the command line options says it does.
SVN revision: 163849
M python/Test.py
M dtest
* Refactoring so that we create a pool external to adding the jobs.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/8
SVN revision: 163838
M python/Test.py
M dtest
Mon Jul 29 10:46:15 2024 vsteyert
* Revision tag: R1-14t
* apply patch from COMPASS
SVN revision: 163556
M python/dunit/DUnitTestRunner.py
M python/dunit/DUnitFactoryResult.py
M test/test_DUnit/script_soa.py
M python/dunit/DUnitTest.py
M scripts/dtest-html
D test/test_DUnit/output-basic.orig
D test/test_DUnit/output-soa.orig
M test/test_DUnit/script_basic.py
* Committing mergeinfo
SVN revision: 163354
M .
* Committing mergeinfo
SVN revision: 153186
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-13t-vsteyert3
* Updating so options are for soaeigen rather than fc38.
SVN revision: 163473
M Dshell/python/Test.py
Mon Jul 15 07:51:17 2024 leake
* Revision tag: R1-14s
* Adding CUI tag to tests that require the dlab3 mount.
SVN revision: 163268
M test/test_reg_test_website/DTESTDEFS.cfg
M test/test_regtest/DTESTDEFS.cfg
Mon Jul 1 11:32:57 2024 leake
* Revision tag: R1-14r
* Updating conf.py with new version of extensions. See
https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-
access/team/infrastructure/housekeeping/-/issues/22#note_22887/
SVN revision: 162894
M doc/source/conf.py
Wed Jun 19 22:22:26 2024 jain
* Revision tag: R1-14q
* Summary: Made into a literal string
SVN revision: 162693
M scripts/dtest-numerical-diff
Wed May 22 06:03:04 2024 elmquist
* Revision tag: R1-14p
* add graphics smoke test to ensure opengl is provided by nvidia in
graphics regtest sandbox
SVN revision: 162131
A test/test_display/DTESTDEFS.cfg
A test/test_display
A test/test_display/output.orig
Thu May 9 20:56:54 2024 jain
* Revision tag: R1-14o
* FORMATTED
SVN revision: 161678
M test/test_system/test_dtest_tags/tests/test_quarantine/test_subtests/test_green/script.py
M python/TestModifiers.py
M python/Ddoctest.py
M test/test_DUnit/__init__.py
M python/TestUtils.py
M test/test_system/test_dtest_tags/tests/test_child_tags/test_blue/script.py
M python/dunit/DUnitTestRunner.py
M test/test_system/test_dtest_doctest/test_good.py
M test/test_system/test_dtest_tags/tests/test_normal/script.py
M test/test_system/test_dtest_tags/tests/test_child_tags/test_red/script.py
M python/TestMagic.py
M python/dunit/DUnitFactoryResult.py
M python/dunit/xmlrunner.py
M test/test_system/test_ddoctest/script.py
M python/configobj.py
M test/test_DUnit/script_basic.py
M test/test_system/test_dtest_tags/tests/test_ignore/script.py
M python/killableprocess.py
M python/regtest/queryHDF5.py
M test/test_system/test_dtest_tags/tests/test_child_tags/test_green/script.py
M test/test_system/test_dict_compare/script.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_tags_quarantined/test_green/script.py
M test/test_system/test_dtest_doctest/test_bad.py
M python/regtest/processRegtestData.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_subtests/test_blue/script.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_tags_quarantined/test_subtests/test_blue/script.py
M test/test_system/test_dtest_tags/tests/test_skip/test_skip/script.py
M python/dunit/DUnitFactoryEvaluation.py
M test/test_system/test_dtest_tags/tests/test_skip/test_subtests/test_blue/script.py
M test/test_system/test_dtest_tags/tests/test_skip/test_tags_skip/script.py
M python/Test.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_green/script.py
M test/test_system/test_dtest_tags/tests/test_skip/test_subtests/test_skip/script.py
M test/test_system/test_file_dict_compare/script.py
M python/dunit/DUnitFactorySoa.py
M test/test_system/test_dtest_tags/tests/test_blue/script.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_tags_quarantined/script.py
M test/test_system/test_dtest_tags/tests/test_blue_children/test_blue_child2/script.py
M test/test_system/test_dtest_tags/tests/test_blue_children/test_blue_child1/script.py
M test/test_system/test_dtest_tags/tests/test_quarantine/test_tags_quarantined/test_subtests/test_green/script.py
Thu Apr 25 15:49:39 2024 leake
* Revision tag: R1-14n
* Fixing input.
SVN revision: 161218
M python/Test.py
* Adding convenience method for renaming orig files to fc38 and creating
new orig files. This will be used for the port to FC40.
SVN revision: 161217
M python/Test.py
Tue Apr 23 15:12:58 2024 jain
* Revision tag: R1-14m
* FORMATTED
SVN revision: 161164
M python/regtest/cgi/regtest.py
Tue Apr 23 13:54:29 2024 gaut
* Revision tag: R1-14l
* merge
SVN revision: 161157
A python/regtest/cgi
* Committing mergeinfo
SVN revision: 161155
M .
* Add elapsed time to test and module tables
SVN revision: 161153
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-14j-gaut/python/regtest/cgi/regtest.py
* Put cgi script for regtest site under svn
SVN revision: 161152
A Dshell/Modules/Dtest/featureBranches/Dtest-R1-14j-gaut/python/regtest/cgi
A Dshell/Modules/Dtest/featureBranches/Dtest-R1-14j-gaut/python/regtest/cgi/regtest.py
Mon Apr 22 16:09:29 2024 jain
* Revision tag: R1-14k
* FORMATTED
SVN revision: 161106
M test/test_regtest/gen_email.py
Mon Apr 22 12:28:56 2024 gaut
* Revision tag: R1-14j
* Compute elapsed time in a module if it is missing
SVN revision: 161099
M python/regtest/processRegtestData.py
Mon Apr 22 11:56:45 2024 gaut
* Revision tag: R1-14i
* Uncomment connect and close calls
SVN revision: 161092
M python/regtest/processRegtestData.py
Mon Apr 22 09:48:19 2024 gaut
* Revision tag: R1-14h
* Add API-level tests for regtest data processing lib
SVN revision: 161085
A test/test_regtest/DTESTDEFS.cfg
A test/test_regtest
A test/test_regtest/regtest.data-2024-04-22-06_05
A test/test_regtest/gen_email.py
A test/test_regtest/gen_hdf.py
* Add elapsed time to modules, include in email
SVN revision: 161084
M python/regtest/queryHDF5.py
M python/regtest/processRegtestData.py
* Committing mergeinfo
SVN revision: 160575
M .
* Committing mergeinfo
SVN revision: 159768
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-14f-gaut
Fri Mar 29 11:30:12 2024 leake
* Revision tag: R1-14g
* FORMATTED.
SVN revision: 160139
M python/Test.py
* Adding the ability to specify GPU_MEM in the RESOURCES field of a DTESTDEFS.cfg file.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/dtest/-/issues/6
SVN revision: 160138
M python/Test.py
* Removing functions for Dtest memory storage. This doesn't work because
we will double count memory while the program is running.
SVN revision: 160137
M gpu_mem.cc
* Adding GPU memory inspection utilities. See https://dartsgitlab-
internal.jpl.nasa.gov/darts-lab/jpl-internal/all-
access/development/infrastructure/dtest/-/issues/6
SVN revision: 160136
M Makefile.yam
A swig
A swig/DtestGpuMem_swig.i
A gpu_mem.cc
Sun Mar 3 09:58:31 2024 jain
* Revision tag: R1-14f
* Fixed path to switch from dlab partition.
SVN revision: 159513
M test/test_reg_test_website/upload_regtests_to_hdf5_old.py
M scripts/dtest-regtest-append
M test/test_reg_test_website/DTESTDEFS.cfg
M python/regtest/processRegtestData.py
M test/test_code/test_pylint/script.bash
M test/test_reg_test_website/create_ui.py
M test/test_reg_test_website/upload_regtests_to_hdf5.py
M test/test_reg_test_website/generate_h5_tables.py
Tue Feb 27 11:48:29 2024 gaut
* Revision tag: R1-14e
* Add helper to check that an error is correctly raised
SVN revision: 159395
A python/raises.py
M Makefile.yam
* Committing mergeinfo
SVN revision: 158797
M .
Sun Jan 14 12:52:24 2024 jain
* Revision tag: R1-14d
* Updating.
SVN revision: 158162
M python/Test.py
* Updating to use the right letter.
SVN revision: 158161
M python/Test.py
Mon Jan 8 14:14:51 2024 leake
* Revision tag: R1-14c
* FORMATTED.
SVN revision: 158077
M python/Test.py
* Adding soa_eigen shortcut for updating reg tests (changes made by
others, I'm just the one commiting it).
SVN revision: 158076
M python/Test.py
* Updating to work with SOAEigen.
SVN revision: 158075
M python/dunit/DUnitFactoryEvaluation.py
Tue Nov 7 17:44:17 2023 jain
* Revision tag: R1-14b
* FORMATTED
SVN revision: 156185
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
Tue Nov 7 14:15:55 2023 stobin
* Revision tag: R1-14a
* Added critical failure symbol to last10 string
SVN revision: 156166
M python/regtest/processRegtestData.py
Tue Nov 7 10:59:28 2023 stobin
* Revision tag: R1-14
* Added sandbox layer to HDF5 files and more info to emails and website
SVN revision: 156127
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
M scripts/dtest-regtest-append
* Committing mergeinfo
SVN revision: 155669
M .
Sat Oct 28 00:21:47 2023 jain
* Revision tag: R1-13z
* Deleted obsolete orig files
SVN revision: 155497
D test/test_DUnit/output-basic.orig_fc36
D test/test_DUnit/output-soa.orig_fc36
Tue Oct 10 17:42:00 2023 jain
* Revision tag: R1-13y
* FORMATTED
SVN revision: 154726
M python/regtest/processRegtestData.py
Mon Oct 9 23:41:26 2023 jain
* Revision tag: R1-13x
* Fixed location of key_modules.py file so that it is also accessible on
gibbs
SVN revision: 154665
M python/regtest/processRegtestData.py
Mon Oct 9 09:37:12 2023 stobin
* Revision tag: R1-13w
* Synced up
SVN revision: 154616
M python/regtest/processRegtestData.py
* Committing mergeinfo
SVN revision: 154614
M .
* Emails no longer error out when only one entry in HDF5 file
SVN revision: 154612
M Dshell/Modules/Dtest/featureBranches/Dtest-R1-13u-stobin/python/regtest/processRegtestData.py
* Updated path for regtest files to work on FN machines
SVN revision: 154579
M Dshell/scripts/dtest-regtest-append
Thu Oct 5 17:40:00 2023 jain
* Revision tag: R1-13v
* FORMATTED
SVN revision: 154572
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
Thu Oct 5 15:55:25 2023 stobin
* Revision tag: R1-13u
* Only show last passed results from the same sandbox.
SVN revision: 154565
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
M scripts/dtest-regtest-append
Thu Aug 3 17:48:00 2023 jain
* Revision tag: R1-13t
* FORMATTED
SVN revision: 153108
M python/regtest/queryHDF5.py
Thu Aug 3 08:31:09 2023 stobin
* Revision tag: R1-13s
* Added checks to make email sending faster
SVN revision: 153075
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
Tue Aug 1 15:49:51 2023 stobin
* Revision tag: R1-13r
* Added --regtest-host option to regtest-append script and fixed
test_reg_test_website
SVN revision: 153041
M test/test_reg_test_website/DTESTDEFS.cfg
M python/regtest/processRegtestData.py
M scripts/dtest-regtest-append
Thu Jul 27 18:32:10 2023 jain
* Revision tag: R1-13q
* FORMATTED
SVN revision: 153017
M python/regtest/processRegtestData.py
Wed Jul 26 15:58:25 2023 stobin
* Revision tag: R1-13p
* Fixed findLastPassed function
SVN revision: 152986
M scripts/dtest-regtest-last-passed
M python/regtest/processRegtestData.py
M python/regtest/queryHDF5.py
Wed Jul 26 15:04:28 2023 stobin
* Revision tag: R1-13o
* Fixed last10 string in emails to use datetime in query
SVN revision: 152979
M python/regtest/processRegtestData.py
Wed Jul 26 08:53:33 2023 stobin