Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1642886
| From | "Luis R. Rodriguez" <mcgrof@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2 7/9] test_sysctl: add simple proc_dointvec() case |
| Date | 2017-05-17 00:50 +0200 |
| Message-ID | <tHTrX-3gi-5@gated-at.bofh.it> (permalink) |
| References | <t8LSh-7Ue-11@gated-at.bofh.it> <t9tTj-29U-3@gated-at.bofh.it> <t9tTk-29U-27@gated-at.bofh.it> <tawYO-1dY-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, Feb 13, 2017 at 02:00:13PM -0800, Kees Cook wrote:
> On Fri, Feb 10, 2017 at 4:36 PM, Luis R. Rodriguez <mcgrof@kernel.org> wrote:
> > diff --git a/tools/testing/selftests/sysctl/sysctl.sh b/tools/testing/selftests/sysctl/sysctl.sh
> > index 14b9d875db42..45fd2ee5739c 100755
> > --- a/tools/testing/selftests/sysctl/sysctl.sh
> > +++ b/tools/testing/selftests/sysctl/sysctl.sh
> > @@ -24,6 +24,7 @@ TEST_FILE=$(mktemp)
> > @@ -261,6 +268,48 @@ run_limit_digit()
> > test_rc
> > }
> >
> > +# You are using an int
> > +run_limit_digit_int()
> > +{
> > + echo -n "Testing INT_MAX works ..."
> > + reset_vals
> > + TEST_STR="$INT_MAX"
> > + echo -n $TEST_STR > $TARGET
> > +
> > + if ! verify "${TARGET}"; then
> > + echo "FAIL" >&2
> > + rc=1
> > + else
> > + echo "ok"
> > + fi
> > + test_rc
> > +
> > + echo -n "Testing INT_MAX + 1 will fail as expected..."
> > + reset_vals
> > + TEST_STR=$(($INT_MAX+1))
>
> Is the shell always going to do the right thing here? Maybe these test
> values should be explicitly hard-coded? I'm on the fence...
Will use the good 'ol time tested:
let TEST_STR=$INT_MAX+1
I had used it for all other sums before, not sure why I went short-cut mode.
Either way this is requiring /bin/bash at the top header, but yeah not sure
when that short cut mode addition was added to bash. Better to be both safe
and consistent.
Luis
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH v2 7/9] test_sysctl: add simple proc_dointvec() case "Luis R. Rodriguez" <mcgrof@kernel.org> - 2017-05-17 00:50 +0200
csiph-web