Skip to content

Commit

Permalink
Fix broken compilation of regal tests (#21248)
Browse files Browse the repository at this point in the history
This should have been part of #21096.  These failures don't show up in
CI because they are disabled under swiftshader.
  • Loading branch information
sbc100 authored Feb 2, 2024
1 parent f065b75 commit 7514cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ def test_cubegeom_pre(self):
@requires_graphics_hardware
@no_swiftshader
def test_cubegeom_pre_regal(self):
self.btest('third_party/cubegeom/cubegeom_pre.c', reference='third_party/cubegeom/cubegeom_pre.png', args=['-sUSE_REGAL', '-DUSE_REGAL', '-lGL', '-lSDL'])
self.btest('third_party/cubegeom/cubegeom_pre.c', reference='third_party/cubegeom/cubegeom_pre.png', args=['-sUSE_REGAL', '-DUSE_REGAL', '-lGL', '-lSDL', '-lc++', '-lc++abi'])

@requires_graphics_hardware
@no_swiftshader
Expand Down Expand Up @@ -2199,7 +2199,7 @@ def test_cubegeom_pre_vao(self):
@requires_graphics_hardware
@no_swiftshader
def test_cubegeom_pre_vao_regal(self):
self.btest('third_party/cubegeom/cubegeom_pre_vao.c', reference='third_party/cubegeom/cubegeom_pre_vao.png', args=['-sUSE_REGAL', '-DUSE_REGAL', '-lGL', '-lSDL'])
self.btest('third_party/cubegeom/cubegeom_pre_vao.c', reference='third_party/cubegeom/cubegeom_pre_vao.png', args=['-sUSE_REGAL', '-DUSE_REGAL', '-lGL', '-lSDL', '-lc++', '-lc++abi'])

@requires_graphics_hardware
@no_swiftshader
Expand Down

0 comments on commit 7514cc2

Please sign in to comment.