diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-26 15:21:18 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-26 15:21:18 -0700 |
commit | 0914aca645370e8ff46324d304b8a2acb64567ec (patch) | |
tree | 2933178476562cc662e29daf15b3dbd38bd2fc9a /tests/runner.py | |
parent | 9987b9a039052cb84f33127e5b2c3df58f349d7c (diff) | |
parent | 36aa6eb6c7fd6acfb04a9f7467b8ca1974a07dcd (diff) |
Merge pull request #1393 from fhd/sdl-surface-refcount
Implement SDL_Surface refcounting
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index fc41c8a1..d16472ad 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -13523,6 +13523,9 @@ Press any key to continue.''' def test_sdl_alloctext(self): self.btest('sdl_alloctext.c', expected='1', args=['-O2', '-s', 'TOTAL_MEMORY=' + str(1024*1024*8)]) + def test_sdl_surface_refcount(self): + self.btest('sdl_surface_refcount.c', expected='1') + def test_glbegin_points(self): shutil.copyfile(path_from_root('tests', 'screenshot.png'), os.path.join(self.get_dir(), 'screenshot.png')) self.btest('glbegin_points.c', reference='glbegin_points.png', args=['--preload-file', 'screenshot.png']) |