diff options
| author | Stefan Eßer <se@FreeBSD.org> | 2022-03-07 22:08:20 +0000 |
|---|---|---|
| committer | Stefan Eßer <se@FreeBSD.org> | 2022-03-07 22:08:20 +0000 |
| commit | 3673adf1ee311d6f83176d3e43cf0efb314764e4 (patch) | |
| tree | e0025bff2224059a1b5a8b538cc8a7cd0a3df637 /tests/fuzzing/bc_inputs2/bitfuncs.txt | |
| parent | 4dfc0fa2870c28e6a44c223860375a46e52fdade (diff) | |
vendor/bc: import version 5.2.3vendor/bc/5.2.3
This version fixes a parse error when passing a file to bc using -f
if that file has a multiline comment or string in it.
MFC after: 3 days
Diffstat (limited to 'tests/fuzzing/bc_inputs2/bitfuncs.txt')
| -rw-r--r-- | tests/fuzzing/bc_inputs2/bitfuncs.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/fuzzing/bc_inputs2/bitfuncs.txt b/tests/fuzzing/bc_inputs2/bitfuncs.txt new file mode 100644 index 000000000000..e0703a715c08 --- /dev/null +++ b/tests/fuzzing/bc_inputs2/bitfuncs.txt @@ -0,0 +1,42 @@ +band(13946233938940740889, 12028823668264674112) +bor(13946233938940740889, 12028823668264674112) +bxor(13946233938940740889, 12028823668264674112) +bshl(2366588185, 0) +bshr(2366588185, 0) +bshl(347743040, 25) +bshr(347743040, 25) +bnot8(13946233938940740889) +bnot8(25) +bnot16(13946233938940740889) +bnot16(17689) +bnot32(13946233938940740889) +bnot32(2366588185) +bnot64(13946233938940740889) +brev8(13946233938940740889) +brev8(25) +brev16(13946233938940740889) +brev16(17689) +brev32(13946233938940740889) +brev32(2366588185) +brev64(13946233938940740889) +brol8(13946233938940740889, 12028823668264674112) +brol8(25, 64) +brol16(13946233938940740889, 12028823668264674112) +brol16(17689, 9024) +brol32(13946233938940740889, 12028823668264674112) +brol32(2366588185, 347743040) +brol64(13946233938940740889, 12028823668264674112) +bror8(13946233938940740889, 12028823668264674112) +bror8(25, 64) +bror16(13946233938940740889, 12028823668264674112) +bror16(17689, 9024) +bror32(13946233938940740889, 12028823668264674112) +bror32(2366588185, 347743040) +bror64(13946233938940740889, 12028823668264674112) +bmod8(13946233938940740889) +bmod8(25) +bmod16(13946233938940740889) +bmod16(17689) +bmod32(13946233938940740889) +bmod32(2366588185) +bmod64(13946233938940740889) |
