summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-10-13 18:08:51 +0200
committerChristian Grothoff <christian@grothoff.org>2018-10-13 18:08:51 +0200
commit85e22419c938d8aaeeba81a7a5a2f2a9ca112397 (patch)
treefe7463951154329a1552b3a220d3c82a88ff74f2 /src/include
parentc09c900922079be0314009719042a9fd08df798e (diff)
downloadexchange-85e22419c938d8aaeeba81a7a5a2f2a9ca112397.tar.gz
exchange-85e22419c938d8aaeeba81a7a5a2f2a9ca112397.tar.bz2
exchange-85e22419c938d8aaeeba81a7a5a2f2a9ca112397.zip
fix issue with 'meta' not being initialized - by getting rid of it
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_testing_lib.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index 97189a55e..9d5b64384 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -314,17 +314,9 @@ struct TALER_TESTING_Command
const char *trait,
unsigned int index);
-
- /**
- * Has GNUNET_YES if the command is a "meta" one. Meta
- * commands are those that takes arrays of commands and
- * execute them. Are used to group testing commands in
- * order to improve readability of test cases.
- */
- unsigned int meta;
-
};
+
/**
* Lookup command by label.
*
@@ -1253,6 +1245,14 @@ TALER_TESTING_cmd_batch (const char *label,
struct TALER_TESTING_Command *batch);
+/**
+ * Test if this command is a batch command.
+ *
+ * @return false if not, true if it is a batch command
+ */
+int
+TALER_TESTING_cmd_is_batch (const struct TALER_TESTING_Command *cmd);
+
/* *** Generic trait logic for implementing traits ********* */