Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-17 Thread Igor Mammedov
On Fri, 17 Jan 2020 14:52:35 +0100 Thomas Huth wrote: > On 17/01/2020 14.33, Igor Mammedov wrote: > > On Fri, 17 Jan 2020 12:14:11 +0100 > > Thomas Huth wrote: > > > >> On 16/01/2020 18.06, Igor Mammedov wrote: > >>> On Thu, 16 Jan 2020 17:35:32 +0100 > >>> Thomas Huth wrote: > >>> >

Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-17 Thread Thomas Huth
On 17/01/2020 14.33, Igor Mammedov wrote: > On Fri, 17 Jan 2020 12:14:11 +0100 > Thomas Huth wrote: > >> On 16/01/2020 18.06, Igor Mammedov wrote: >>> On Thu, 16 Jan 2020 17:35:32 +0100 >>> Thomas Huth wrote: >>> On 15/01/2020 16.07, Igor Mammedov wrote: > Use GString to pass

Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-17 Thread Igor Mammedov
On Fri, 17 Jan 2020 12:14:11 +0100 Thomas Huth wrote: > On 16/01/2020 18.06, Igor Mammedov wrote: > > On Thu, 16 Jan 2020 17:35:32 +0100 > > Thomas Huth wrote: > > > >> On 15/01/2020 16.07, Igor Mammedov wrote: > >>> Use GString to pass argument to make_cli() so that it would be easy > >>>

Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-17 Thread Thomas Huth
On 16/01/2020 18.06, Igor Mammedov wrote: > On Thu, 16 Jan 2020 17:35:32 +0100 > Thomas Huth wrote: > >> On 15/01/2020 16.07, Igor Mammedov wrote: >>> Use GString to pass argument to make_cli() so that it would be easy >>> to dynamically change test case arguments from main(). The follow up >>>

Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-16 Thread Igor Mammedov
On Thu, 16 Jan 2020 17:35:32 +0100 Thomas Huth wrote: > On 15/01/2020 16.07, Igor Mammedov wrote: > > Use GString to pass argument to make_cli() so that it would be easy > > to dynamically change test case arguments from main(). The follow up > > patch will use it to change RAM size options

Re: [PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-16 Thread Thomas Huth
On 15/01/2020 16.07, Igor Mammedov wrote: > Use GString to pass argument to make_cli() so that it would be easy > to dynamically change test case arguments from main(). The follow up > patch will use it to change RAM size options depending on target. > > While at it cleanup 'cli' freeing, using

[PATCH v2 83/86] tests:numa-test: make top level args dynamic and g_autofree(cli) cleanups

2020-01-15 Thread Igor Mammedov
Use GString to pass argument to make_cli() so that it would be easy to dynamically change test case arguments from main(). The follow up patch will use it to change RAM size options depending on target. While at it cleanup 'cli' freeing, using g_autofree annotation. Signed-off-by: Igor Mammedov