File: t56postfix.t

package info (click to toggle)
libimager-perl 0.50-1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,120 kB
  • ctags: 2,907
  • sloc: ansic: 21,092; perl: 15,461; makefile: 56
file content (32 lines) | stat: -rw-r--r-- 855 bytes parent folder | download | duplicates (3)
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
BEGIN { $| = 1; print "1..6\n"; }
END {print "not ok 1\n" unless $loaded;}
use Imager::Expr;

$loaded = 1;
print "ok 1\n";

#$Imager::DEBUG=1;

my $expr = Imager::Expr->new({rpnexpr=><<EXPR, variables=>[ qw(x y) ], constants=>{one=>1, two=>2}});
x two * # see if comments work
y one + 
getp1
EXPR
if ($expr) {
  print "ok 2\n";

  # perform some basic validation on the code
  my $code = $expr->dumpcode();
  my @code = split /\n/, $code;
  print $code[-1] =~ /:\s+ret/ ? "ok 3\n" : "not ok 3\n";
  print grep(/:\s+mult.*x/, @code) ? "ok 4\n" : "not ok 4\n";
  print grep(/:\s+add.*y/, @code) ? "ok 5\n" : "not ok 5\n";
  print grep(/:\s+getp1/, @code) ? "ok 6\n" : "not ok 6\n";
}
else {
  print "not ok 2 ",Imager::Expr::error(),"\n";
  print "not ok 3 # skip\n";
  print "not ok 4 # skip\n";
  print "not ok 5 # skip\n";
  print "not ok 6 # skip\n";
}