* [LTP] [PATCH] containers: fix three cases' exit status
@ 2014-11-06 5:31 Xing Gu
2014-11-06 8:26 ` Cyril Hrubis
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Xing Gu @ 2014-11-06 5:31 UTC (permalink / raw)
To: ltp-list
In iproute2 whose version is earlier than v2.6.39, ip
command doesn't support netns object. In this condition,
running three cases (netns_devices.sh, netns_devices2.sh
and netns_isolation.sh) will exit with TFAIL. It is not
suitable, so fix these cases' exit status with TCONF.
Signed-off-by: Xing Gu <gux.fnst@cn.fujitsu.com>
---
testcases/kernel/containers/netns/netns_devices.sh | 4 ++++
testcases/kernel/containers/netns/netns_devices2.sh | 4 ++++
testcases/kernel/containers/netns/netns_isolation.sh | 4 ++++
3 files changed, 12 insertions(+)
diff --git a/testcases/kernel/containers/netns/netns_devices.sh b/testcases/kernel/containers/netns/netns_devices.sh
index 7126267..990a74c 100755
--- a/testcases/kernel/containers/netns/netns_devices.sh
+++ b/testcases/kernel/containers/netns/netns_devices.sh
@@ -46,6 +46,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+# check if ip command supports netns object
+ip help 2>&1 | grep -w netns &>/dev/null || \
+ tst_brkm TCONF "ip command does not support netns object"
+
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_devices2.sh b/testcases/kernel/containers/netns/netns_devices2.sh
index f0d0651..7e68eea 100755
--- a/testcases/kernel/containers/netns/netns_devices2.sh
+++ b/testcases/kernel/containers/netns/netns_devices2.sh
@@ -46,6 +46,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip ifconfig
+# check if ip command supports netns object
+ip help 2>&1 | grep -w netns &>/dev/null || \
+ tst_brkm TCONF "ip command does not support netns object"
+
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_isolation.sh b/testcases/kernel/containers/netns/netns_isolation.sh
index f1ddf2c..127b07f 100755
--- a/testcases/kernel/containers/netns/netns_isolation.sh
+++ b/testcases/kernel/containers/netns/netns_isolation.sh
@@ -40,6 +40,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+# check if ip command supports netns object
+ip help 2>&1 | grep -w netns &>/dev/null || \
+ tst_brkm TCONF "ip command does not support netns object"
+
TST_CLEANUP=cleanup
--
1.9.3
------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [LTP] [PATCH] containers: fix three cases' exit status
2014-11-06 5:31 [LTP] [PATCH] containers: fix three cases' exit status Xing Gu
@ 2014-11-06 8:26 ` Cyril Hrubis
2014-11-11 6:38 ` [LTP] [PATCH v2] " Xing Gu
2014-12-05 8:26 ` [LTP] [PATCH v3] " Xing Gu
2 siblings, 0 replies; 6+ messages in thread
From: Cyril Hrubis @ 2014-11-06 8:26 UTC (permalink / raw)
To: Xing Gu; +Cc: ltp-list
Hi!
> In iproute2 whose version is earlier than v2.6.39, ip
> command doesn't support netns object. In this condition,
> running three cases (netns_devices.sh, netns_devices2.sh
> and netns_isolation.sh) will exit with TFAIL. It is not
> suitable, so fix these cases' exit status with TCONF.
Again, it would be better to compare the versions rather than grepping
the output. And for this case it may even make sense to put the check
into a common script and source it in all the tests that needs it.
I.e. create netns_helper.sh and put the check in there.
--
Cyril Hrubis
chrubis@suse.cz
------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [LTP] [PATCH v2] containers: fix three cases' exit status
2014-11-06 5:31 [LTP] [PATCH] containers: fix three cases' exit status Xing Gu
2014-11-06 8:26 ` Cyril Hrubis
@ 2014-11-11 6:38 ` Xing Gu
2014-11-11 13:02 ` Cyril Hrubis
2014-12-05 8:26 ` [LTP] [PATCH v3] " Xing Gu
2 siblings, 1 reply; 6+ messages in thread
From: Xing Gu @ 2014-11-11 6:38 UTC (permalink / raw)
To: ltp-list
In iproute2 whose version is earlier than v3.0.0, ip
command doesn't support netns object. In this condition,
running three cases (netns_devices.sh, netns_devices2.sh
and netns_isolation.sh) will exit with TFAIL. It is not
suitable, so fix these cases' exit status with TCONF.
Signed-off-by: Xing Gu <gux.fnst@cn.fujitsu.com>
---
testcases/kernel/containers/netns/netns_devices.sh | 5 +++
.../kernel/containers/netns/netns_devices2.sh | 5 +++
testcases/kernel/containers/netns/netns_helper.sh | 45 ++++++++++++++++++++++
.../kernel/containers/netns/netns_isolation.sh | 5 +++
4 files changed, 60 insertions(+)
create mode 100755 testcases/kernel/containers/netns/netns_helper.sh
diff --git a/testcases/kernel/containers/netns/netns_devices.sh b/testcases/kernel/containers/netns/netns_devices.sh
index 7126267..01f7056 100755
--- a/testcases/kernel/containers/netns/netns_devices.sh
+++ b/testcases/kernel/containers/netns/netns_devices.sh
@@ -29,6 +29,7 @@
TCID=netns_devices
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP0=192.168.0.1
IP1=192.168.0.2
@@ -46,6 +47,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+tst_check_iproute 111010
+if [ $? -eq 0 ]; then
+ tst_brkm TCONF "ip command does not support netns object"
+fi
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_devices2.sh b/testcases/kernel/containers/netns/netns_devices2.sh
index f0d0651..3fc38b5 100755
--- a/testcases/kernel/containers/netns/netns_devices2.sh
+++ b/testcases/kernel/containers/netns/netns_devices2.sh
@@ -29,6 +29,7 @@
TCID=netns_devices2
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP0=192.168.0.1
IP1=192.168.0.2
@@ -46,6 +47,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip ifconfig
+tst_check_iproute 111010
+if [ $? -eq 0 ]; then
+ tst_brkm TCONF "ip command does not support netns object"
+fi
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_helper.sh b/testcases/kernel/containers/netns/netns_helper.sh
new file mode 100755
index 0000000..401b795
--- /dev/null
+++ b/testcases/kernel/containers/netns/netns_helper.sh
@@ -0,0 +1,45 @@
+#!/bin/sh
+#
+# Copyright (c) Linux Test Project, 2014
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# This is a LTP shell test library for iproute.
+#
+
+. test.sh
+
+# Check whether the current iproute version matches specified
+# iproute. It returns 0, 1, or 2 if cur_ipver is found, to be
+# less than, to match, or be greater than spe_ipver.
+tst_check_iproute()
+{
+ local cur_ipver=`ip -V`
+ local spe_ipver=$1
+
+ cur_ipver=${cur_ipver##*s}
+
+ if [ -z $cur_ipver ] || [ -z $spe_ipver ]; then
+ tst_brkm TBROK "don't obtain valid iproute version"
+ fi
+
+ if [ $cur_ipver -lt $spe_ipver ]; then
+ return 0;
+ elif [ $cur_ipver -eq $spe_ipver ]; then
+ return 1;
+ else
+ return 2;
+ fi
+}
diff --git a/testcases/kernel/containers/netns/netns_isolation.sh b/testcases/kernel/containers/netns/netns_isolation.sh
index f1ddf2c..06e91db 100755
--- a/testcases/kernel/containers/netns/netns_isolation.sh
+++ b/testcases/kernel/containers/netns/netns_isolation.sh
@@ -24,6 +24,7 @@
TCID=netns_isolation
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP=192.168.0.2
@@ -40,6 +41,10 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+tst_check_iproute 111010
+if [ $? -eq 0 ]; then
+ tst_brkm TCONF "ip command does not support netns object"
+fi
TST_CLEANUP=cleanup
--
1.9.3
------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [LTP] [PATCH v2] containers: fix three cases' exit status
2014-11-11 6:38 ` [LTP] [PATCH v2] " Xing Gu
@ 2014-11-11 13:02 ` Cyril Hrubis
0 siblings, 0 replies; 6+ messages in thread
From: Cyril Hrubis @ 2014-11-11 13:02 UTC (permalink / raw)
To: Xing Gu; +Cc: ltp-list
Hi!
> Signed-off-by: Xing Gu <gux.fnst@cn.fujitsu.com>
> ---
> testcases/kernel/containers/netns/netns_devices.sh | 5 +++
> .../kernel/containers/netns/netns_devices2.sh | 5 +++
> testcases/kernel/containers/netns/netns_helper.sh | 45 ++++++++++++++++++++++
> .../kernel/containers/netns/netns_isolation.sh | 5 +++
> 4 files changed, 60 insertions(+)
> create mode 100755 testcases/kernel/containers/netns/netns_helper.sh
>
> diff --git a/testcases/kernel/containers/netns/netns_devices.sh b/testcases/kernel/containers/netns/netns_devices.sh
> index 7126267..01f7056 100755
> --- a/testcases/kernel/containers/netns/netns_devices.sh
> +++ b/testcases/kernel/containers/netns/netns_devices.sh
> @@ -29,6 +29,7 @@
> TCID=netns_devices
> TST_TOTAL=3
> . test.sh
> +. netns_helper.sh
> IP0=192.168.0.1
> IP1=192.168.0.2
>
> @@ -46,6 +47,10 @@ cleanup()
> # SETUP
> tst_require_root
> tst_check_cmds ip
> +tst_check_iproute 111010
> +if [ $? -eq 0 ]; then
> + tst_brkm TCONF "ip command does not support netns object"
> +fi
> TST_CLEANUP=cleanup
>
> # creates a new network namespace "myns0" (man 8 ip-netns)
> diff --git a/testcases/kernel/containers/netns/netns_devices2.sh b/testcases/kernel/containers/netns/netns_devices2.sh
> index f0d0651..3fc38b5 100755
> --- a/testcases/kernel/containers/netns/netns_devices2.sh
> +++ b/testcases/kernel/containers/netns/netns_devices2.sh
> @@ -29,6 +29,7 @@
> TCID=netns_devices2
> TST_TOTAL=3
> . test.sh
> +. netns_helper.sh
> IP0=192.168.0.1
> IP1=192.168.0.2
>
> @@ -46,6 +47,10 @@ cleanup()
> # SETUP
> tst_require_root
> tst_check_cmds ip ifconfig
> +tst_check_iproute 111010
> +if [ $? -eq 0 ]; then
> + tst_brkm TCONF "ip command does not support netns object"
> +fi
> TST_CLEANUP=cleanup
>
> # creates a new network namespace "myns0" (man 8 ip-netns)
> diff --git a/testcases/kernel/containers/netns/netns_helper.sh b/testcases/kernel/containers/netns/netns_helper.sh
> new file mode 100755
> index 0000000..401b795
> --- /dev/null
> +++ b/testcases/kernel/containers/netns/netns_helper.sh
> @@ -0,0 +1,45 @@
> +#!/bin/sh
> +#
> +# Copyright (c) Linux Test Project, 2014
> +#
> +# This program is free software; you can redistribute it and/or modify
> +# it under the terms of the GNU General Public License as published by
> +# the Free Software Foundation; either version 2 of the License, or
> +# (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License along
> +# with this program; if not, write to the Free Software Foundation, Inc.,
> +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
> +#
> +# This is a LTP shell test library for iproute.
> +#
> +
> +. test.sh
> +
> +# Check whether the current iproute version matches specified
> +# iproute. It returns 0, 1, or 2 if cur_ipver is found, to be
> +# less than, to match, or be greater than spe_ipver.
> +tst_check_iproute()
> +{
Hmm, we may also want to move the tst_check_cmds ip here
so we don't have to do that in all of the testcases.
> + local cur_ipver=`ip -V`
> + local spe_ipver=$1
> +
> + cur_ipver=${cur_ipver##*s}
> +
> + if [ -z $cur_ipver ] || [ -z $spe_ipver ]; then
> + tst_brkm TBROK "don't obtain valid iproute version"
> + fi
> +
> + if [ $cur_ipver -lt $spe_ipver ]; then
Why don't we just do:
tst_brkm TCONF "ip command does not support netns object"
here instead of returning some exit value?
Then we could just do:
tst_check_iproute 111010
in the testcases.
> + return 0;
> + elif [ $cur_ipver -eq $spe_ipver ]; then
> + return 1;
> + else
> + return 2;
> + fi
> +}
> diff --git a/testcases/kernel/containers/netns/netns_isolation.sh b/testcases/kernel/containers/netns/netns_isolation.sh
> index f1ddf2c..06e91db 100755
> --- a/testcases/kernel/containers/netns/netns_isolation.sh
> +++ b/testcases/kernel/containers/netns/netns_isolation.sh
> @@ -24,6 +24,7 @@
> TCID=netns_isolation
> TST_TOTAL=3
> . test.sh
> +. netns_helper.sh
> IP=192.168.0.2
>
>
> @@ -40,6 +41,10 @@ cleanup()
> # SETUP
> tst_require_root
> tst_check_cmds ip
> +tst_check_iproute 111010
> +if [ $? -eq 0 ]; then
> + tst_brkm TCONF "ip command does not support netns object"
> +fi
> TST_CLEANUP=cleanup
>
>
> --
> 1.9.3
>
>
> ------------------------------------------------------------------------------
> Comprehensive Server Monitoring with Site24x7.
> Monitor 10 servers for $9/Month.
> Get alerted through email, SMS, voice calls or mobile push notifications.
> Take corrective actions from your mobile device.
> http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
> _______________________________________________
> Ltp-list mailing list
> Ltp-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ltp-list
--
Cyril Hrubis
chrubis@suse.cz
------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [LTP] [PATCH v3] containers: fix three cases' exit status
2014-11-06 5:31 [LTP] [PATCH] containers: fix three cases' exit status Xing Gu
2014-11-06 8:26 ` Cyril Hrubis
2014-11-11 6:38 ` [LTP] [PATCH v2] " Xing Gu
@ 2014-12-05 8:26 ` Xing Gu
2014-12-17 14:35 ` Cyril Hrubis
2 siblings, 1 reply; 6+ messages in thread
From: Xing Gu @ 2014-12-05 8:26 UTC (permalink / raw)
To: ltp-list
In iproute2 whose version is earlier than v3.0.0, ip
command doesn't support netns object. In this condition,
running three cases (netns_devices.sh, netns_devices2.sh
and netns_isolation.sh) will exit with TFAIL. It is not
suitable, so fix these cases' exit status with TCONF.
Signed-off-by: Xing Gu <gux.fnst@cn.fujitsu.com>
---
testcases/kernel/containers/netns/netns_devices.sh | 2 ++
.../kernel/containers/netns/netns_devices2.sh | 2 ++
testcases/kernel/containers/netns/netns_helper.sh | 39 ++++++++++++++++++++++
.../kernel/containers/netns/netns_isolation.sh | 2 ++
4 files changed, 45 insertions(+)
create mode 100755 testcases/kernel/containers/netns/netns_helper.sh
diff --git a/testcases/kernel/containers/netns/netns_devices.sh b/testcases/kernel/containers/netns/netns_devices.sh
index 7126267..750ffcc 100755
--- a/testcases/kernel/containers/netns/netns_devices.sh
+++ b/testcases/kernel/containers/netns/netns_devices.sh
@@ -29,6 +29,7 @@
TCID=netns_devices
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP0=192.168.0.1
IP1=192.168.0.2
@@ -46,6 +47,7 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+tst_check_iproute 111010
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_devices2.sh b/testcases/kernel/containers/netns/netns_devices2.sh
index f0d0651..8dfc6c6 100755
--- a/testcases/kernel/containers/netns/netns_devices2.sh
+++ b/testcases/kernel/containers/netns/netns_devices2.sh
@@ -29,6 +29,7 @@
TCID=netns_devices2
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP0=192.168.0.1
IP1=192.168.0.2
@@ -46,6 +47,7 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip ifconfig
+tst_check_iproute 111010
TST_CLEANUP=cleanup
# creates a new network namespace "myns0" (man 8 ip-netns)
diff --git a/testcases/kernel/containers/netns/netns_helper.sh b/testcases/kernel/containers/netns/netns_helper.sh
new file mode 100755
index 0000000..70415d2
--- /dev/null
+++ b/testcases/kernel/containers/netns/netns_helper.sh
@@ -0,0 +1,39 @@
+#!/bin/sh
+#
+# Copyright (c) Linux Test Project, 2014
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# This is a LTP shell test library for iproute.
+#
+
+. test.sh
+
+tst_check_iproute()
+{
+ local cur_ipver=`ip -V`
+ local spe_ipver=$1
+
+ cur_ipver=${cur_ipver##*s}
+
+ if [ -z $cur_ipver ] || [ -z $spe_ipver ]; then
+ tst_brkm TBROK "don't obtain valid iproute version"
+ fi
+
+ if [ $cur_ipver -lt $spe_ipver ]; then
+ tst_brkm TCONF \
+ "The commands in iproute tools do not support required objects"
+ fi
+}
diff --git a/testcases/kernel/containers/netns/netns_isolation.sh b/testcases/kernel/containers/netns/netns_isolation.sh
index f1ddf2c..78dc081 100755
--- a/testcases/kernel/containers/netns/netns_isolation.sh
+++ b/testcases/kernel/containers/netns/netns_isolation.sh
@@ -24,6 +24,7 @@
TCID=netns_isolation
TST_TOTAL=3
. test.sh
+. netns_helper.sh
IP=192.168.0.2
@@ -40,6 +41,7 @@ cleanup()
# SETUP
tst_require_root
tst_check_cmds ip
+tst_check_iproute 111010
TST_CLEANUP=cleanup
--
1.9.3
------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [LTP] [PATCH v3] containers: fix three cases' exit status
2014-12-05 8:26 ` [LTP] [PATCH v3] " Xing Gu
@ 2014-12-17 14:35 ` Cyril Hrubis
0 siblings, 0 replies; 6+ messages in thread
From: Cyril Hrubis @ 2014-12-17 14:35 UTC (permalink / raw)
To: Xing Gu; +Cc: ltp-list
Hi!
Pushed, thanks.
--
Cyril Hrubis
chrubis@suse.cz
------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-12-17 14:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-06 5:31 [LTP] [PATCH] containers: fix three cases' exit status Xing Gu
2014-11-06 8:26 ` Cyril Hrubis
2014-11-11 6:38 ` [LTP] [PATCH v2] " Xing Gu
2014-11-11 13:02 ` Cyril Hrubis
2014-12-05 8:26 ` [LTP] [PATCH v3] " Xing Gu
2014-12-17 14:35 ` Cyril Hrubis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox