File: README.org

package info (click to toggle)
cfengine3 3.24.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,552 kB
  • sloc: ansic: 163,161; sh: 10,296; python: 2,950; makefile: 1,744; lex: 784; yacc: 633; perl: 211; pascal: 157; xml: 21; sed: 13
file content (483 lines) | stat: -rw-r--r-- 100,131 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
#+Title: Testing Examples

This is the place to have examples in =core/examples= tested.

* Outputs
Before running a test the optional commands found between =#+begin_src prep= and
=#+end_src= are run to prepare the environment for the test. This is commonly
used to prepare files for the example to operate on.

The =outputs= test checks to see that the output generated by the test is
correct as compared with the content between the =#+begin_src example_output=
and =#+end_src= tags.

*NOTE:* Agent output should be *identical* between a normal execution and a dry
run. This means that some examples are poor candidates for automatic testing.

=prep= sections can not handle /heredoc/, so don't try to use them to setup an
environment, instead, use echo to build up a file.

#+CAPTION: Example error showing issue with usage of heredoc in prep
#+begin_example
Q: "...r/bin/perl /hom": processing /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/execresult.cf: Running prep 'EOF'Can't exec "EOF": No such file or directory at /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl line 227.
#+end_example

So, don't do this:

#+CAPTION: BAD: example using heredoc inside prep section
#+begin_example
  ,#+begin_src prep
  #@ ```
  #@ rm -rf /tmp/testhere
  #@ mkdir -p /tmp/testhere
  #@ touch /tmp/testhere/a
  #@ touch /tmp/testhere/b
  #@ touch /tmp/testhere/c
  #@ touch /tmp/testhere/d
  #@ touch /tmp/testhere/e
  #@ cat << EOF >/tmp/testhere/echo-stdout-and-stderr
  #@ #!/usr/bin/env sh
  #@ echo stderr >&2
  #@ echo stdout
  #@ EOF
  #@ chmod +x /tmp/testhere/echo-stdout-and-stderr
  #@ ```
  ,#+end_src
#+end_example 

Instead, do this:

#+CAPTION: GOOD example using echo instead of heredoc during setup
#+begin_example
  ,#+begin_src prep
  #@ ```
  #@ rm -rf /tmp/testhere
  #@ mkdir -p /tmp/testhere
  #@ touch /tmp/testhere/a
  #@ touch /tmp/testhere/b
  #@ touch /tmp/testhere/c
  #@ touch /tmp/testhere/d
  #@ touch /tmp/testhere/e
  #@ echo "#!/usr/bin/env sh" >/tmp/testhere/echo-stdout-and-stderr
  #@ echo "echo stderr >&2" >>/tmp/testhere/echo-stdout-and-stderr
  #@ echo "echo stdout" >>/tmp/testhere/echo-stdout-and-stderr
  #@ chmod +x /tmp/testhere/echo-stdout-and-stderr
  #@ ```
  ,#+end_src
#+end_example

** Troubleshooting Outputs Test Failures
This section is primarily intended for CFEngine Staff as not all build output is
publicly available.

It is *very* important for the examples output to be consistent or it will
result in a failed test. Example test failures are somewhat opaque and can be
difficult to troubleshoot.

A failure will look like this in the build system:

#+BEGIN_EXAMPLE
00:13:23.974 ./04_examples/outputs/check_outputs.cf FAIL (UNEXPECTED FAILURE)
#+END_EXAMPLE

*Note:* The specific example that failed is not immediately apparent. You must
wait for the job to finish and then drill into the test results.

Where you might be looking for something like this:

#+BEGIN_EXAMPLE
   error: Finished command related to promiser "/usr/bin/perl /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c -v /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/multiple_outcomes.cf" -- an error occurred, returned 1
  notice: Q: "...r/bin/perl /hom": Test file: /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/multiple_outcomes.cf
Q: "...r/bin/perl /hom": Command: "/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" -D_cfe_output_testing -nKf /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine/multiple_outcomes.cf 2>&1
Q: "...r/bin/perl /hom": NEW OUTPUT: [[[ warning: Warning promised, need to create file "/tmp/repaired_and_not_kept.txt"
Q: "...r/bin/perl /hom": R: My promise was not kept because the template failed to render.
Q: "...r/bin/perl /hom": R: Found class: "outcome_failed"
Q: "...r/bin/perl /hom": R: Found class: "outcome_not_kept"
Q: "...r/bin/perl /hom": R: Found class: "outcome_error"
Q: "...r/bin/perl /hom": R: Found class: "outcome_reached"
Q: "...r/bin/perl /hom": ]]]
Q: "...r/bin/perl /hom": --- /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine/multiple_outcomes.cf.a	2016-04-12 16:16:28.247136634 +0200
Q: "...r/bin/perl /hom": +++ /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine/multiple_outcomes.cf.b	2016-04-12 16:16:28.247136634 +0200
Q: "...r/bin/perl /hom": @@ -1,10 +1,6 @@
Q: "...r/bin/perl /hom": -error: Template file "$(this.promsie_filename).broken_mustache" could not be opened for reading
Q: "...r/bin/perl /hom": -R: My promise was repaired because the file was created.
Q: "...r/bin/perl /hom": +warning: Warning promised, need to create file "/tmp/repaired_and_not_kept.txt"
Q: "...r/bin/perl /hom":  R: My promise was not kept because the template failed to render.
Q: "...r/bin/perl /hom": -R: My promise was kept because the permissions were as desired.
Q: "...r/bin/perl /hom":  R: Found class: "outcome_failed"
Q: "...r/bin/perl /hom": -R: Found class: "outcome_repaired"
Q: "...r/bin/perl /hom": -R: Found class: "outcome_error"
Q: "...r/bin/perl /hom":  R: Found class: "outcome_not_kept"
Q: "...r/bin/perl /hom": +R: Found class: "outcome_error"
Q: "...r/bin/perl /hom":  R: Found class: "outcome_reached"
Q: "...r/bin/perl /hom": -R: Found class: "outcome_kept"
Q: "...r/bin/perl /hom": /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/multiple_outcomes.cf: output differs from original...
   error: Method "verbose_output" failed in some repairs
R: test_example: checker "/usr/bin/perl /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/multiple_outcomes.cf" returned error
R: test_example: ran checker "/usr/bin/perl /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/jenkins/workspace/testing-enterprise-pr_core/label/PACKAGES_x86_64_linux_redhat_6/core/tests/acceptance/../../examples/multiple_outcomes.cf"
   error: Method "test_example" failed in some repairs
#+END_EXAMPLE

Note how in the above the test failed because of differing output. In this
specific case, the differences are due to some difference in output between a
normal run and a dry-run where warnings are promised.

#+Caption: Execute the example outputs tests with the system installed cfengine
#+NAME: test_check_outputs
#+BEGIN_SRC sh :dir ../ :results output :exports both
  ./testall --jobs=4 \
            --printlog \
            --bindir=/var/cfengine/bin/ \
            ./04_examples/outputs/check_outputs.cf 2>&1
#+END_SRC


#+NAME: Testing classfiltercsv()
#+CALL: test_check_outputs()


:DRAWER:
#+RESULTS: Example Testing classfiltercsv()
#+begin_example
======================================================================
Testsuite started at 2019-04-13 18:40:54
----------------------------------------------------------------------
Total tests: 1

        COMMON_TESTS: enabled
         TIMED_TESTS: enabled
          SLOW_TESTS: enabled
     ERROREXIT_TESTS: enabled
        SERIAL_TESTS: enabled
       NETWORK_TESTS: enabled
       LIBXML2_TESTS: enabled
       LIBCURL_TESTS: enabled
        UNSAFE_TESTS: disabled
       STAGING_TESTS: disabled

Test run is PARALLEL with MAKEFLAGS= --jobs=4

./04_examples/outputs/check_outputs.cf Pass

======================================================================
Testsuite finished at 2019-04-13 18:41:03 (9 seconds)

Passed tests:  1
Failed tests:  0
Skipped tests: 0
Soft failures: 0
Total tests:   1
======================================================================
Testsuite started at 2019-04-13 18:40:54
----------------------------------------------------------------------
Total tests: 1

        COMMON_TESTS: enabled
         TIMED_TESTS: enabled
          SLOW_TESTS: enabled
     ERROREXIT_TESTS: enabled
        SERIAL_TESTS: enabled
       NETWORK_TESTS: enabled
       LIBXML2_TESTS: enabled
       LIBCURL_TESTS: enabled
        UNSAFE_TESTS: disabled
       STAGING_TESTS: disabled

Test run is PARALLEL with MAKEFLAGS= --jobs=4

----------------------------------------------------------------------
./04_examples/outputs/check_outputs.cf 
----------------------------------------------------------------------
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/file_hash.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filesize.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/lsdir.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_replace.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readrealarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_upcase.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_tail.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getvariablemetatags.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classfiltercsv.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/with.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/parseintrealstringarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_multiline_json.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/ago.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peers.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filter.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_reverse.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/kill_process_running_wrong_user.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getvalues.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlesequence.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classmatch.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/islessthan.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_regextract.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/maplist.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlesmatching.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/appgroups.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readfile.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_classes.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_non_empty_list.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/diskfree.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_readstringarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getindices.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/returnszero.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/container_key_iteration.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/lastnode.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/hash.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_downcase.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filestat.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main_library.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_top.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/datastate.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getfields.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mergedata.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regline.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isnewerthan.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/augment.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readintarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/format.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getgid.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/strftime.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_split.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_expand_key.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/sublist.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/compare.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/variablesmatching_as_data.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/reverse.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readdata.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/intersection.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regex_replace.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/quoting.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/max-min-mean-variance.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/randomint.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/islink.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/ip2host.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/execresult.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/class-automatic-canonificiation.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readstringarray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/canonify.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/join.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/every.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/escape.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/container_iteration.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getenv.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getusers.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/maparray.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/difference.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classesmatching.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readenvfile.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regextract.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/dirname.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_expand.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/userexists.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_set_delimiters.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/splitstring.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/missing_ok.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/groupexists.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getclassmetatags.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_mustache.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_empty_list.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peerleaders.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peerleader.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_compact_json.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/none.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlestate.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/length.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/countlinesmatching.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/multiple_outcomes.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/nth.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/product.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isplain.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/some.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/accessedbefore.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/select_region.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filesexist.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_inverted.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/variablesmatching.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mapdata.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/grep.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isdir.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/unique.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/parsestringarrayidx.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isgreaterthan.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main_entry_point.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readcsv.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readintrealstringlist.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/hash_to_int.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/defaults.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getuid.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isvariable.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/countclassesmatching.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_head.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/fileexists.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/registryvalue.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/findfiles.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_non_false_value.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isipinsubnet.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_length.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_comments.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/translatepath.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/strcmp.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isexecutable.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/shuffle.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/sum.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/reglist.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_variables.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regcmp.cf'
R: test_example: ran checker '/usr/bin/perl /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/remake_outputs.pl --cfagent="/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/bin/cf-agent" --workdir=/home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/workdir/__04_examples_outputs_check_outputs_cf/tmp/TESTDIR.cfengine -c /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/services_default_service_bundle.cf'
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/file_hash.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filesize.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/lsdir.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_replace.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readrealarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_upcase.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_tail.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getvariablemetatags.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classfiltercsv.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/with.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/parseintrealstringarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_multiline_json.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/ago.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peers.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filter.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_reverse.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/kill_process_running_wrong_user.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getvalues.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlesequence.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classmatch.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/islessthan.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_regextract.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/maplist.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlesmatching.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/appgroups.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readfile.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_classes.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_non_empty_list.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/diskfree.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_readstringarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getindices.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/returnszero.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/container_key_iteration.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/lastnode.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/hash.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_downcase.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filestat.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main_library.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_top.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/datastate.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getfields.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mergedata.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regline.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isnewerthan.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/augment.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readintarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/format.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getgid.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/strftime.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_split.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_expand_key.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/sublist.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/compare.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/variablesmatching_as_data.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/reverse.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readdata.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/intersection.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regex_replace.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/quoting.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/max-min-mean-variance.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/randomint.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/islink.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/ip2host.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/execresult.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/class-automatic-canonificiation.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readstringarray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/canonify.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/join.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/every.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/escape.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/container_iteration.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getenv.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getusers.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/maparray.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/difference.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/classesmatching.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readenvfile.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regextract.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/dirname.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/data_expand.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/userexists.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_set_delimiters.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/splitstring.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/missing_ok.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/groupexists.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getclassmetatags.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_mustache.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_empty_list.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peerleaders.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/peerleader.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_extension_compact_json.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/none.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/bundlestate.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/length.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/countlinesmatching.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/multiple_outcomes.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/nth.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/product.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isplain.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/some.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/accessedbefore.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/select_region.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/filesexist.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_inverted.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/variablesmatching.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mapdata.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/grep.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isdir.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/unique.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/parsestringarrayidx.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isgreaterthan.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/main_entry_point.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readcsv.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/readintrealstringlist.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/hash_to_int.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/defaults.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/getuid.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isvariable.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/countclassesmatching.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_head.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/fileexists.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/registryvalue.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/findfiles.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_sections_non_false_value.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isipinsubnet.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/string_length.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_comments.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/translatepath.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/strcmp.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/isexecutable.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/shuffle.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/sum.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/reglist.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/mustache_variables.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/regcmp.cf
R: test: found example with output /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/../../examples/services_default_service_bundle.cf
R: /home/nickanderson/Northern.Tech/CFEngine/core/tests/acceptance/./04_examples/outputs/check_outputs.cf Pass

Return code is 0.

  ==> Pass


======================================================================
Testsuite finished at 2019-04-13 18:41:03 (9 seconds)

Passed tests:  1
Failed tests:  0
Skipped tests: 0
Soft failures: 0
Total tests:   1
#+end_example
:END: