summaryrefslogtreecommitdiff
path: root/tests/file/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/file/driver.cxx')
-rw-r--r--tests/file/driver.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/file/driver.cxx b/tests/file/driver.cxx
deleted file mode 100644
index f964932..0000000
--- a/tests/file/driver.cxx
+++ /dev/null
@@ -1,39 +0,0 @@
-// file : tests/file/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// license : MIT; see accompanying LICENSE file
-
-// Test argv_file_scanner.
-//
-#include <memory>
-#include <string>
-#include <iostream>
-
-#include "test.hxx"
-
-using namespace std;
-
-int
-main (int argc, char* argv[])
-{
- try
- {
- string a (argc > 1 ? argv[1] : "");
-
- // Special modes.
- //
- // ---- <file>
- // --- <file>
- //
- unique_ptr<cli::scanner> s (
- a == "----" ? new cli::argv_file_scanner (argv[2], "--file") :
- a == "---" ? new cli::argv_file_scanner (argv[2]) :
- new cli::argv_file_scanner (argc, argv, "--file"));
-
- while (s->more ())
- cout << s->next () << endl;
- }
- catch (const cli::exception& e)
- {
- cerr << e << endl;
- }
-}