diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/.gitignore | 2 | ||||
-rw-r--r-- | tests/buildtab/buildfile | 4 | ||||
-rw-r--r-- | tests/buildtab/driver.cxx | 2 | ||||
-rw-r--r-- | tests/manifest/buildfile | 4 | ||||
-rw-r--r-- | tests/manifest/driver.cxx | 2 |
5 files changed, 8 insertions, 6 deletions
diff --git a/tests/.gitignore b/tests/.gitignore index e54525b..2e508a9 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1 +1,3 @@ driver +test/ +test-*/ diff --git a/tests/buildtab/buildfile b/tests/buildtab/buildfile index 466c8ad..3da3faa 100644 --- a/tests/buildtab/buildfile +++ b/tests/buildtab/buildfile @@ -4,6 +4,6 @@ import libs = libbutl%lib{butl} -exe{driver}: cxx{driver} ../../bbot/lib{bbot} $libs test{testscript} +exe{driver}: cxx{driver} ../../libbbot/lib{bbot} $libs test{testscript} -include ../../bbot/ +include ../../libbbot/ diff --git a/tests/buildtab/driver.cxx b/tests/buildtab/driver.cxx index c3e3a60..28c48fb 100644 --- a/tests/buildtab/driver.cxx +++ b/tests/buildtab/driver.cxx @@ -8,7 +8,7 @@ #include <butl/utility> // operator<<(ostream,exception) -#include <bbot/build-config> +#include <libbbot/build-config.hxx> using namespace std; using namespace butl; diff --git a/tests/manifest/buildfile b/tests/manifest/buildfile index b9af8ef..15e0b59 100644 --- a/tests/manifest/buildfile +++ b/tests/manifest/buildfile @@ -4,6 +4,6 @@ import libs = libbutl%lib{butl} -exe{driver}: cxx{driver} ../../bbot/lib{bbot} $libs test{*} +exe{driver}: cxx{driver} ../../libbbot/lib{bbot} $libs test{*} -include ../../bbot/ +include ../../libbbot/ diff --git a/tests/manifest/driver.cxx b/tests/manifest/driver.cxx index 16240a5..fb58b27 100644 --- a/tests/manifest/driver.cxx +++ b/tests/manifest/driver.cxx @@ -11,7 +11,7 @@ #include <butl/manifest-parser> #include <butl/manifest-serializer> -#include <bbot/manifest> +#include <libbbot/manifest.hxx> using namespace std; using namespace butl; |