diff mbox

volatile-test: Fix testfile size

Message ID 1375136322-6160-1-git-send-email-john.stultz@linaro.org
State Accepted
Headers show

Commit Message

John Stultz July 29, 2013, 10:18 p.m. UTC
I misread the code and was generating too large of a testfile.

Just use 1meg test file for now (otherwise, I end up running out of
space on /run).

Signed-off-by: John Stultz <john.stultz@linaro.org>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/Makefile b/Makefile
index e41fea2..e7c1554 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@  testfile = test
 all: ${bins}
 
 testfile:
-	dd if=/dev/zero of=${testfile} bs=1M count=26
+	dd if=/dev/zero of=${testfile} bs=1M count=1
 
 clean:
 	rm -f ${bins} ${testfile}