diff options
author | Karl Williamson <khw@cpan.org> | 2018-07-24 20:12:24 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-08-03 12:55:11 -0600 |
commit | c466fc33be6150ce2c9012f6475bc0a4d9372d25 (patch) | |
tree | 96e159596fc5739192122ecc9a77fd5f266108f9 /lib/unicore | |
parent | 016c8ffcc6c9d41d145035ef5df607568880e3b3 (diff) | |
download | perl-c466fc33be6150ce2c9012f6475bc0a4d9372d25.tar.gz |
mktables: Some tests are invalid
These tests have been wrongly passing. A future commit will change
that.
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 56cddbbd02..38f5c9fa3e 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -19141,6 +19141,11 @@ EOF_CODE # already guaranteed to be in error my $already_error = ! $table->file_path; + # A table that begins with these could actually be a + # user-defined property, so won't be compile time errors, as + # the definitions of those can be deferred until runtime + next if $already_error && $table_name =~ / ^ I[ns] /x; + # Generate error cases for this alias. push @output, generate_error($property_name, $table_name, |