diff options
Diffstat (limited to 'tests/tab-parser')
-rw-r--r-- | tests/tab-parser/buildfile | 4 | ||||
-rw-r--r-- | tests/tab-parser/driver.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/tab-parser/buildfile b/tests/tab-parser/buildfile index 4afb691..a56ed4d 100644 --- a/tests/tab-parser/buildfile +++ b/tests/tab-parser/buildfile @@ -2,6 +2,6 @@ # copyright : Copyright (c) 2014-2017 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -exe{driver}: cxx{driver} ../../butl/lib{butl} test{testscript} +exe{driver}: cxx{driver} ../../libbutl/lib{butl} test{testscript} -include ../../butl/ +include ../../libbutl/ diff --git a/tests/tab-parser/driver.cxx b/tests/tab-parser/driver.cxx index 8b0cc4d..238c12a 100644 --- a/tests/tab-parser/driver.cxx +++ b/tests/tab-parser/driver.cxx @@ -6,8 +6,8 @@ #include <cassert> #include <iostream> -#include <butl/utility> // operator<<(ostream,exception) -#include <butl/tab-parser> +#include <libbutl/utility.hxx> // operator<<(ostream,exception) +#include <libbutl/tab-parser.hxx> using namespace std; using namespace butl; |