4
0

+ Fixed Floating test suite.

This commit is contained in:
SAVELIY BAKTURIN
2026-03-08 18:08:25 +00:00
parent 351b7fb8c5
commit 885757f752
4 changed files with 129 additions and 14 deletions

View File

@@ -4,12 +4,13 @@ import argparse
import platform
import testsuites.intro as intro
import testsuites.fixed_floating as fixed_floating
from testsuites import Testsuite, DynamicWrapper
from typing import Dict, Any, List
__TESTSUITES: List[Testsuite] = [
intro.instance
intro.instance, fixed_floating.instance
]
__SUITENAMES: List[str] = [t.name() for t in __TESTSUITES]