diff options
| author | Stefan Eßer <se@FreeBSD.org> | 2025-09-11 14:07:46 +0000 |
|---|---|---|
| committer | Stefan Eßer <se@FreeBSD.org> | 2025-09-11 14:07:46 +0000 |
| commit | 682da5a0fdb2c38ecc3951047a882471d62aa1d1 (patch) | |
| tree | 9315c84201e10a5b4cec2eda91146cac4e1c904d /tests/bc/scripts/add_02300.bc | |
| parent | 5a7f1dde93a4c681a5a4246ddabc562a7f7ce14d (diff) | |
vendor/bc: upgrade to version 7.1.0vendor/bc/7.1.0vendor/bc
This update fixes a few bugs:
- Improper response to double SIGINT with editline.
- Not letting libedit handle terminal size changes.
- A dc crash from improperly handling an error.
- A duplicate check for reference arrays.
- Build failures with GCC 15.
Diffstat (limited to 'tests/bc/scripts/add_02300.bc')
| -rw-r--r-- | tests/bc/scripts/add_02300.bc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/bc/scripts/add_02300.bc b/tests/bc/scripts/add_02300.bc new file mode 100644 index 000000000000..8e9622db6390 --- /dev/null +++ b/tests/bc/scripts/add_02300.bc @@ -0,0 +1,17 @@ +#! /usr/bin/bc -lq + +scale = 20 +x = 1234567890 / scale +len = length(x) + 1 + scale +len *= 2 + +for (i = 0; i <= len; ++i) { + a[i] = x * (10^i) + a[i] +} + +for (i = 2201; i <= 2300; ++i) { + for (j = 0; j < len; ++j) { + a[i] + a[j] + } +} |
