From 3ac707c6452c79e18917933084fd5896720a5a13 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 6 Apr 2010 18:43:24 -0400 Subject: [PATCH] Tests: Fix vpi_user addition failure --- test_regress/t/t_dist_cinclude.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/test_regress/t/t_dist_cinclude.pl b/test_regress/t/t_dist_cinclude.pl index be66359d8..ac6d332d8 100755 --- a/test_regress/t/t_dist_cinclude.pl +++ b/test_regress/t/t_dist_cinclude.pl @@ -22,6 +22,7 @@ if (!-r "$root/.git") { my $cmd = "cd $root && fgrep -n include $files | sort"; my $grep = `$cmd`; foreach my $line (split /\n/, $grep) { + next if $line =~ /vpi_user.h/; # IEEE Standard file - can't change it my $hit; $hit = 1 if $line =~ /\bassert\.h/; $hit = 1 if $line =~ /\bctype\.h/;