summaryrefslogtreecommitdiff
path: root/common/threads/testscript
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 20:32:06 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 20:32:06 +0300
commit0d49ea1fe08cf1eab41a00149393a291c65a59d7 (patch)
tree0391eb09309ca95282e200516937e64d89f3e1bb /common/threads/testscript
parentfc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (diff)
Turn odb-tests repository into package for muti-package repositoryodb-tests
Diffstat (limited to 'common/threads/testscript')
-rw-r--r--common/threads/testscript50
1 files changed, 0 insertions, 50 deletions
diff --git a/common/threads/testscript b/common/threads/testscript
deleted file mode 100644
index 87e03e0..0000000
--- a/common/threads/testscript
+++ /dev/null
@@ -1,50 +0,0 @@
-# file : common/threads/testscript
-# license : GNU GPL v2; see accompanying LICENSE file
-
-.include ../../database-options.testscript
-
-: mysql
-:
-if $mysql
-{
- .include ../../mysql.testscript
-
- $create_schema;
- $*
-}
-
-: sqlite
-:
-if $sqlite
-{
- .include ../../sqlite.testscript
-
- # Note: this is quite slow:
- #
- # $ time ./driver --database ~/odb-test.db
- # real 3m5.593s
- # user 1m1.244s
- # sys 0m26.793s
- #
- # $ time ./driver --database /tmp/odb-test.db
- # real 0m13.909s
- # user 0m16.724s
- # sys 0m4.874s
- #
- # $ time ./driver --database "file::memory:"
- # real 0m12.406s
- # user 0m15.694s
- # sys 0m4.207s
- #
- $*
-}
-
-: pgsql
-:
-if $pgsql
-{
- .include ../../pgsql.testscript
-
- $create_schema;
- $*
-}