change the status for SMB commands to be either of SUCCESS, ERROR or *
[tridge/dbench.git] / loadfiles / smb.txt
index fa5b540eeb9e2c407e067713a0370a5eb18ec336..d3998aab63ce128179eb48a491f28e91eae1e6a4 100644 (file)
@@ -1,14 +1,19 @@
-# example laodfile for SMB
-# We do not distinguish between different status codes here so we basically
-# treat the status code as a binary. It is either NT_STATUS_OK
-# which means we expect the operation to succeed, or it is something
-# else which means we expect it to fail.
+# example loadfile for SMB
+#
+# We do not distinguish between different error types so the last parameter,
+# the status is
+#  SUCCESS that the operation must be successful
+#  ERROR that the operation must fail
+#  * which means don't care
 #
 # Filenames in SMB MUST start with '\' or '/'
 #
 #
 # MKDIR
-Mkdir "\foo" NT_STATUS_OK
+MKDIR "\foo" SUCCESS
 #
 # RMDIR
-Rmdir "\foo" NT_STATUS_OK
+RMDIR "\foo" SUCCESS
+RMDIR "\foo" ERROR
+RMDIR "\foo" *
+