Tests: Fix vpi_user addition failure

This commit is contained in:
Wilson Snyder 2010-04-06 18:43:24 -04:00
parent 8e9a1e0bf3
commit 3ac707c645

View File

@ -22,6 +22,7 @@ if (!-r "$root/.git") {
my $cmd = "cd $root && fgrep -n include $files | sort"; my $cmd = "cd $root && fgrep -n include $files | sort";
my $grep = `$cmd`; my $grep = `$cmd`;
foreach my $line (split /\n/, $grep) { foreach my $line (split /\n/, $grep) {
next if $line =~ /vpi_user.h/; # IEEE Standard file - can't change it
my $hit; my $hit;
$hit = 1 if $line =~ /\bassert\.h/; $hit = 1 if $line =~ /\bassert\.h/;
$hit = 1 if $line =~ /\bctype\.h/; $hit = 1 if $line =~ /\bctype\.h/;