diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 20:37:50 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 20:37:50 +0300 |
commit | 9d54661016b1e3d6ea3a6bc633bd657d25e99122 (patch) | |
tree | 66bd3478cd67dfb8ea257d1a888e2eea90dd2bdd /tests | |
parent | f3d9a26fe6b921ae45b6a4c38713b4ba20754f43 (diff) |
Adapt to libbutl headers extension change from .mxx to .hxx
Diffstat (limited to 'tests')
-rw-r--r-- | tests/build-class-expr/driver.cxx | 4 | ||||
-rw-r--r-- | tests/manifest/driver.cxx | 6 | ||||
-rw-r--r-- | tests/overrides/driver.cxx | 6 | ||||
-rw-r--r-- | tests/package-version/driver.cxx | 4 | ||||
-rw-r--r-- | tests/repository-location/driver.cxx | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/tests/build-class-expr/driver.cxx b/tests/build-class-expr/driver.cxx index 5ff5f12..b2ee895 100644 --- a/tests/build-class-expr/driver.cxx +++ b/tests/build-class-expr/driver.cxx @@ -5,8 +5,8 @@ #include <string> #include <iostream> -#include <libbutl/utility.mxx> // eof(), operator<<(ostream, exception) -#include <libbutl/optional.mxx> +#include <libbutl/utility.hxx> // eof(), operator<<(ostream, exception) +#include <libbutl/optional.hxx> #include <libbpkg/manifest.hxx> diff --git a/tests/manifest/driver.cxx b/tests/manifest/driver.cxx index 2148ebb..44b1a79 100644 --- a/tests/manifest/driver.cxx +++ b/tests/manifest/driver.cxx @@ -5,9 +5,9 @@ #include <string> #include <iostream> -#include <libbutl/manifest-parser.mxx> -#include <libbutl/manifest-serializer.mxx> -#include <libbutl/standard-version.mxx> +#include <libbutl/manifest-parser.hxx> +#include <libbutl/manifest-serializer.hxx> +#include <libbutl/standard-version.hxx> #include <libbpkg/manifest.hxx> diff --git a/tests/overrides/driver.cxx b/tests/overrides/driver.cxx index f429b65..be3e0ff 100644 --- a/tests/overrides/driver.cxx +++ b/tests/overrides/driver.cxx @@ -8,9 +8,9 @@ #include <cstdint> // uint64_t #include <iostream> -#include <libbutl/utility.mxx> // trim() -#include <libbutl/manifest-parser.mxx> -#include <libbutl/manifest-serializer.mxx> +#include <libbutl/utility.hxx> // trim() +#include <libbutl/manifest-parser.hxx> +#include <libbutl/manifest-serializer.hxx> #include <libbpkg/manifest.hxx> diff --git a/tests/package-version/driver.cxx b/tests/package-version/driver.cxx index fc45c4d..0c84429 100644 --- a/tests/package-version/driver.cxx +++ b/tests/package-version/driver.cxx @@ -7,8 +7,8 @@ #include <exception> #include <stdexcept> // invalid_argument -#include <libbutl/utility.mxx> // operator<<(ostream, exception) -#include <libbutl/optional.mxx> +#include <libbutl/utility.hxx> // operator<<(ostream, exception) +#include <libbutl/optional.hxx> #include <libbpkg/manifest.hxx> diff --git a/tests/repository-location/driver.cxx b/tests/repository-location/driver.cxx index b0c7039..c93b257 100644 --- a/tests/repository-location/driver.cxx +++ b/tests/repository-location/driver.cxx @@ -6,8 +6,8 @@ #include <iostream> #include <stdexcept> // invalid_argument, logic_error -#include <libbutl/optional.mxx> -#include <libbutl/manifest-parser.mxx> +#include <libbutl/optional.hxx> +#include <libbutl/manifest-parser.hxx> #include <libbpkg/manifest.hxx> |