From 92b0e8e8e4af38284ad57a4e90ce439674e928e2 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 23 Jun 2011 18:06:01 -0700 Subject: [PATCH] qa: initial commit of file_layout.sh This tests the file layout functionality. Right now you need to check the comparisons yourself. Expect that to change shortly. Signed-off-by: Greg Farnum --- qa/mds/file_layout.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 qa/mds/file_layout.sh diff --git a/qa/mds/file_layout.sh b/qa/mds/file_layout.sh new file mode 100644 index 0000000000000..63808f405a27e --- /dev/null +++ b/qa/mds/file_layout.sh @@ -0,0 +1,16 @@ +#!/bin/sh -ex + +MB=1048576 +twoMB=$((2*MB)) + +mkdir layout_test +./cephfs layout_test show_layout +./cephfs layout_test set_layout -u $MB -c 1 -s $MB +touch layout_test/file1 +./cephfs layout_test/file1 show_layout +`echo "hello, I'm a file" > layout_test/file1` +./cephfs layout_test/file1 show_layout +touch layout_test/file2 +./cephfs layout_test/file2 show_layout +./cephfs layout_test/file2 set_layout -u $MB -c 2 -s $twoMB +./cephfs layout_test/file2 show_layout \ No newline at end of file -- 2.39.5