diff options
Diffstat (limited to 'tests/manifest/driver.cxx')
-rw-r--r-- | tests/manifest/driver.cxx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/tests/manifest/driver.cxx b/tests/manifest/driver.cxx index 74e2166..017b05e 100644 --- a/tests/manifest/driver.cxx +++ b/tests/manifest/driver.cxx @@ -3,10 +3,9 @@ // license : MIT; see accompanying LICENSE file #include <cassert> -#include <fstream> #include <iostream> -#include <butl/fdstream> // stdout_mode() +#include <butl/fdstream> #include <bpkg/manifest> #include <bpkg/manifest-parser> @@ -27,10 +26,7 @@ main (int argc, char* argv[]) try { - ifstream ifs; - ifs.exceptions (ifstream::badbit | ifstream::failbit); - ifs.open (argv[1]); - + ifdstream ifs (argv[1]); manifest_parser p (ifs, argv[1]); #ifdef TEST_PACKAGES @@ -41,16 +37,10 @@ main (int argc, char* argv[]) signature_manifest ms (p); #endif - - stdout_fdmode (fdtranslate::binary); // Write in binary mode. + stdout_fdmode (fdstream_mode::binary); // Write in binary mode. manifest_serializer s (cout, "stdout"); ms.serialize (s); } - catch (const ios_base::failure&) - { - cerr << "io failure" << endl; - return 1; - } catch (const exception& e) { cerr << e.what () << endl; |