From 105524ed96f162b43c0735a65fea284d07356aa2 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 22 Jun 2020 19:05:08 +0300 Subject: Adapt to merging of package external tests, examples, and benchmarks into typed tests --- migrate/migrate.cxx | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'migrate/migrate.cxx') diff --git a/migrate/migrate.cxx b/migrate/migrate.cxx index feac683..0ef6096 100644 --- a/migrate/migrate.cxx +++ b/migrate/migrate.cxx @@ -237,6 +237,17 @@ package_migrate_v18 ([] (database& db) }); //#endif +// Merging the package examples and benchmarks tables into the package tests +// table is a bit hairy. Thus, we won't bother with that and just cleanup the +// amended package tests table, relying on the loader to fill it in a short +// time. +// +static const package_migration_entry<19> +package_migrate_v19 ([] (database& db) +{ + db.execute ("DELETE from package_tests"); +}); + // main() function // int -- cgit v1.1