* [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now
@ 2015-03-05 5:01 Li Wang
2015-03-05 5:58 ` Zeng Linggang
0 siblings, 1 reply; 5+ messages in thread
From: Li Wang @ 2015-03-05 5:01 UTC (permalink / raw)
To: ltp-list
Since the timestatp is older than now it cause this testcase
failed like this:
+ touch -c -t 201503030303.55 file0.in
+ ar -ru /tmp/ar01-28953/lib.a file0.in file2.in
...
FAIL - ar with -u flag failed
From the AR(1) Manual pager, ar -u:
If you would like to insert only those of the files you list
that are newer than existing members of the same names, use
this modifier.
Signed-off-by: Li Wang <liwang@redhat.com>
---
testcases/commands/ade/ar/ar01 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testcases/commands/ade/ar/ar01 b/testcases/commands/ade/ar/ar01
index 32fef11..c5181a3 100755
--- a/testcases/commands/ade/ar/ar01
+++ b/testcases/commands/ade/ar/ar01
@@ -483,7 +483,7 @@ do
File2time=`ar -tv $TCtmp/lib.a | grep file2.in`
#sleep 5
- touch -c -t 201503030303.55 file0.in
+ touch -c -t 208503030303.55 file0.in
ar -ru $TCtmp/lib.a file0.in file2.in 2>&1 1>/dev/null
File1time1=`ar -tv $TCtmp/lib.a | grep file0.in`
--
1.8.3.1
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now
2015-03-05 5:01 [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now Li Wang
@ 2015-03-05 5:58 ` Zeng Linggang
2015-03-05 6:26 ` Li Wang
0 siblings, 1 reply; 5+ messages in thread
From: Zeng Linggang @ 2015-03-05 5:58 UTC (permalink / raw)
To: Li Wang; +Cc: ltp-list
Hi,
On Thu, 2015-03-05 at 13:01 +0800, Li Wang wrote:
> Since the timestatp is older than now it cause this testcase
> failed like this:
> + touch -c -t 201503030303.55 file0.in
> + ar -ru /tmp/ar01-28953/lib.a file0.in file2.in
> ...
> FAIL - ar with -u flag failed
>
> >From the AR(1) Manual pager, ar -u:
> If you would like to insert only those of the files you list
> that are newer than existing members of the same names, use
> this modifier.
>
> Signed-off-by: Li Wang <liwang@redhat.com>
> ---
> testcases/commands/ade/ar/ar01 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/testcases/commands/ade/ar/ar01 b/testcases/commands/ade/ar/ar01
> index 32fef11..c5181a3 100755
> --- a/testcases/commands/ade/ar/ar01
> +++ b/testcases/commands/ade/ar/ar01
> @@ -483,7 +483,7 @@ do
> File2time=`ar -tv $TCtmp/lib.a | grep file2.in`
>
> #sleep 5
> - touch -c -t 201503030303.55 file0.in
> + touch -c -t 208503030303.55 file0.in
How about
touch -c -t $(date --date='next day' +"%Y%m%d%H%M") file0.in
Thanks,
Zeng
>
> ar -ru $TCtmp/lib.a file0.in file2.in 2>&1 1>/dev/null
> File1time1=`ar -tv $TCtmp/lib.a | grep file0.in`
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now
2015-03-05 5:58 ` Zeng Linggang
@ 2015-03-05 6:26 ` Li Wang
2015-03-05 7:23 ` Wanlong Gao
0 siblings, 1 reply; 5+ messages in thread
From: Li Wang @ 2015-03-05 6:26 UTC (permalink / raw)
To: Zeng Linggang; +Cc: ltp-list
Hi,
----- Original Message -----
> Hi,
>
> On Thu, 2015-03-05 at 13:01 +0800, Li Wang wrote:
> > Since the timestatp is older than now it cause this testcase
> > failed like this:
> > + touch -c -t 201503030303.55 file0.in
> > + ar -ru /tmp/ar01-28953/lib.a file0.in file2.in
> > ...
> > FAIL - ar with -u flag failed
> >
> > >From the AR(1) Manual pager, ar -u:
> > If you would like to insert only those of the files you list
> > that are newer than existing members of the same names, use
> > this modifier.
> >
> > Signed-off-by: Li Wang <liwang@redhat.com>
> > ---
> > testcases/commands/ade/ar/ar01 | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/testcases/commands/ade/ar/ar01
> > b/testcases/commands/ade/ar/ar01
> > index 32fef11..c5181a3 100755
> > --- a/testcases/commands/ade/ar/ar01
> > +++ b/testcases/commands/ade/ar/ar01
> > @@ -483,7 +483,7 @@ do
> > File2time=`ar -tv $TCtmp/lib.a | grep file2.in`
> >
> > #sleep 5
> > - touch -c -t 201503030303.55 file0.in
> > + touch -c -t 208503030303.55 file0.in
>
> How about
> touch -c -t $(date --date='next day' +"%Y%m%d%H%M") file0.in
Agree!
Absolutely it's better than the stable timestatp.
Li Wang
>
> Thanks,
> Zeng
>
> >
> > ar -ru $TCtmp/lib.a file0.in file2.in 2>&1 1>/dev/null
> > File1time1=`ar -tv $TCtmp/lib.a | grep file0.in`
>
>
>
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now
2015-03-05 6:26 ` Li Wang
@ 2015-03-05 7:23 ` Wanlong Gao
2015-03-05 7:35 ` Li Wang
0 siblings, 1 reply; 5+ messages in thread
From: Wanlong Gao @ 2015-03-05 7:23 UTC (permalink / raw)
To: Li Wang; +Cc: ltp-list
On 03/05/2015 02:26 PM, Li Wang wrote:
> Hi,
> ----- Original Message -----
>> Hi,
>>
>> On Thu, 2015-03-05 at 13:01 +0800, Li Wang wrote:
>>> Since the timestatp is older than now it cause this testcase
>>> failed like this:
>>> + touch -c -t 201503030303.55 file0.in
>>> + ar -ru /tmp/ar01-28953/lib.a file0.in file2.in
>>> ...
>>> FAIL - ar with -u flag failed
>>>
>>> >From the AR(1) Manual pager, ar -u:
>>> If you would like to insert only those of the files you list
>>> that are newer than existing members of the same names, use
>>> this modifier.
>>>
>>> Signed-off-by: Li Wang <liwang@redhat.com>
>>> ---
>>> testcases/commands/ade/ar/ar01 | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/testcases/commands/ade/ar/ar01
>>> b/testcases/commands/ade/ar/ar01
>>> index 32fef11..c5181a3 100755
>>> --- a/testcases/commands/ade/ar/ar01
>>> +++ b/testcases/commands/ade/ar/ar01
>>> @@ -483,7 +483,7 @@ do
>>> File2time=`ar -tv $TCtmp/lib.a | grep file2.in`
>>>
>>> #sleep 5
>>> - touch -c -t 201503030303.55 file0.in
>>> + touch -c -t 208503030303.55 file0.in
>>
>> How about
>> touch -c -t $(date --date='next day' +"%Y%m%d%H%M") file0.in
> Agree!
> Absolutely it's better than the stable timestatp.
s/timestatp/timestamp/ in comment ?
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now
2015-03-05 7:23 ` Wanlong Gao
@ 2015-03-05 7:35 ` Li Wang
0 siblings, 0 replies; 5+ messages in thread
From: Li Wang @ 2015-03-05 7:35 UTC (permalink / raw)
To: gaowanlong; +Cc: ltp-list
Hi,
On Thu, 2015-03-05 at 15:23 +0800, Wanlong Gao wrote:
> On 03/05/2015 02:26 PM, Li Wang wrote:
> > Hi,
> > ----- Original Message -----
> >> Hi,
> >>
> >> On Thu, 2015-03-05 at 13:01 +0800, Li Wang wrote:
> >>> Since the timestatp is older than now it cause this testcase
> >>> failed like this:
> >>> + touch -c -t 201503030303.55 file0.in
> >>> + ar -ru /tmp/ar01-28953/lib.a file0.in file2.in
> >>> ...
> >>> FAIL - ar with -u flag failed
> >>>
> >>> >From the AR(1) Manual pager, ar -u:
> >>> If you would like to insert only those of the files you list
> >>> that are newer than existing members of the same names, use
> >>> this modifier.
> >>>
> >>> Signed-off-by: Li Wang <liwang@redhat.com>
> >>> ---
> >>> testcases/commands/ade/ar/ar01 | 2 +-
> >>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/testcases/commands/ade/ar/ar01
> >>> b/testcases/commands/ade/ar/ar01
> >>> index 32fef11..c5181a3 100755
> >>> --- a/testcases/commands/ade/ar/ar01
> >>> +++ b/testcases/commands/ade/ar/ar01
> >>> @@ -483,7 +483,7 @@ do
> >>> File2time=`ar -tv $TCtmp/lib.a | grep file2.in`
> >>>
> >>> #sleep 5
> >>> - touch -c -t 201503030303.55 file0.in
> >>> + touch -c -t 208503030303.55 file0.in
> >>
> >> How about
> >> touch -c -t $(date --date='next day' +"%Y%m%d%H%M") file0.in
> > Agree!
> > Absolutely it's better than the stable timestatp.
>
> s/timestatp/timestamp/ in comment ?
Yeah, timestamp! sorry for the typo.
Li Wang.
>
>
>
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-03-05 7:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-05 5:01 [LTP] [PATCH] commands/ade/ar01: the touched timestatp of file01.in should be newer than now Li Wang
2015-03-05 5:58 ` Zeng Linggang
2015-03-05 6:26 ` Li Wang
2015-03-05 7:23 ` Wanlong Gao
2015-03-05 7:35 ` Li Wang
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.