Fix a broken regexp which would mention `$/' when it ought to have
mentioned `$'. The result would be that it would match lines like
type some_ocaml_type = Thing | Other_Thing
but ignore everything but the type name, giving wrong answers.
Check that we check mentioned types. Otherwise if we fail to spot
some suitable thing in the ocaml, we would just omit checking this
type !
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Acked-by: Andrew Cooper <Andrew.Cooper3@citrix.com>
Acked-by: Christian Lindig <christian.lindig@citrix.com>
} elsif ($cline == 1 && @vals == 1) {
my ($otype) = @vals;
die "reference to undefined OType $otype" unless $enums{$otype};
+ $cline = -1;
} elsif ($cline == 1 && @vals == 3) {
$ei->{$_} = shift @vals foreach qw(OType OPrefix Mangle);
} elsif ($cline == 2 && @vals == 3) {
my $bitnum = 0;
while (<OCAML_FILE>) {
if (!$ei) {
- if (m{^type \s+ (\w+) \s* \= \s* $/}x && $enums{$1}) {
+ if (m{^type \s+ (\w+) \s* \= \s* $}x && $enums{$1}) {
print "// found ocaml type $1 at $o:$.\n" or die $!;
$ei = $enums{$1};
$cval = '';
} else {
die Dumper($ei)." ?";
}
+ $ei->{Checked} = 1;
$ei = undef;
} elsif (!m{\S}) {
} else {
}
}
+foreach $ei (values %enums) {
+ next if $ei->{Checked};
+ die "did not find ocaml type definition for $ei->{OType} in $o";
+}
+
close STDOUT or die $!;