Re: [PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-27 Thread David Miller
From: Lucas Bates Date: Mon, 26 Mar 2018 10:46:14 -0400 > If tdc is executing test cases inside a namespace, only the > first command in a compound statement will be executed inside > the namespace by tdc. As a result, the subsequent commands > are not executed inside the

[PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-26 Thread Lucas Bates
If tdc is executing test cases inside a namespace, only the first command in a compound statement will be executed inside the namespace by tdc. As a result, the subsequent commands are not executed inside the namespace and the test will fail. Example: for i in {x..y}; do args="foo"; done && tc

Re: [PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-25 Thread David Miller
From: Lucas Bates Date: Thu, 22 Mar 2018 15:14:58 -0400 > On Thu, Mar 22, 2018 at 2:48 PM, David Miller wrote: >> From: Lucas Bates >> Date: Wed, 21 Mar 2018 11:49:40 -0400 >> >>> } >>> -] >>> \ No newline at end of file >>>

Re: [PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-22 Thread Lucas Bates
On Thu, Mar 22, 2018 at 2:48 PM, David Miller wrote: > From: Lucas Bates > Date: Wed, 21 Mar 2018 11:49:40 -0400 > >> } >> -] >> \ No newline at end of file >> +] >> -- >> 2.7.4 > > Please fix this. This patch fixes the gact.json file that had no

Re: [PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-22 Thread David Miller
From: Lucas Bates Date: Wed, 21 Mar 2018 11:49:40 -0400 > } > -] > \ No newline at end of file > +] > -- > 2.7.4 Please fix this.

[PATCH net-next 1/1] tc-testing: Correct compound statements for namespace execution

2018-03-21 Thread Lucas Bates
If tdc is executing test cases inside a namespace, only the first command in a compound statement will be executed inside the namespace by tdc. As a result, the subsequent commands are not executed inside the namespace and the test will fail. Example: for i in {x..y}; do args="foo"; done && tc