Skip to content

Commit ca36b71

Browse files
committed
[test] adapt roottests to new menu functions
[test] add some extra bytes [test] give more informative error output on stress failure
1 parent 1b5aa95 commit ca36b71

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

roottest/root/meta/MemberComments.ref

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,10 @@ OBJ: TList TList Doubly linked list : 0
592592

593593
TH1::Class()->GetMenuItems():
594594
OBJ: TList TList Doubly linked list : 0
595+
OBJ: TMethod AutoZoom *MENU* : 0
596+
void TH1::AutoZoom()
597+
OBJ: TMethod UnZoom *MENU* : 0
598+
void TH1::UnZoom()
595599
OBJ: TMethod DrawPanel *MENU* : 0
596600
void TH1::DrawPanel()
597601
OBJ: TMethod Fit *MENU* : 0

roottest/root/meta/MemberComments_win32.ref

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,10 @@ OBJ: TList TList Doubly linked list : 0
592592

593593
TH1::Class()->GetMenuItems():
594594
OBJ: TList TList Doubly linked list : 0
595+
OBJ: TMethod AutoZoom *MENU* : 0
596+
void TH1::AutoZoom()
597+
OBJ: TMethod UnZoom *MENU* : 0
598+
void TH1::UnZoom()
595599
OBJ: TMethod DrawPanel *MENU* : 0
596600
void TH1::DrawPanel()
597601
OBJ: TMethod Fit *MENU* : 0

roottest/root/meta/MemberComments_win64.ref

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,10 @@ OBJ: TList TList Doubly linked list : 0
592592

593593
TH1::Class()->GetMenuItems():
594594
OBJ: TList TList Doubly linked list : 0
595+
OBJ: TMethod AutoZoom *MENU* : 0
596+
void TH1::AutoZoom()
597+
OBJ: TMethod UnZoom *MENU* : 0
598+
void TH1::UnZoom()
595599
OBJ: TMethod DrawPanel *MENU* : 0
596600
void TH1::DrawPanel()
597601
OBJ: TMethod Fit *MENU* : 0

test/stress.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ void stress2()
366366
OK = kFALSE;
367367
#else
368368
#ifdef R__HAS_CLOUDFLARE_ZLIB
369-
Long64_t lastgood = 9813;
369+
Long64_t lastgood = 9826; // changes for TH1 PR#18459
370370
#else
371371
Long64_t lastgood = 10100; // changes in TFormula (v13)
372372
#endif
@@ -376,7 +376,7 @@ void stress2()
376376
if (OK) printf("OK\n");
377377
else {
378378
printf("FAILED\n");
379-
printf("%-8s last =%lld, comp=%f\n"," ",last,comp);
379+
printf("%-8s last=%lld, comp=%f vs lastgood=%lld\n"," ", last, comp, lastgood);
380380
}
381381
if (gPrintSubBench) { printf("Test 2 : "); gBenchmark->Show("stress");gBenchmark->Start("stress"); }
382382
}

0 commit comments

Comments
 (0)