aboutsummaryrefslogtreecommitdiff
path: root/tests/manifest-roundtrip/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manifest-roundtrip/driver.cxx')
-rw-r--r--tests/manifest-roundtrip/driver.cxx15
1 files changed, 3 insertions, 12 deletions
diff --git a/tests/manifest-roundtrip/driver.cxx b/tests/manifest-roundtrip/driver.cxx
index 4f9a965..91bb108 100644
--- a/tests/manifest-roundtrip/driver.cxx
+++ b/tests/manifest-roundtrip/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-parser>
#include <bpkg/manifest-serializer>
@@ -26,13 +25,10 @@ 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]);
- stdout_fdmode (fdtranslate::binary); // Write in binary mode.
+ stdout_fdmode (fdstream_mode::binary); // Write in binary mode.
manifest_serializer s (cout, "stdout");
for (bool eom (true), eos (false); !eos; )
@@ -50,11 +46,6 @@ main (int argc, char* argv[])
s.next (nv.name, nv.value);
}
}
- catch (const ios_base::failure&)
- {
- cerr << "io failure" << endl;
- return 1;
- }
catch (const exception& e)
{
cerr << e.what () << endl;