dinitcheck: output overall result after checks complete
authorDavin McCall <davmac@davmac.org>
Sun, 8 Dec 2019 08:47:44 +0000 (18:47 +1000)
committerDavin McCall <davmac@davmac.org>
Sun, 8 Dec 2019 08:47:44 +0000 (18:47 +1000)
src/dinitcheck.cc
src/igr-tests/check-basic/expected.txt
src/igr-tests/check-cycle/expected.txt

index a27a8e446e45ffa2a2cfa212b4b47e064c4c7ba4..b074df15200bb41e39dde511b7efb8abaf932bc2 100644 (file)
@@ -204,6 +204,13 @@ int main(int argc, char **argv)
 
     // TODO additional: check chain-to, other lint
 
+    if (! errors_found) {
+        std::cout << "No problems found.\n";
+    }
+    else {
+        std::cout << "One or more errors found.\n";
+    }
+
     return errors_found ? EXIT_FAILURE : EXIT_SUCCESS;
 }
 
index a25578ff999834f8693181fe85c2897c3aa7e74d..43f5cd5348394ca22241af21d3abed1619d915c1 100644 (file)
@@ -3,3 +3,4 @@ Service 'boot': Unknown setting: 'not-valid'.
 Service 'boot': run-as: Specified user id contains invalid numeric characters or is outside allowed range.
 Checking service: test1...
 Unable to load service 'test1': Service description not found.
+One or more errors found.
index 89dadf893385579c6f583f04cdb0139405f481be..e39d20e69bb1ed19b3899e46ff33df702d9d1fec 100644 (file)
@@ -9,3 +9,4 @@ Found dependency cycle:
     d ->
     e ->
     b.
+One or more errors found.