diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-06-20 11:08:56 +0200 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-06-20 11:08:56 +0200 |
commit | 61fecfcd6f3e2e66e136c22195c38c99be8baa31 (patch) | |
tree | 04af3ab71f8e3b31eb0412831b93e4d118a5c10f /src/include/taler_testing_lib.h | |
parent | 6a8c5209c35470ac90b1f4d79d05e28bfa42c8ef (diff) |
Put lookup logic for meta-commands.
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r-- | src/include/taler_testing_lib.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index 428bcb78a..57e2f0df9 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -300,6 +300,15 @@ 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; + }; /** |