mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Revert "Use the Conan package manager (#4367)"
This reverts commit c3a9f3dbf3.
This commit is contained in:
@@ -226,15 +226,13 @@ public:
|
||||
// SOCI requires boost::optional (not std::optional) as
|
||||
// parameters.
|
||||
boost::optional<std::int32_t> ig;
|
||||
// Known bug: https://github.com/SOCI/soci/issues/926
|
||||
// boost::optional<std::uint32_t> uig;
|
||||
uint32_t uig = 0;
|
||||
boost::optional<std::uint32_t> uig;
|
||||
boost::optional<std::int64_t> big;
|
||||
boost::optional<std::uint64_t> ubig;
|
||||
s << "SELECT I, UI, BI, UBI from STT;", soci::into(ig),
|
||||
soci::into(uig), soci::into(big), soci::into(ubig);
|
||||
BEAST_EXPECT(
|
||||
*ig == id[0] && uig == uid[0] && *big == bid[0] &&
|
||||
*ig == id[0] && *uig == uid[0] && *big == bid[0] &&
|
||||
*ubig == ubid[0]);
|
||||
}
|
||||
catch (std::exception&)
|
||||
@@ -359,13 +357,18 @@ public:
|
||||
bfs::remove(dbPath);
|
||||
}
|
||||
void
|
||||
run() override
|
||||
testSQLite()
|
||||
{
|
||||
testSQLiteFileNames();
|
||||
testSQLiteSession();
|
||||
testSQLiteSelect();
|
||||
testSQLiteDeleteWithSubselect();
|
||||
}
|
||||
void
|
||||
run() override
|
||||
{
|
||||
testSQLite();
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE(SociDB, core, ripple);
|
||||
|
||||
@@ -409,6 +409,6 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE_MANUAL(NodeToShardRPC, rpc, ripple);
|
||||
BEAST_DEFINE_TESTSUITE(NodeToShardRPC, rpc, ripple);
|
||||
} // namespace test
|
||||
} // namespace ripple
|
||||
|
||||
Reference in New Issue
Block a user