summaryrefslogtreecommitdiff
path: root/source4/torture/torture.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/torture/torture.h')
-rw-r--r--source4/torture/torture.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/torture/torture.h b/source4/torture/torture.h
index ce55ac037d..1a1cd7aba9 100644
--- a/source4/torture/torture.h
+++ b/source4/torture/torture.h
@@ -22,16 +22,16 @@
#ifndef __TORTURE_H__
#define __TORTURE_H__
+#include "torture/ui.h"
+
struct smbcli_state;
-struct torture_context;
-struct torture_op {
- const char *name;
- BOOL (*fn)(struct torture_context *);
- BOOL (*multi_fn)(struct smbcli_state *, int );
- struct torture_op *prev, *next;
+
+struct torture_suite_list {
+ struct torture_suite *suite;
+ struct torture_suite_list *prev, *next;
};
-extern struct torture_op * torture_ops;
+extern struct torture_suite_list * torture_suites;
extern BOOL use_oplocks;
extern BOOL torture_showall;