summaryrefslogtreecommitdiff
path: root/unit-tests/parser/driver.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-04-08 14:51:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-04-27 11:38:53 +0300
commit720c5a33b6a49cf328fdd7611f49153cf8f60247 (patch)
tree9725f3d1f42ec90fde84520f49647edea013ce5e /unit-tests/parser/driver.cxx
parent3183f3bb927a90783ae0aeaf190a0919377aabe4 (diff)
Separate tests and examples into individual packages
Also make cli module to be explicitly enabled via the config.cli configuration variable.
Diffstat (limited to 'unit-tests/parser/driver.cxx')
-rw-r--r--unit-tests/parser/driver.cxx45
1 files changed, 0 insertions, 45 deletions
diff --git a/unit-tests/parser/driver.cxx b/unit-tests/parser/driver.cxx
deleted file mode 100644
index 3e16b22..0000000
--- a/unit-tests/parser/driver.cxx
+++ /dev/null
@@ -1,45 +0,0 @@
-// file : unit-tests/parser/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// license : MIT; see accompanying LICENSE file
-
-#include <fstream>
-#include <iostream>
-
-#include <cli/parser.hxx>
-#include <cli/semantics.hxx>
-#include <cli/traversal.hxx>
-
-using namespace std;
-
-int
-main (int argc, char* argv[])
-{
- if (argc != 2)
- {
- cerr << "usage: " << argv[0] << " file.cli" << endl;
- return 1;
- }
-
- try
- {
- semantics::path path (argv[1]);
-
- ifstream ifs;
- ifs.exceptions (ifstream::failbit | ifstream::badbit);
- ifs.open (path.string ().c_str ());
-
- parser::paths include_paths;
- parser p (include_paths);
- p.parse (ifs, path);
- }
- catch (semantics::invalid_path const& e)
- {
- cerr << "error: '" << e.path () << "' is not a valid filesystem path"
- << endl;
- return 1;
- }
- catch (parser::invalid_input const&)
- {
- return 1;
- }
-}