* [LTP] [PATCH] Make fs_inod script shell agnostic
@ 2011-02-26 16:05 Cristian Greco
2011-02-26 21:59 ` Garrett Cooper
0 siblings, 1 reply; 4+ messages in thread
From: Cristian Greco @ 2011-02-26 16:05 UTC (permalink / raw)
To: ltp-list
[-- Attachment #1.1.1: Type: text/plain, Size: 339 bytes --]
Hi,
this patch will fix bashisms in fs_inod test script, i.e. it will be
shell agnostic.
Signed-off-by: Cristian Greco <cristian@regolo.cc>
---
testcases/kernel/fs/fs_inod/fs_inod | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)
Thanks,
--
Cristian Greco
GPG key ID: 0xCF4D32E4
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1.2: 0001-Make-fs_inod-script-shell-agnostic.patch --]
[-- Type: text/x-patch, Size: 2743 bytes --]
diff --git a/testcases/kernel/fs/fs_inod/fs_inod b/testcases/kernel/fs/fs_inod/fs_inod
index 39d7302..b7b6bd4 100755
--- a/testcases/kernel/fs/fs_inod/fs_inod
+++ b/testcases/kernel/fs/fs_inod/fs_inod
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
#
@@ -51,9 +51,9 @@
#
# RETURNS: None.
#=============================================================================
-function err_log
+err_log()
{
- let step_errors=$step_errors+1
+ step_errors=$(($step_errors+1))
}
@@ -66,7 +66,7 @@ function err_log
#
# RETURNS: None.
#=============================================================================
-function make_subdirs
+make_subdirs ()
{
i=0;
while [ "$i" -lt "$numsubdirs" ]; do
@@ -74,7 +74,7 @@ function make_subdirs
echo "$0: mkdir dir$i"
mkdir -p dir$i || echo "mkdir dir$i FAILED"
}
- let i="$i + 1"
+ i=$(($i + 1))
done;
}
@@ -88,7 +88,7 @@ function make_subdirs
#
# RETURNS: None.
#=============================================================================
-function touch_files
+touch_files()
{
echo "$0: touch files [0-$numsubdirs]/file$numsubdirs[0-$numfiles]"
j=0;
@@ -99,10 +99,10 @@ function touch_files
while [ "$k" -lt "$numfiles" ]; do
>file$j$k || err_log ">file$j$k FAILED"
- let k="$k + 1"
+ k=$(($k + 1))
done
- let j="$j + 1"
+ j=$(($j + 1))
cd ..
done
}
@@ -117,7 +117,7 @@ function touch_files
#
# RETURNS: None.
#=============================================================================
-function rm_files
+rm_files()
{
echo "$0: rm files [0-$numsubdirs]/file$numsubdirs[0-$numfiles]"
j=0;
@@ -128,10 +128,10 @@ function rm_files
while [ "$k" -lt "$numfiles" ]; do
rm -f file$j$k || err_log "rm -f file$j$k FAILED"
- let k="$k + 1"
+ k=$(($k + 1))
done
- let j="$j + 1"
+ j=$(($j + 1))
cd ..
done
}
@@ -146,7 +146,7 @@ function rm_files
#
# RETURNS: None.
#=============================================================================
-function step1
+step1 ()
{
echo "=============================================="
echo "MULTIPLE PROCESSES CREATING AND DELETING FILES"
@@ -199,7 +199,7 @@ function step1
rm_files &
pid1=$!
- let i="$i + 1"
+ i=$(($i + 1))
done
# wait for all background processes to complete execution
@@ -244,7 +244,7 @@ function step1
step$I
if [ $? != 0 ]; then
echo "step$I failed - see above errors"
- let ERRORS=$ERRORS+$step_errors
+ ERRORS=$(($ERRORS+$step_errors))
fi
done
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
[-- Attachment #2: Type: text/plain, Size: 429 bytes --]
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
[-- Attachment #3: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [LTP] [PATCH] Make fs_inod script shell agnostic
2011-02-26 16:05 [LTP] [PATCH] Make fs_inod script shell agnostic Cristian Greco
@ 2011-02-26 21:59 ` Garrett Cooper
2011-02-26 23:30 ` Cristian Greco
0 siblings, 1 reply; 4+ messages in thread
From: Garrett Cooper @ 2011-02-26 21:59 UTC (permalink / raw)
To: Cristian Greco; +Cc: ltp-list
On Sat, Feb 26, 2011 at 8:05 AM, Cristian Greco <cristian@regolo.cc> wrote:
> Hi,
>
> this patch will fix bashisms in fs_inod test script, i.e. it will be
> shell agnostic.
The overall idea is sane, but we use the null operator with the
arithmetic operand $(( )) to increment in LTP:
`A=$(( $A + 1 ))' -> `: $(( A += 1 ))'
Thanks,
-Garrett
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] [PATCH] Make fs_inod script shell agnostic
2011-02-26 21:59 ` Garrett Cooper
@ 2011-02-26 23:30 ` Cristian Greco
2011-02-27 1:09 ` Garrett Cooper
0 siblings, 1 reply; 4+ messages in thread
From: Cristian Greco @ 2011-02-26 23:30 UTC (permalink / raw)
To: Garrett Cooper; +Cc: ltp-list
[-- Attachment #1.1.1: Type: text/plain, Size: 295 bytes --]
Hi Garrett,
find attached the modified patch.
Signed-off-by: Cristian Greco <cristian@regolo.cc>
---
testcases/kernel/fs/fs_inod/fs_inod | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)
Thanks,
--
Cristian Greco
GPG key ID: 0xCF4D32E4
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1.2: 0001-Make-fs_inod-script-shell-agnostic.patch --]
[-- Type: text/x-patch, Size: 2731 bytes --]
diff --git a/testcases/kernel/fs/fs_inod/fs_inod b/testcases/kernel/fs/fs_inod/fs_inod
index 39d7302..b962dad 100755
--- a/testcases/kernel/fs/fs_inod/fs_inod
+++ b/testcases/kernel/fs/fs_inod/fs_inod
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
#
@@ -51,9 +51,9 @@
#
# RETURNS: None.
#=============================================================================
-function err_log
+err_log()
{
- let step_errors=$step_errors+1
+ : $((step_errors += 1))
}
@@ -66,7 +66,7 @@ function err_log
#
# RETURNS: None.
#=============================================================================
-function make_subdirs
+make_subdirs ()
{
i=0;
while [ "$i" -lt "$numsubdirs" ]; do
@@ -74,7 +74,7 @@ function make_subdirs
echo "$0: mkdir dir$i"
mkdir -p dir$i || echo "mkdir dir$i FAILED"
}
- let i="$i + 1"
+ : $((i += 1))
done;
}
@@ -88,7 +88,7 @@ function make_subdirs
#
# RETURNS: None.
#=============================================================================
-function touch_files
+touch_files()
{
echo "$0: touch files [0-$numsubdirs]/file$numsubdirs[0-$numfiles]"
j=0;
@@ -99,10 +99,10 @@ function touch_files
while [ "$k" -lt "$numfiles" ]; do
>file$j$k || err_log ">file$j$k FAILED"
- let k="$k + 1"
+ : $((k += 1))
done
- let j="$j + 1"
+ : $((j += 1))
cd ..
done
}
@@ -117,7 +117,7 @@ function touch_files
#
# RETURNS: None.
#=============================================================================
-function rm_files
+rm_files()
{
echo "$0: rm files [0-$numsubdirs]/file$numsubdirs[0-$numfiles]"
j=0;
@@ -128,10 +128,10 @@ function rm_files
while [ "$k" -lt "$numfiles" ]; do
rm -f file$j$k || err_log "rm -f file$j$k FAILED"
- let k="$k + 1"
+ : $((k += 1))
done
- let j="$j + 1"
+ : $((j += 1))
cd ..
done
}
@@ -146,7 +146,7 @@ function rm_files
#
# RETURNS: None.
#=============================================================================
-function step1
+step1 ()
{
echo "=============================================="
echo "MULTIPLE PROCESSES CREATING AND DELETING FILES"
@@ -199,7 +199,7 @@ function step1
rm_files &
pid1=$!
- let i="$i + 1"
+ : $((i += 1))
done
# wait for all background processes to complete execution
@@ -244,7 +244,7 @@ function step1
step$I
if [ $? != 0 ]; then
echo "step$I failed - see above errors"
- let ERRORS=$ERRORS+$step_errors
+ : $((ERRORS += step_errors))
fi
done
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
[-- Attachment #2: Type: text/plain, Size: 429 bytes --]
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
[-- Attachment #3: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [LTP] [PATCH] Make fs_inod script shell agnostic
2011-02-26 23:30 ` Cristian Greco
@ 2011-02-27 1:09 ` Garrett Cooper
0 siblings, 0 replies; 4+ messages in thread
From: Garrett Cooper @ 2011-02-27 1:09 UTC (permalink / raw)
To: Cristian Greco; +Cc: ltp-list
On Sat, Feb 26, 2011 at 3:30 PM, Cristian Greco <cristian@regolo.cc> wrote:
> Hi Garrett,
>
> find attached the modified patch.
Committed -- thanks!
-Garrett
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-02-27 1:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-26 16:05 [LTP] [PATCH] Make fs_inod script shell agnostic Cristian Greco
2011-02-26 21:59 ` Garrett Cooper
2011-02-26 23:30 ` Cristian Greco
2011-02-27 1:09 ` Garrett Cooper
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.