1#######################################################
2#
3# Test on(), especially integer out of bounds on some Unices
4#
5#######################################################
6
7body common control
8{
9      inputs => { "../../default.cf.sub" };
10      bundlesequence  => { default("$(this.promise_filename)") };
11      version => "1.0";
12}
13
14#######################################################
15
16bundle agent test
17{
18  vars:
19     "unix_timestamp"   int => on(2014, 7 , 21 , 23 , 13 ,0);
20
21}
22
23#######################################################
24
25bundle agent check
26{
27  classes:
28
29      "ok" expression => isvariable("test.unix_timestamp");
30
31  reports:
32    ok::
33      "$(this.promise_filename) Pass";
34    !ok::
35      "$(this.promise_filename) FAIL";
36}
37
38