Skip to content

Commit 9c42dde

Browse files
committed
Merge branch 'dev'
2 parents 268d9cd + f858e2f commit 9c42dde

25 files changed

+43
-33
lines changed

GHDL_Debug/TbUart_GhdlDebugLoop_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ begin
8484
-- AlertIfDiff("./results/GhdlDebugLoop_1.txt", "../Uart/testbench/validated_results/GhdlDebugLoop_1.txt", "") ;
8585

8686
-- Create yaml reports for UART scoreboard
87-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
87+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8888
EndOfTestReports ;
8989
std.env.stop ;
9090
wait ;

GHDL_Debug/TbUart_GhdlDebugLoop_2.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ begin
8484
-- AlertIfDiff("./results/GhdlDebugLoop_2.txt", "../Uart/testbench/validated_results/GhdlDebugLoop_2.txt", "") ;
8585

8686
-- Create yaml reports for UART scoreboard
87-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
87+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8888
EndOfTestReports ;
8989
std.env.stop ;
9090
wait ;

GHDL_Debug/TbUart_GhdlDebug_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ begin
7474
-- AlertIfDiff("./results/GhdlDebug_1.txt", "../Uart/testbench/validated_results/GhdlDebug_1.txt", "") ;
7575

7676
-- Create yaml reports for UART scoreboard
77-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
77+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
7878
EndOfTestReports ;
7979
std.env.stop ;
8080
wait ;

GHDL_Debug/TbUart_GhdlDebug_2.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ begin
7474
-- AlertIfDiff("./results/GhdlDebug_2.txt", "../Uart/testbench/validated_results/GhdlDebug_2.txt", "") ;
7575

7676
-- Create yaml reports for UART scoreboard
77-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
77+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
7878
EndOfTestReports ;
7979
std.env.stop ;
8080
wait ;

GHDL_Debug/TbUart_GhdlDebug_3.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ begin
7676
-- AlertIfDiff("./results/GhdlDebug_3.txt", "../Uart/testbench/validated_results/GhdlDebug_3.txt", "") ;
7777

7878
-- Create yaml reports for UART scoreboard
79-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
79+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8080
EndOfTestReports ;
8181
std.env.stop ;
8282
wait ;

GHDL_Debug/TbUart_GhdlDebug_4.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ begin
7676
-- AlertIfDiff("./results/GhdlDebug_4.txt", "../Uart/testbench/validated_results/GhdlDebug_4.txt", "") ;
7777

7878
-- Create yaml reports for UART scoreboard
79-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
79+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8080
EndOfTestReports ;
8181
std.env.stop ;
8282
wait ;

src/UartContext.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ context UartContext is
4646
use osvvm_uart.UartTbPkg.all ;
4747
use osvvm_uart.UartTxComponentPkg.all ;
4848
use osvvm_uart.UartRxComponentPkg.all ;
49-
use osvvm_uart.ScoreboardPkg_Uart.all ;
49+
-- use osvvm_uart.ScoreboardPkg_Uart.all ;
5050
end context UartContext ;
5151

testbench/TbUart_Checkers1.vhd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ architecture Checkers1 of TestCtrl is
4949
signal TestDone : integer_barrier := 1 ;
5050

5151
use osvvm_uart.ScoreboardPkg_Uart.all ;
52-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
52+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5353

5454
begin
5555

@@ -62,7 +62,7 @@ begin
6262
-- Initialization of test
6363
SetTestName("TbUart_Checkers1") ;
6464
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
65-
UartScoreboard.SetAlertLogID("UART_SB1") ;
65+
UartScoreboard <= NewID("UART_SB1") ;
6666

6767
-- Wait for testbench initialization
6868
wait for 0 ns ; wait for 0 ns ;
@@ -81,6 +81,7 @@ begin
8181
TranscriptClose ;
8282
-- AlertIfDiff("./results/TbUart_Checkers1.txt", "../Uart/testbench/validated_results/TbUart_Checkers1.txt", "") ;
8383

84+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8485
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -15, WARNING => 0)) ;
8586
std.env.stop ;
8687
wait ;

testbench/TbUart_Checkers2.vhd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ architecture Checkers2 of TestCtrl is
5050
signal TestDone : integer_barrier := 1 ;
5151

5252
use osvvm_uart.ScoreboardPkg_Uart.all ;
53-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
53+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5454

5555
begin
5656

@@ -63,7 +63,7 @@ begin
6363
-- Initialization of test
6464
SetTestName("TbUart_Checkers2") ;
6565
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
66-
UartScoreboard.SetAlertLogID("UART_SB1") ;
66+
UartScoreboard <= NewID("UART_SB1") ;
6767

6868
-- Wait for testbench initialization
6969
wait for 0 ns ; wait for 0 ns ;
@@ -82,6 +82,7 @@ begin
8282
TranscriptClose ;
8383
-- AlertIfDiff("./results/TbUart_Checkers2.txt", "../Uart/testbench/validated_results/TbUart_Checkers2.txt", "") ;
8484

85+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8586
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -15, WARNING => 0)) ;
8687
std.env.stop ;
8788
wait ;

testbench/TbUart_Options1.vhd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ architecture Options1 of TestCtrl is
5050
signal SetParmBarrier : integer_barrier := 1 ;
5151

5252
use osvvm_uart.ScoreboardPkg_Uart.all ;
53-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
53+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5454

5555
signal TbID : AlertLogIDType ;
5656

@@ -65,7 +65,7 @@ begin
6565
-- Initialization of test
6666
SetTestName("TbUart_Options1") ;
6767
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
68-
UartScoreboard.SetAlertLogID("UART_SB1") ;
68+
UartScoreboard <= NewID("UART_SB1") ;
6969
TbID <= GetAlertLogID("TB") ;
7070

7171
-- Wait for testbench initialization
@@ -85,6 +85,7 @@ begin
8585
TranscriptClose ;
8686
-- AlertIfDiff("./results/TbUart_Options1.txt", "../Uart/testbench/validated_results/TbUart_Options1.txt", "") ;
8787

88+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8889
EndOfTestReports ;
8990
std.env.stop ;
9091
wait ;

testbench/TbUart_Options2.vhd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ architecture Options2 of TestCtrl is
5050
signal SetParmBarrier : integer_barrier := 1 ;
5151

5252
use osvvm_uart.ScoreboardPkg_Uart.all ;
53-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
53+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5454

5555
signal TbID : AlertLogIDType ;
5656

@@ -65,7 +65,7 @@ begin
6565
-- Initialization of test
6666
SetTestName("TbUart_Options2") ;
6767
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
68-
UartScoreboard.SetAlertLogID("UART_SB1") ;
68+
UartScoreboard <= NewID("UART_SB1") ;
6969
TbID <= GetAlertLogID("TB") ;
7070

7171
-- Wait for testbench initialization
@@ -85,6 +85,7 @@ begin
8585
TranscriptClose ;
8686
-- AlertIfDiff("./results/TbUart_Options2.txt", "../Uart/testbench/validated_results/TbUart_Options2.txt", "") ;
8787

88+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8889
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -16, WARNING => 0)) ;
8990
std.env.stop ;
9091
wait ;

testbench/TbUart_Overload1.vhd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ architecture Overload1 of TestCtrl is
5050
signal TestDone : integer_barrier := 1 ;
5151

5252
use osvvm_uart.ScoreboardPkg_Uart.all ;
53-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
53+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5454

5555
begin
5656

@@ -63,7 +63,7 @@ begin
6363
-- Initialization of test
6464
SetTestName("TbUart_Overload1") ;
6565
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
66-
UartScoreboard.SetAlertLogID("UART_SB1") ;
66+
UartScoreboard <= NewID("UART_SB1") ;
6767

6868
-- Wait for testbench initialization
6969
wait for 0 ns ; wait for 0 ns ;
@@ -82,6 +82,7 @@ begin
8282
TranscriptClose ;
8383
-- AlertIfDiff("./results/TbUart_Overload1.txt", "../Uart/testbench/validated_results/TbUart_Overload1.txt", "") ;
8484

85+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8586
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -4, WARNING => 0)) ;
8687
std.env.stop ;
8788
wait ;

testbench/TbUart_Scoreboard1.vhd

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ architecture Scoreboard1 of TestCtrl is
5252
signal TestDone : integer_barrier := 1 ;
5353

5454
use osvvm_uart.ScoreboardPkg_Uart.all ;
55-
shared variable UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardPType ;
55+
signal UartScoreboard : osvvm_uart.ScoreboardPkg_Uart.ScoreboardIdType ;
5656

5757
begin
5858

@@ -65,7 +65,7 @@ begin
6565
-- Initialization of test
6666
SetTestName("TbUart_Scoreboard1") ;
6767
SetLogEnable(PASSED, TRUE) ; -- Enable PASSED logs
68-
UartScoreboard.SetAlertLogID("UART_SB1") ;
68+
UartScoreboard <= NewID("UART_SB1") ;
6969

7070
-- Wait for testbench initialization
7171
wait for 0 ns ; wait for 0 ns ;
@@ -84,6 +84,7 @@ begin
8484
TranscriptClose ;
8585
-- AlertIfDiff("./results/TbUart_Scoreboard1.txt", "../Uart/testbench/validated_results/TbUart_Scoreboard1.txt", "") ;
8686

87+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8788
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -(44 + 48), WARNING => 0)) ;
8889
std.env.stop ;
8990
wait ;
@@ -112,7 +113,7 @@ log(TxLogID, "Sequence 1 -- Basic Transfer with Passing data and status", INFO)
112113
ExpStim.Data := TxStim.Data ;
113114
TxStim.Error := to_slv(i, 3) ;
114115
ExpStim.Error := TxStim.Error ;
115-
UartScoreboard.Push( ExpStim ) ;
116+
Push(UartScoreboard, ExpStim ) ;
116117
Send(UartTxRec, TxStim.Data, TxStim.Error) ;
117118
end loop ;
118119

@@ -125,7 +126,7 @@ log(TxLogID, "Sequence 2 -- All Status Values, 64 - 20 mismatches", INFO) ;
125126
ExpStim.Data := TxStim.Data ;
126127
TxStim.Error := TxStim.Data(5 downto 3) ;
127128
ExpStim.Error := TxStim.Data(2 downto 0) ;
128-
UartScoreboard.Push( ExpStim ) ;
129+
Push(UartScoreboard, ExpStim ) ;
129130
Send(UartTxRec, TxStim.Data, TxStim.Error) ;
130131
end loop ;
131132

@@ -138,14 +139,14 @@ log(TxLogID, "Sequence 3 -- Data mismatch with All Status Values, 64 - 16 mismat
138139
ExpStim.Data := to_slv(i + 1, 8) ;
139140
TxStim.Error := TxStim.Data(5 downto 3) ;
140141
ExpStim.Error := TxStim.Data(2 downto 0) ;
141-
UartScoreboard.Push( ExpStim ) ;
142+
Push(UartScoreboard, ExpStim ) ;
142143
Send(UartTxRec, TxStim.Data, TxStim.Error) ;
143144
end loop ;
144145

145146

146147
log(TxLogID, "Sentinal Transfer to mark end of test", INFO) ;
147148
TestActive <= FALSE after 8 us ; -- last one
148-
UartScoreboard.Push( UartStimType'(X"50", UARTTB_NO_ERROR) ) ;
149+
Push(UartScoreboard, UartStimType'(X"50", UARTTB_NO_ERROR) ) ;
149150
Send(UartTxRec, X"50") ;
150151

151152
AffirmIfEqual(GetAlertCount, 44 + 48, "Alert Count") ;
@@ -169,7 +170,7 @@ log(TxLogID, "Sentinal Transfer to mark end of test", INFO) ;
169170

170171
UartReceiveLoop : while TestActive loop
171172
Get(UartRxRec, ReceivedVal.Data, ReceivedVal.Error) ;
172-
UartScoreboard.Check( ReceivedVal ) ;
173+
Check(UartScoreboard, ReceivedVal ) ;
173174
end loop ;
174175
--
175176
------------------------------------------------------------

testbench/TbUart_SendGet1.vhd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ begin
8686
TranscriptClose ;
8787
-- AlertIfDiff("./results/TbUart_SendGet1.txt", "../Uart/testbench/validated_results/TbUart_SendGet1.txt", "") ;
8888

89+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8990
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -4, WARNING => 0)) ;
9091
std.env.stop ;
9192
wait ;

testbench/TbUart_SendGet2.vhd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ begin
8787
TranscriptClose ;
8888
-- AlertIfDiff("./results/TbUart_SendGet2.txt", "../Uart/testbench/validated_results/TbUart_SendGet2.txt", "") ;
8989

90+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
9091
EndOfTestReports(ExternalErrors => (FAILURE => 0, ERROR => -4, WARNING => 0)) ;
9192
std.env.stop ;
9293
wait ;

testbench/TbUart_UartX1_1.vhd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ begin
8686
TranscriptClose ;
8787
-- AlertIfDiff("./results/TbUart_UartX1_1.txt", "../Uart/testbench/validated_results/TbUart_UartX1_1.txt", "") ;
8888

89+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8990
EndOfTestReports ;
9091
std.env.stop ;
9192
wait ;

testbench/TbUart_UartX1_2.vhd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ begin
8686
TranscriptClose ;
8787
-- AlertIfDiff("./results/TbUart_UartX1_2.txt", "../Uart/testbench/validated_results/TbUart_UartX1_2.txt", "") ;
8888

89+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8990
EndOfTestReports ;
9091
std.env.stop ;
9192
wait ;

testbench/build.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ RunTest TbUart_Checkers1.vhd
5454
RunTest TbUart_Checkers2.vhd
5555
RunTest TbUart_Scoreboard1.vhd
5656
RunTest TbUart_Overload1.vhd
57-
# RunTest TbUart_UartX1_1.vhd
58-
# RunTest TbUart_UartX1_2.vhd
57+
RunTest TbUart_UartX1_1.vhd
58+
RunTest TbUart_UartX1_2.vhd

testbench_multiple_uarts/TbUart_MultipleProcess_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ begin
8989
-- AlertIfDiff("./results/TbUart_MultipleProcess_1.txt", "../Uart/testbench/validated_results/TbUart_MultipleProcess_1.txt", "") ;
9090

9191
-- Create yaml reports for UART scoreboard
92-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
92+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
9393
EndOfTestReports ;
9494
std.env.stop ;
9595
wait ;

testbench_multiple_uarts/TbUart_MultipleProcess_2.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ begin
8989
-- AlertIfDiff("./results/TbUart_MultipleProcess_2.txt", "../Uart/testbench/validated_results/TbUart_MultipleProcess_2.txt", "") ;
9090

9191
-- Create yaml reports for UART scoreboard
92-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
92+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
9393
EndOfTestReports ;
9494
std.env.stop ;
9595
wait ;

testbench_multiple_uarts/TbUart_SingleProcessLoop_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ begin
7575
-- AlertIfDiff("./results/SingleProcessLoop_1.txt", "../Uart/testbench/validated_results/SingleProcessLoop_1.txt", "") ;
7676

7777
-- Create yaml reports for UART scoreboard
78-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
78+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
7979
EndOfTestReports ;
8080
std.env.stop ;
8181
wait ;

testbench_multiple_uarts/TbUart_SingleProcessLoop_2.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ begin
8484
-- AlertIfDiff("./results/SingleProcessLoop_2.txt", "../Uart/testbench/validated_results/SingleProcessLoop_2.txt", "") ;
8585

8686
-- Create yaml reports for UART scoreboard
87-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
87+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8888
EndOfTestReports ;
8989
std.env.stop ;
9090
wait ;

testbench_multiple_uarts/TbUart_SingleProcess_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ begin
7474
-- AlertIfDiff("./results/SingleProcess_1.txt", "../Uart/testbench/validated_results/SingleProcess_1.txt", "") ;
7575

7676
-- Create yaml reports for UART scoreboard
77-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
77+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
7878
EndOfTestReports ;
7979
std.env.stop ;
8080
wait ;

testbench_multiple_uarts/TbUart_UartX16_1.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ begin
8585
-- AlertIfDiff("./results/TbUart_UartX16_1.txt", "../Uart/testbench/validated_results/TbUart_UartX16_1.txt", "") ;
8686

8787
-- Create yaml reports for UART scoreboard
88-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
88+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8989
EndOfTestReports ;
9090
std.env.stop ;
9191
wait ;

testbench_multiple_uarts/TbUart_UartX16_2.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ begin
8585
-- AlertIfDiff("./results/TbUart_UartX16_2.txt", "../Uart/testbench/validated_results/TbUart_UartX16_2.txt", "") ;
8686

8787
-- Create yaml reports for UART scoreboard
88-
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => GetTestName & "_sb_Uart.yml") ;
88+
osvvm_uart.ScoreboardPkg_Uart.WriteScoreboardYaml(FileName => "Uart") ;
8989
EndOfTestReports ;
9090
std.env.stop ;
9191
wait ;

0 commit comments

Comments
 (0)