New comment by paper42 on void-packages repository https://github.com/void-linux/void-packages/pull/28447#issuecomment-779440381 Comment: ``` $ lib/test/lookup_test Testing i386_table... Testing ppc_table... Testing s390_table... Testing s390x_table... Testing x86_64_table... Testing actiontab... Testing errtab... Testing fieldtab... Unexpected match `A1' ``` the test failing is on [line 281](https://github.com/linux-audit/audit-userspace/blob/master/lib/test/lookup_test.c#L281) which calls TEST_S2I which contains this part: ```c /* Blindly assuming this will not generate a \ meaningful identifier. */ \ gen_id(buf); \ if (S2I(buf) != (ERR_VALUE)) { \ fprintf(stderr, \ "Unexpected match `%s'\n", \ buf); \ abort(); \ } \ ``` ERR_VALUE = -1 and S2I(buf) = 201, so it seems to me like it actually generated a valid identifier, but I am a bit lost.