Ready for fvm steady case

This commit is contained in:
2025-09-21 20:57:02 +02:00
parent 3a53b6ebf7
commit 513f071748
59 changed files with 1813 additions and 983 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ int main() {
for (auto& t : TestRegistry::list()) {
try {
t.second();
std::cout << "[PASS] " << t.first << "\n";
//std::cout << "[PASS] " << t.first << "\n";
} catch (const TestFailure& e) {
std::cerr << "[FAIL] " << t.first << " -> " << e.what() << "\n";
++fails;