Skip to content

Commit

Permalink
ignore setMipmapFilter on opengl ES
Browse files Browse the repository at this point in the history
  • Loading branch information
ellraiser committed Nov 15, 2023
1 parent 0ef417f commit 1323bb1
Show file tree
Hide file tree
Showing 5 changed files with 343 additions and 334 deletions.
4 changes: 2 additions & 2 deletions testing/classes/TestSuite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ TestSuite = {
local md = '<!-- PASSED ' .. tostring(self.totals[1]) ..
' || FAILED ' .. tostring(self.totals[2]) ..
' || SKIPPED ' .. tostring(self.totals[3]) ..
' || TIME ' .. finaltime .. ' -->\n\n' ..
' || TIME ' .. finaltime .. ' -->\n\n### Info\n' ..
'**' .. tostring(self.totals[1] + self.totals[2] + self.totals[3]) .. '** tests were completed in **' ..
finaltime .. 's** with **' ..
tostring(self.totals[1]) .. '** passed, **' ..
Expand All @@ -152,7 +152,7 @@ TestSuite = {
'### Report\n' ..
'| Module | Pass | Fail | Skip | Time |\n' ..
'| --------------------- | ------ | ------ | ------- | ------ |\n' ..
self.mdrows .. '\n\n### Failures\n' .. self.mdfailures
self.mdrows .. '\n### Failures\n' .. self.mdfailures

local xml = '<testsuites name="love.test" tests="' .. tostring(self.totals[1]) ..
'" failures="' .. tostring(self.totals[2]) ..
Expand Down
2 changes: 1 addition & 1 deletion testing/examples/lovetest_runAllTests.html

Large diffs are not rendered by default.

41 changes: 20 additions & 21 deletions testing/examples/lovetest_runAllTests.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
<!-- PASSED 281 || FAILED 2 || SKIPPED 20 || TIME 13.278 -->
<!-- PASSED 282 || FAILED 1 || SKIPPED 20 || TIME 9.881 -->

**303** tests were completed in **13.278s** with **281** passed, **2** failed, and **20** skipped
### Info
**303** tests were completed in **9.881s** with **282** passed, **1** failed, and **20** skipped

Renderer: OpenGL | 4.1 Metal - 76.3 | Apple | Apple M1 Max

### Report
| Module | Pass | Fail | Skip | Time |
| --------------------- | ------ | ------ | ------- | ------ |
| 🟢 audio | 28 | 0 | 0 | 0.851s |
| 🟢 data | 12 | 0 | 0 | 0.197s |
| 🟢 event | 4 | 0 | 2 | 0.096s |
| 🟢 filesystem | 29 | 0 | 2 | 0.539s |
| 🔴 font | 6 | 1 | 0 | 0.121s |
| 🔴 graphics | 98 | 1 | 6 | 2.029s |
| 🟢 image | 5 | 0 | 0 | 0.087s |
| 🟢 math | 20 | 0 | 0 | 0.321s |
| 🟢 physics | 22 | 0 | 6 | 0.468s |
| 🟢 sound | 4 | 0 | 0 | 0.068s |
| 🟢 system | 6 | 0 | 2 | 0.148s |
| 🟢 thread | 5 | 0 | 0 | 0.376s |
| 🟢 timer | 6 | 0 | 0 | 2.082s |
| 🟢 video | 2 | 0 | 0 | 0.039s |
| 🟢 window | 34 | 0 | 2 | 5.855s |

| 🟢 audio | 28 | 0 | 0 | 0.857s |
| 🟢 data | 12 | 0 | 0 | 0.139s |
| 🟢 event | 4 | 0 | 2 | 0.010s |
| 🟢 filesystem | 29 | 0 | 2 | 0.068s |
| 🔴 font | 6 | 1 | 0 | 0.015s |
| 🟢 graphics | 99 | 0 | 6 | 0.294s |
| 🟢 image | 5 | 0 | 0 | 0.011s |
| 🟢 math | 20 | 0 | 0 | 0.070s |
| 🟢 physics | 22 | 0 | 6 | 0.071s |
| 🟢 sound | 4 | 0 | 0 | 0.015s |
| 🟢 system | 6 | 0 | 2 | 0.026s |
| 🟢 thread | 5 | 0 | 0 | 0.317s |
| 🟢 timer | 6 | 0 | 0 | 2.021s |
| 🟢 video | 2 | 0 | 0 | 0.012s |
| 🟢 window | 34 | 0 | 2 | 5.955s |

### Failures
> 🔴 GlyphData
> assert 8 [check glyph number] expected '97' got '0'
> 🔴 Canvas
> assert 44 [check depth sample mode set] expected 'equal' got 'nil'
Loading

0 comments on commit 1323bb1

Please sign in to comment.