summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/busybox
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2018-11-23 10:16:29 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-23 23:35:19 +0000
commit4d7f14780f8371d082b7d788ee6cfb71aae5eca1 (patch)
tree0288ac2d41e7d807ad2ca40e88a66e6a105afbe4 /meta/recipes-core/busybox/busybox
parent34ea70924f6a99286bd99d8bca1700ba7fc555cd (diff)
downloadpoky-4d7f14780f8371d082b7d788ee6cfb71aae5eca1.tar.gz
busybox: fix du-l-works test case
64 + 64 + 16 = 144K 144 + sizeof_a_directory >= 145 So fix to use 145 instead of 144. (From OE-Core rev: 4818223ca4d64ee9501250cb866c23630eafa2fa) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/busybox/busybox')
-rw-r--r--meta/recipes-core/busybox/busybox/0001-du-l-works-fix-to-use-145-instead-of-144.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/busybox/0001-du-l-works-fix-to-use-145-instead-of-144.patch b/meta/recipes-core/busybox/busybox/0001-du-l-works-fix-to-use-145-instead-of-144.patch
new file mode 100644
index 0000000000..bb5f7533ec
--- /dev/null
+++ b/meta/recipes-core/busybox/busybox/0001-du-l-works-fix-to-use-145-instead-of-144.patch
@@ -0,0 +1,32 @@
1From c69feb2fdb755d6db34d0eb0a9e9994386c15e3a Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 14 Nov 2018 15:19:57 +0800
4Subject: [PATCH] du-l-works: fix to use 145 instead of 144
5
664 + 64 + 16 = 144
7144 + size_of_directory >= 145
8So fix to use 145 instead of 144.
9
10Upstream-Status: Submitted [http://lists.busybox.net/pipermail/busybox/2018-November/086836.html]
11
12Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
13---
14 testsuite/du/du-l-works | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/testsuite/du/du-l-works b/testsuite/du/du-l-works
18index af87345..575064a 100644
19--- a/testsuite/du/du-l-works
20+++ b/testsuite/du/du-l-works
21@@ -5,7 +5,7 @@ cd du.testdir
22 dd if=/dev/zero of=file1 bs=1k count=64 2>/dev/null
23 ln file1 file1.1
24 dd if=/dev/zero of=file2 bs=1k count=16 2>/dev/null
25-test x"`busybox du -l .`" = x"144 ." \
26+test x"`busybox du -l .`" = x"145 ." \
27 -o x"`busybox du -l .`" = x"146 ." \
28 -o x"`busybox du -l .`" = x"148 ." \
29 -o x"`busybox du -l .`" = x"152 ." \
30--
312.7.4
32