From: Josh Durgin Date: Mon, 20 May 2013 18:44:00 +0000 (-0700) Subject: rbd: add read flags test with each cache mode X-Git-Tag: v0.94.10~27^2^2~714 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=29521f96245ee5eaed1c8a88c6622bef7670519c;p=ceph.git rbd: add read flags test with each cache mode Signed-off-by: Josh Durgin --- diff --git a/suites/rbd/singleton/all/read-flags-no-cache.yaml b/suites/rbd/singleton/all/read-flags-no-cache.yaml new file mode 100644 index 000000000000..f7d44456d3be --- /dev/null +++ b/suites/rbd/singleton/all/read-flags-no-cache.yaml @@ -0,0 +1,11 @@ +roles: +- [mon.a, osd.0, osd.1, client.0] +tasks: +- install: +- ceph: + conf: + client: + rbd cache: false +- workunit: + clients: + all: [rbd/read-flags.sh] diff --git a/suites/rbd/singleton/all/read-flags-writeback.yaml b/suites/rbd/singleton/all/read-flags-writeback.yaml new file mode 100644 index 000000000000..f25be79e0b67 --- /dev/null +++ b/suites/rbd/singleton/all/read-flags-writeback.yaml @@ -0,0 +1,11 @@ +roles: +- [mon.a, osd.0, osd.1, client.0] +tasks: +- install: +- ceph: + conf: + client: + rbd cache: true +- workunit: + clients: + all: [rbd/read-flags.sh] diff --git a/suites/rbd/singleton/all/read-flags-writethrough.yaml b/suites/rbd/singleton/all/read-flags-writethrough.yaml new file mode 100644 index 000000000000..80d7b4254b6f --- /dev/null +++ b/suites/rbd/singleton/all/read-flags-writethrough.yaml @@ -0,0 +1,12 @@ +roles: +- [mon.a, osd.0, osd.1, client.0] +tasks: +- install: +- ceph: + conf: + client: + rbd cache: true + rbd cache max dirty: 0 +- workunit: + clients: + all: [rbd/read-flags.sh]