aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--param.ccl8
-rw-r--r--schedule.ccl62
2 files changed, 42 insertions, 28 deletions
diff --git a/param.ccl b/param.ccl
index 41636c9..1598231 100644
--- a/param.ccl
+++ b/param.ccl
@@ -21,6 +21,14 @@ INT timeout "Timeout for sending meta information to a server (in seconds)" STEE
+# Parameters for collecting metadata
+
+BOOLEAN collect_metadata "Collect metadata and output it in various ways" STEERABLE=always
+{
+} yes
+
+
+
# Parameters for creating files containing the build and job ids
BOOLEAN create_id_files "Create files from the build and job ids"
diff --git a/schedule.ccl b/schedule.ccl
index ca185e4..a9f84fb 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -11,32 +11,38 @@ if (output_source)
-SCHEDULE Formaline_PrintIDs AT startup
+if (collect_metadata)
{
- LANG: C
- OPTIONS: meta
-} "Print the build and simulation ids"
-
-SCHEDULE Formaline_RegisterWarnings AT wragh
-{
- LANG: C
- OPTIONS: meta
-} "Register to receive warnings and info messages from the flesh"
-
-SCHEDULE Formaline_AnnounceInitial AT wragh
-{
- LANG: C
- OPTIONS: global
-} "Put some meta information about the current run into permanent storage"
-
-SCHEDULE Formaline_AnnounceUpdate AT analysis
-{
- LANG: C
- OPTIONS: global
-} "Put some meta information about the current run into permanent storage"
-
-SCHEDULE Formaline_AnnounceFinal AT terminate
-{
- LANG: C
- OPTIONS: global
-} "Put some meta information about the current run into permanent storage"
+ SCHEDULE Formaline_PrintIDs AT startup
+ {
+ LANG: C
+ OPTIONS: meta
+ } "Print the build and simulation ids"
+
+
+
+ SCHEDULE Formaline_RegisterWarnings AT wragh
+ {
+ LANG: C
+ OPTIONS: meta
+ } "Register to receive warnings and info messages from the flesh"
+
+ SCHEDULE Formaline_AnnounceInitial AT wragh
+ {
+ LANG: C
+ OPTIONS: global
+ } "Put some meta information about the current run into permanent storage"
+
+ SCHEDULE Formaline_AnnounceUpdate AT analysis
+ {
+ LANG: C
+ OPTIONS: global
+ } "Put some meta information about the current run into permanent storage"
+
+ SCHEDULE Formaline_AnnounceFinal AT terminate
+ {
+ LANG: C
+ OPTIONS: global
+ } "Put some meta information about the current run into permanent storage"
+
+}