diff options
Diffstat (limited to 'tests/process')
-rw-r--r-- | tests/process/buildfile | 4 | ||||
-rw-r--r-- | tests/process/driver.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/process/buildfile b/tests/process/buildfile index 72cbec2..19f06a8 100644 --- a/tests/process/buildfile +++ b/tests/process/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/process/driver.cxx b/tests/process/driver.cxx index ae5015c..bdc5f4a 100644 --- a/tests/process/driver.cxx +++ b/tests/process/driver.cxx @@ -12,9 +12,9 @@ #include <iterator> // istreambuf_iterator, ostream_iterator #include <algorithm> // copy() -#include <butl/path> -#include <butl/process> -#include <butl/fdstream> +#include <libbutl/path.hxx> +#include <libbutl/process.hxx> +#include <libbutl/fdstream.hxx> using namespace std; using namespace butl; |