devel source tree? (doc page outdated or something broken?)

2013-07-14 Thread Linda Walsh
I was trying to find the location of the current development source. I followed the access instructions at: https://savannah.gnu.org/cvs/?group=bash but got no files (got 2 dirs: CVSROOT and bash, but nothing in either of them). I take it that page is out of date or is something broken? Th

Minor bug declaring arrays of integers: dcl -ai=>broken, dcl -ia=>ok

2013-07-14 Thread Linda Walsh
In order to declare an array of type int (or an integer array) I first tried: declare -ai -g foo=(1 2 xx 3) echo "${foo[@]}" 1 2 xx 3 <-incorrect So then tried: declare -ia -g foo=(1 2 xx 3) echo "${foo[@]}" 1 2 0 3 <-correct! It seems 'declare' is sensitive to the or

Fwd: bash kill(1) doesn't report errors when $(ulimit -i) is exceeded

2013-07-14 Thread Cedric Blancher
Trying to repost because the list didn't pass the bug report through yet. Ced -- Forwarded message -- From: Cedric Blancher Date: 14 July 2013 20:38 Subject: bash kill(1) doesn't report errors when $(ulimit -i) is exceeded To: bug-bash@gnu.org The tests below is from the ongoin

bash kill(1) doesn't report errors when $(ulimit -i) is exceeded

2013-07-14 Thread Cedric Blancher
The tests below is from the ongoing work of David Korn and Roland Mainz to make signals in ksh93 reliable and predictable (so far no shell tested really does it). I derived one of their tests and found that bash doesn't handle realtime signals properly either: bash -c '{ trap ":" RTMIN ; kill -STOP