-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathpyrun.pl
executable file
·483 lines (393 loc) · 11.7 KB
/
pyrun.pl
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
#!/usr/bin/perl -w
#
# Common run script that runs simulations and processes the output
#
# $Id: run.pl 6040 2010-04-01 05:58:00Z grg $
#
use strict;
use NF::TeamCity;
use NF::Base;
use Getopt::Long;
use Cwd;
use File::Copy;
use File::Temp qw/ tempfile /;
# Local variables that should be overridden by the local config script
my %config = (
'test_desc' => '',
'test_num' => 1,
'opts' => '',
'extra_files' => '',
'extra_checks' => '',
'log' => 'my_sim.log',
'finish' => '', #1000000,
);
# Configuration file
my $configFile = 'config.txt';
# Finish time file
my $finishFile = 'config.sim';
# Name of the script to create packets
my $makePkts = 'run.py'; # changed to accomodate new file naming
# Location of PCI simulation data file
my $pciSimDataFile = 'packet_data/pci_sim_data';
# Location of modelsim.ini file
my $modelsimIni = '../vsim_beh/modelsim.ini';
# Files to remove before running the simulation
my @rmFiles = ('PASS', 'FAIL', 'GUI');
# Work out the test name
my $dir = cwd;
$dir =~ s/^.*\///;
my $test = "sim.$dir";
# Check that the correct environment variables are set
check_NF2_vars_set();
# Test directory
$ENV{'NF_DESIGN_DIR'} =~ /.*\/([^\/]+)/;
my $testDir = $ENV{'NF_WORK_DIR'} . "/test/$1";
# Program to perform packet comparison
my $compare = $ENV{'NF_ROOT'} . '/bin/nf_compare.pl';
# Parse the command line arguments
my $sim = ''; # Which simulator to use
my $dump = 0; # Dump the output
my $gui = 0; # Run the GUI
my $ci = ''; # Continuous integration program
my $citest = ''; # Continuous integration test name
unless ( GetOptions ( "dump" => \$dump,
"gui" => \$gui,
"sim=s" => \$sim,
"ci=s" => \$ci,
"citest=s" => \$citest,
)
) { usage(); exit 1; }
# Verify that a simulator has been set
if ($sim eq '' || ($sim ne 'vsim' && $sim ne 'vcs' && $sim ne 'isim')) {
print "Unkown simulator \"$sim\". Supported simulators: vcs vsim isim\n";
exit 1;
}
# Verify that the continuous integration program is correct if set
if ($ci ne '' && $ci ne 'teamcity') {
print "Unkown continuous integration \"$ci\". Supported CI programs: teamcity\n";
exit 1;
}
if ($ci ne '' && $citest eq '') {
print "The name of the test was not specified in 'citest'\n";
exit 1;
}
tcDisableOutput if ($ci ne 'teamcity');
if ($ci eq 'teamcity') {
$test = $citest . tcGetTestSeparator . $test;
}
# ------- Print a test started message -------
# After this point CI messages should be printed
tcTestStarted($test);
my $good = 1;
# Verify that the verilog files have been compiled
$good &= &checkSimCompiled if $good;
# Read the configuration
$good &= &readConfig if $good;
# Attempt to run the actual test
if ($good) {
print "--- Running test.\n";
print "$config{'test_desc'}\n";
}
# Generate the packets
if ($good) {
print "--- Generating packets...\n";
# Run the script
my $makePktsOut;
$makePktsOut = `perl $makePkts 2>&1`;
print $makePktsOut;
# Verify the return code
if ($? != 0) {
print "--- Test failed ($dir) - $makePkts broke!.\n";
tcTestFailed($test, '$makePkts broke', $makePktsOut);
$good = 0;
}
}
# Create the finish time file
#
# Note: always run the simulation but only run it for 1 time step if
# things are not good since the reg_defines.h is generated from it
#$config{'finish'} = 1 if (!$good);
$good &= &createFinishFile if $good;
# Run the simulation (again, always try to run since
# the reg_defines.h file is generated from the output)
$good &= &runSim($good) if $good;
# Validate the output
$good &= &validateOutput if $good;
# Write a success/fail file and return an exit code as appropriate
tcTestFinished($test);
if ($gui) {
system('touch GUI');
exit 99;
}
elsif ($good) {
system('touch PASS');
exit 0;
}
else {
system('touch FAIL');
exit 1;
}
########################################
#########################################################
# usage
# print usage information
sub usage {
my $cmd = $0;
$cmd =~ s/.*\///;
print <<"HERE1";
NAME
$cmd - Run a simulation. (Should be invoked by the nf21_run_test.pl command.)
SYNOPSIS
$cmd
[--sim <vsim|vcs|isim>]
[--ci <teamcity>]
[--gui]
[--dump]
$cmd --help - show detailed help
HERE1
## return unless ($help);
## print < < "HERE";
##sub usage {
}
#########################################################
# readConfig
# read the configuration file
sub readConfig {
my $ok = 1;
print "--- Reading configuration file\n";
# Verify that the config file exists
if (! -f $configFile) {
# Open and read the configuration file
if (open CONFIG, $configFile) {
while (<CONFIG>) {
chomp;
# Remove comments
s/#.*//;
# Kill as much white space as possible at beginning
s/^\s*//;
# Skip blanks
next if /^$/;
# Work out the components
/^(\w+)\s*=\s*((\S.*)?\S)?\s*/;
my ($key, $val) = ($1, $2);
$val = '' if (!defined($val));
# Set the value in the hash
$config{$key} = $val;
print "Seen: $key => $val\n";
}
close CONFIG;
}
}
# Verify that all necessary variables have been set
foreach my $key (keys %config) {
if (!defined($config{$key})) {
&printError("'$key' not defined in configuration file");
$ok = 0;
}
}
return $ok;
}
#########################################################
# validateOutput
# validate the output of the tests
sub validateOutput {
if (!$gui) {
print "--- Simulation is complete. Validating the output.\n";
# Check the log for errors
my @logErrors = `grep -i error $config{'log'} | grep -v -i ERROR_DETECT`;
my $barrier;
foreach(@logErrors) {
print "$_";
if($_ =~ /data (.*) but expected (.*) \(/) {
if(hex($2)-hex($1) eq 1) {
# grep goes back 10 lines; max observed in both_wrong_destMAC was 5 to be safe
my $barrier = `grep -B 10 "$_" -- $config{'log'} | grep -i -c barrier`;
if($barrier > 0) {
print "WARNING: Register read expected and seen differed by 1 after a barrier\n";
print "Register reads are not always delayed appropriately by a barrier, try adding a delay\n\n";
}
}
}
}
if ($#logErrors + 1 != 0) {
print "--- Test failed ($dir) - see $config{'log'} for errors.\n";
tcTestFailed($test, 'Errors seen in simulation output', @logErrors);
return 0;
}
# Check that the correct number of reads were done
#
# The number of expected reads is equal to the explict reads
# (ie. reads explicitly listed in the PCI Sim Data file) plus
# the automatic reads performed when interrupts are signalled.
my $explicitReads = `grep -c READ: $pciSimDataFile`;
my $actualReads = `grep -c 'Host read.*cmd 0x6:.*Disconnect with Data' $config{'log'}`;
my $intStatusReads = `grep -c 'Info: Interrupt signaled' $config{'log'}`;
my $iDMADoneInt = `grep -c 'Info: DMA ingress transfer complete.' $config{'log'}`;
my $eDMADoneInt = `grep -c 'Info: DMA egress transfer complete.' $config{'log'}`;
my $phyInt = `grep -c 'Seen Phy Interrupt.' $config{'log'}`;
my $dmaQStatusInt = `grep -c 'CPCI Interrupt:.*DMA queue status change' $config{'log'}`;
my $pktAvailInt = `grep -c 'Packet available. Starting' $config{'log'}`;
my $cnetRdTimeoutInt = `grep -c 'Seen CNET Read' $config{'log'}`;
my $dmaStarts = `grep -c 'Info: Starting DMA transfer' $config{'log'}`;
my $expectedReads = $explicitReads +
$intStatusReads +
$iDMADoneInt * 3 +
$eDMADoneInt * 1 +
$phyInt * 1 +
$dmaQStatusInt * 1 +
$pktAvailInt * 1 +
$cnetRdTimeoutInt * 0 +
$dmaStarts * 1;
if ($expectedReads != $actualReads) {
print "--- Test failed ($dir) - incorrect number of reads seen. (Saw: $actualReads Expected: $expectedReads)\n";
tcTestFailed($test, 'Incorrect number of reads seen in simulation', @logErrors);
return 0;
}
# Run any additional tests on the output
if ($config{'extra_checks'} ne '') {
my $logErrors = `$config{'extra_checks'} --log $config{'log'}`;
print $logErrors;
if ($?) {
print "--- Test failed ($dir) - see $config{'log'} for errors.\n";
tcTestFailed($test, 'Errors seen in simulation output', $logErrors);
return 0;
}
}
# Compare the simulation output with the expected output
my $compareOutput = `$compare`;
print $compareOutput;
if ($?) {
print "--- Test failed ($dir) - expected and seen data differs.\n";
tcTestFailed($test, 'Expected and seen data differs', $compareOutput);
return 0;
}
print "--- Test PASSED ($dir) \n";
unlink('test.dump');
}
else {
print "--- Simulation is complete. Cannot evaluate correctness due to GUI mode.\n";
}
return 1;
}
#########################################################
# runSim
# run the simulation
sub runSim {
my $good = shift;
return $good if !$good;
my $ok = 1;
print "--- Running the simulation (takes a while). Logging to $config{'log'}\n";
unlink($config{'log'}, @rmFiles);
if ($sim eq 'isim') {
print "--- Running nf2_top_isim\n";
my $cwd = getcwd();
# Create a temporary file with the run command
my ($fh, $fname) = tempfile();
print $fh "cd $cwd\n";
print $fh "run all\n";
close $fh;
if (system("cd $testDir && $testDir/nf2_top_isim -tclbatch $fname | tee $dir/$config{'log'}") != 0) {
if ($good) {
print "--- Test Failed.\n";
tcTestFailed($test, 'Error when running simulator', '');
}
$ok = 0;
}
# Remove the temporary file
unlink($fname);
}
elsif ($sim eq 'vcs') {
print "--- Running my_sim\n";
if (system("$testDir/my_sim > $config{'log'} 2>&1") != 0) {
if ($good) {
print "--- Test Failed.\n";
tcTestFailed($test, 'Error when running simulator', '');
}
$ok = 0;
}
}
elsif ($sim eq 'vsim') {
print "--- Running vsim\n";
# Work out if there are any extra files to process
if ($dump) {
$config{'extra_files'} .= ' dump';
}
# Check if we should invoke the gui
my $cmd;
if ($gui) {
$config{'opts'} .= "";
$cmd = 'view object; view wave;';
}
else {
# default finish time is 1000000ns.
# the config.txt overrides the finish time.
$config{'opts'} .= " -c -l $config{'log'}";
$cmd = "run -all";
}
# Check if we need to disable the DRAM debug information
if (defined($ENV{'NF2_NO_DRAM_DEBUG'})) {
$config{'opts'} .= " -g/testbench/u_board/dram1/DEBUG=0 -g/testbench/u_board/dram2/DEBUG=0";
}
# Set the modelsim environment variable if the modelsim.ini file exists
if (-f $modelsimIni) {
$ENV{'MODELSIM'} = $modelsimIni;
}
if (system("vsim $config{'opts'} -voptargs=\"+acc\" testbench glbl $config{'extra_files'} -do \"${cmd}\"") != 0) {
if ($good) {
print "--- Test Failed.\n";
tcTestFailed($test, 'Error when running simulator', '');
}
$ok = 0;
}
}
return $ok;
}
#########################################################
# checkSimCompiled
# check that the simulator has been compiled
sub checkSimCompiled {
if ($sim eq 'isim') {
if ( ! -x "$testDir/nf2_top_isim" ) {
&printError("Cannot find executable nf2_top_isim at $testDir");
return 0;
}
}
elsif ($sim eq 'vcs') {
if ( ! -x "$testDir/my_sim" ) {
&printError("Cannot find executable my_sim at $testDir");
return 0;
}
}
else {
if ( ! -d "${testDir}/vsim_beh" ) {
&printError("Cannot find directory vsim_beh at $testDir");
return 0;
}
}
# Everything is good
return 1;
}
#########################################################
# printError
# prints an error including through all of the defined CIs
sub printError {
my $err = shift;
warn "Error: $err\n";
tcTestFailed($test, $err, '');
}
#########################################################
# createFinishFile
# create the file that instructs the simulator when to finish
sub createFinishFile {
if ( $config{'finish'} ne '' ) {
if (open FINISH, ">$finishFile") {
print FINISH "FINISH=$config{'finish'}\n";
close FINISH;
}
else {
&printError("Unable to open finish time file '$finishFile' for writing");
return 0;
}
}
return 1;
}