A new test for surface leaks. I made is as simple as possible but it does get worse...
[sdlgit/SDL_perl.git] / t / surfaceML.t
1 #!/usr/bin/perl -w
2 #
3 # Copyright (C) 2009 Kartik Thakore
4 #
5 # ------------------------------------------------------------------------------
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20 #
21 # ------------------------------------------------------------------------------
22 #
23 # Please feel free to send questions, suggestions or improvements to:
24 #
25 #       Kartik Thakore
26 #       kthakore\@cpan.org
27 #
28 #
29 # Memory leaks testing
30
31 BEGIN {
32         unshift @INC, 'blib/lib', 'blib/arch';
33 }
34
35 use strict;
36
37 use Test::More;
38
39 # This is stolen for Gabor's examples in padre's SDL plugin
40 sub surface_leak()
41 {
42         use SDL;
43         use SDL::Surface;
44         use SDL::Rect;
45         use SDL::Color;
46
47         my $window = SDL::Surface->new(
48                 -width => 640,
49                 -height => 480,
50                 -depth => 16,
51                 -title => 'SDL Demo',
52
53         );
54
55         my $rect = SDL::Rect->new( -height => 10, -width => 20);
56
57         #my $blue = SDL::Color->new(
58         #       -r => 0x00,
59 #               -g => 0x00,
60 #               -b => 0xff,
61 #       );
62 #       $window->fill($rect, $blue);
63         $window->update($rect);
64
65 }
66
67 eval 'use Test::Valgrind';
68 plan skip_all => 'Test::Valgrind is required to test your distribution with valgrind' if $@;
69
70 surface_leak();
71
72
73