Some more tests (minor)
[gnash.git] / testsuite / misc-swfc.all / hello.sc
blobd9f78726e32e2ad68bcc9ebeedab5b4fdd855187
1 .flash bbox=200x200 filename="hello.swf" version=6 fps=30
3 //load dejagnu library. This must go after the .flash tag
5 .frame 1
6   .action:
7     #include "Dejagnu.sc"
9     trace("Hello World!");
10     var abc = 123;
11     check_equals(abc, 123);  // check something is equal
12     //xcheck_equals(abc, 456); // check something is equal, but expect gnash it to fail
13     var qux = true;
14     check(qux); // check a boolean is true
15     Dejagnu.done(); // don't forget to call this, or the test will not complete
16                     // Note that done() automatically calls stop();
17   .end
18 .end