From 9486e7f6c3394178bd886ebc9189835ab60221a8 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Thu, 25 Oct 2018 16:57:20 +0200 Subject: Add test/ meson.build --- test/meson.build | 27 +++++++++++++++++++++++++++ test/singleapplication-40/main.cpp | 21 +++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 test/meson.build create mode 100644 test/singleapplication-40/main.cpp (limited to 'test') diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 0000000..3849f07 --- /dev/null +++ b/test/meson.build @@ -0,0 +1,27 @@ +# Adblock parsing test +adblock = executable('AdblockTest', + dependencies: [dep_qt5, dep_urlfilter], + sources: ['adblock/adblocktest.cpp', qt5.preprocess(moc_headers: 'adblock/adblocktest.h', dependencies: dep_qt5)] +) +test('urlfilter-adblock', adblock) + +# Hostlist parsing test +hostlist = executable('HostlistTest', + dependencies: [dep_qt5, dep_urlfilter], + sources: ['hostlist/hostlisttest.cpp', qt5.preprocess(moc_headers: 'hostlist/hostlisttest.h', dependencies: dep_qt5)] +) +test('urlfilter-hostlist', hostlist) + +# matching algorithms benchmark +matcherbenchmark = executable('MatcherBenchmark', + dependencies: dep_qt5, + sources: ['matcherbenchmark/matcherbenchmark.cpp', qt5.preprocess(moc_headers: 'matcherbenchmark/matcherbenchmark.h', dependencies: dep_qt5)] +) + +# SingleApplication issue#40 test app +singleapp = executable('SingleApplication', + cpp_args: ['-DQAPPLICATION_CLASS=QApplication'], + dependencies: [dep_qt5, dep_SingleApplication], + sources: ['singleapplication-40/main.cpp'] +) + diff --git a/test/singleapplication-40/main.cpp b/test/singleapplication-40/main.cpp new file mode 100644 index 0000000..246dd63 --- /dev/null +++ b/test/singleapplication-40/main.cpp @@ -0,0 +1,21 @@ +/* https://github.com/itay-grudev/SingleApplication/issues/40 + * SingleApplication doesn't work when two processes are started with millisecond delay + * + * To reproduce: run the app twice with './test/singleapp & ./test/singleapp' + */ +#include +#include +#include + +#include + +int main(int argc, char *argv[]) +{ + SingleApplication app(argc, argv); + qDebug() << "process started, pid:" << QCoreApplication::applicationPid(); + + QTimer::singleShot(3000, &app, SLOT(quit())); + + return app.exec(); +} + -- cgit v1.2.1