From 61407807ab6b9505041a74ad96ffb4aeab937d36 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 4 Apr 2018 21:14:28 +0200 Subject: hush: fix for readonly vars in "ro=A ro=B cmd" case Signed-off-by: Denys Vlasenko --- shell/hush_test/hush-vars/readonly3.right | 4 ++++ shell/hush_test/hush-vars/readonly3.tests | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 shell/hush_test/hush-vars/readonly3.right create mode 100755 shell/hush_test/hush-vars/readonly3.tests (limited to 'shell/hush_test') diff --git a/shell/hush_test/hush-vars/readonly3.right b/shell/hush_test/hush-vars/readonly3.right new file mode 100644 index 000000000..acd931243 --- /dev/null +++ b/shell/hush_test/hush-vars/readonly3.right @@ -0,0 +1,4 @@ +hush: v=2: readonly variable +hush: v=3: readonly variable +1 +Ok:1 diff --git a/shell/hush_test/hush-vars/readonly3.tests b/shell/hush_test/hush-vars/readonly3.tests new file mode 100755 index 000000000..17780cfda --- /dev/null +++ b/shell/hush_test/hush-vars/readonly3.tests @@ -0,0 +1,4 @@ +readonly v=1 +# there was a bug causing second assignment to be not checked +v=2 v=3 echo $v +echo Ok:$v -- cgit v1.2.3