From c7e1277ecaf40c6d8ee945418a306f5b15189b97 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 8 Aug 2023 16:33:38 -0700 Subject: Unit test augmentations and harness. Added some features to the mkunit program, including cleanup routine support. Added reporting modes for the UnitSuite class, and it can now generate machine readable reports. Added a new program, rununits that runs all unit tests and generates a synopsis of what you really care about at the end, issues! --- src/unstable/blob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unstable/blob.cpp') diff --git a/src/unstable/blob.cpp b/src/unstable/blob.cpp index a9cb99d..d343963 100644 --- a/src/unstable/blob.cpp +++ b/src/unstable/blob.cpp @@ -813,7 +813,7 @@ template<> void Bu::__tracer_format( const Bu::Blob &v ) #include "bu/formatter.h" Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Blob &b ) { - rOut.write( b.getData(), b.getSize() ); + rOut.writeAligned( b.getData(), b.getSize() ); return rOut; } -- cgit v1.2.3