775965de85
Removed assumptions about umask and locale. Fixed hostname tests to work even when the host has no DNS domain set. Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
12 lines
357 B
Plaintext
12 lines
357 B
Plaintext
# FEATURE: CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
|
|
|
|
mkdir du.testdir
|
|
cd du.testdir
|
|
dd if=/dev/zero of=file1 bs=1k count=64 2>/dev/null
|
|
ln file1 file1.1
|
|
dd if=/dev/zero of=file2 bs=1k count=16 2>/dev/null
|
|
test x"`busybox du -l .`" = x"144 ." \
|
|
-o x"`busybox du -l .`" = x"148 ." \
|
|
-o x"`busybox du -l .`" = x"152 ." \
|
|
-o x"`busybox du -l .`" = x"156 ."
|