Re: [U-Boot] [PATCH 3/3] test/fs: Check writes using "." (same dir) relative path

2016-09-13 Thread Brüns , Stefan
On Dienstag, 13. September 2016 12:36:26 CEST you wrote: > On 09/12/2016 04:04 PM, Stefan Bruens wrote: > > On Montag, 12. September 2016 12:44:08 CEST you wrote: > >> On 09/11/2016 02:46 PM, Stefan Brüns wrote: > >>> / and /./ should reference the same file. > >>> > >>> diff --git

Re: [U-Boot] [PATCH 3/3] test/fs: Check writes using "." (same dir) relative path

2016-09-13 Thread Stephen Warren
On 09/12/2016 04:04 PM, Stefan Bruens wrote: On Montag, 12. September 2016 12:44:08 CEST you wrote: On 09/11/2016 02:46 PM, Stefan Brüns wrote: / and /./ should reference the same file. diff --git a/test/fs/fs-test.sh b/test/fs/fs-test.sh +# Read 1MB from small file +${PREFIX}load

Re: [U-Boot] [PATCH 3/3] test/fs: Check writes using "." (same dir) relative path

2016-09-12 Thread Stefan Bruens
On Montag, 12. September 2016 12:44:08 CEST you wrote: > On 09/11/2016 02:46 PM, Stefan Brüns wrote: > > / and /./ should reference the same file. > > > > diff --git a/test/fs/fs-test.sh b/test/fs/fs-test.sh > > > > +# Read 1MB from small file > > +${PREFIX}load host${SUFFIX} $addr

Re: [U-Boot] [PATCH 3/3] test/fs: Check writes using "." (same dir) relative path

2016-09-12 Thread Stephen Warren
On 09/11/2016 02:46 PM, Stefan Brüns wrote: / and /./ should reference the same file. diff --git a/test/fs/fs-test.sh b/test/fs/fs-test.sh +# Read 1MB from small file +${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL I think the same issue with $FPATH ending/not-ending in / applies

[U-Boot] [PATCH 3/3] test/fs: Check writes using "." (same dir) relative path

2016-09-11 Thread Stefan Brüns
/ and /./ should reference the same file. Signed-off-by: Stefan Brüns --- test/fs/fs-test.sh | 27 +++ 1 file changed, 27 insertions(+) diff --git a/test/fs/fs-test.sh b/test/fs/fs-test.sh index cb2a765..46975ec 100755 ---