Skip to content

Move tests from libgda/ to tests/

Working on the API doc, I came across strange things:

libgda$ ls -l libgda/thread-wrapper/
dummy-object.c -> ../../tests/multi-threading/dummy-object.c
dummy-object.h -> ../../tests/multi-threading/dummy-object.h

Thread tests are specified in libgda/meson.build, libgda/thread-wrapper/meson.build and tests/multi-threading/meson.build.

There are some tests under libgda/.

libgda$ find libgda -name meson.build|xargs grep 'test('
libgda/meson.build:test('OpenConnection', tco,
libgda/meson.build:test('OpenConnectionExecute', tce,
libgda/meson.build:test('OpenConnectionMeta', tcm,
libgda/meson.build:test('RawItSignaler', ttw)
libgda/meson.build:test('ItSignaler', ttws)
libgda/meson.build:test('BlockingItSignaler', ttwbs)
libgda/meson.build:test('Worker', ttww)
libgda/meson.build:test('WorkerConnect', ttwd)

Well, tests belong to tests/.

Merge request reports