Whamcloud - gitweb
LU-9780 tests: Testing Round-Robin allocation
[fs/lustre-release.git] / lustre / tests / parallel-scale.sh
index e87e9a7..840a8b8 100644 (file)
@@ -62,6 +62,9 @@ if [ "$SLOW" = "no" ]; then
        fs_test_nobj=${fs_test_nobj:-2}
 fi
 
+# xdd
+[ "$SLOW" = "no" ] && xdd_passes=${xdd_passes:-15}
+
 . $LUSTRE/tests/functions.sh
 
 build_test_filter
@@ -136,11 +139,18 @@ test_write_append_truncate() {
 }
 run_test write_append_truncate "write_append_truncate"
 
+# Argument is chunk size limit, the upper bound on write size
 test_write_disjoint() {
-    run_write_disjoint
+    run_write_disjoint 123456
 }
 run_test write_disjoint "write_disjoint"
 
+# Make sure to exercise the tiny write code
+test_write_disjoint() {
+    run_write_disjoint 16384
+}
+run_test write_disjoint "write_disjoint_tiny"
+
 test_parallel_grouplock() {
     run_parallel_grouplock
 }
@@ -151,11 +161,26 @@ test_statahead () {
 }
 run_test statahead "statahead test, multiple clients"
 
+test_rr_alloc () {
+       run_rr_alloc
+}
+run_test rr_alloc "Checking even file distribution over OSTs in RR policy"
+
 test_fs_test () {
        run_fs_test
 }
 run_test fs_test "fs_test"
 
+test_fio () {
+       run_fio
+}
+run_test fio "fio"
+
+test_xdd () {
+       run_xdd
+}
+run_test xdd "xdd"
+
 [ $(facet_fstype $SINGLEMDS) = zfs -o $(facet_fstype "ost1") = zfs ] &&
        SLOW=$ZFSSLOW