Hello,
I’ve started working on a Wayland implementation. I have a first pass on the UnitTestRunner app building. Only a few errors; below, and some questions.
Questions:
- Do the test numbers match the code I have noted? I figured the were by order of occurrence.
- Does UnitTestRunner complete 100% on a RaspberryPi 32-bit image? Which distro/image?
- What’s the smallest code/ram size one can get a full-screen JUCE app? Presuming link-time optimization is used.
- The below SIMD test asserts, but completes. Is that expected?
Thanks,
Joel
-----------------------------------------------------------------
Starting test: Files / Writing...
!!! Test 43 failed
JUCE Assertion failure in juce_UnitTest.cpp:280
FAILED!! 1 test failed, out of a total of 53
-----------------------------------------------------------------
tempFile.setReadOnly (true);
43. expect (! tempFile.hasWriteAccess());
-----------------------------------------------------------------
Starting test: Sockets / StreamingSocket...
!!! Test 6 failed
!!! Test 7 failed
!!! Test 9 failed
!!! Test 10 failed
FAILED!! 4 tests failed, out of a total of 14
-----------------------------------------------------------------
6. expect (socket.connect (localHost.toString(), portNum));
7. expect (socket.isConnected() == true);
9. expect (socket.getBoundPort() != -1);
10. expect (socket.getRawSocketHandle() != invalidSocket);
-----------------------------------------------------------------
Starting test: SIMDRegister UnitTests / CheckTruncate...
JUCE Assertion failure in juce_fallback_SIMDNativeOps.h:129
All tests completed successfully
-----------------------------------------------------------------
