Cxbx-Reloaded / xbox_kernel_test_suite

Xbox kernel APIs tester written using nxdk
GNU General Public License v3.0
22 stars 6 forks source link

Optimize tests loop with std::bitset #101

Closed RadWolfie closed 5 months ago

RadWolfie commented 6 months ago

Per @PatrickvL suggestion to improve faster check process for each tests that are excluded.

Although, I see std::bitset could be useful to fully replace custom vector since custom vector is only used in main.c file so far.

EDIT: However, we do need to check if nxdk's libcxx is able to support std::bitset. EDIT2: Turns out std::bitset is supported.