2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
2019-02-12 22:26:36 +01:00
|
|
|
#include "td/utils/common.h"
|
2020-06-11 00:49:20 +02:00
|
|
|
#include "td/utils/crypto.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/logging.h"
|
2020-06-17 05:21:47 +02:00
|
|
|
#include "td/utils/OptionParser.h"
|
|
|
|
#include "td/utils/Slice.h"
|
2020-08-13 15:57:28 +02:00
|
|
|
#include "td/utils/tests.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#if TD_EMSCRIPTEN
|
|
|
|
#include <emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2020-06-11 00:49:20 +02:00
|
|
|
td::init_openssl_threads();
|
|
|
|
|
2018-12-19 15:49:13 +01:00
|
|
|
td::TestsRunner &runner = td::TestsRunner::get_default();
|
2018-05-19 22:45:13 +02:00
|
|
|
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
|
2020-06-17 05:21:47 +02:00
|
|
|
|
|
|
|
td::OptionParser options;
|
2020-06-24 13:47:36 +02:00
|
|
|
options.add_option('f', "filter", "Run only specified tests",
|
2020-06-19 03:44:38 +02:00
|
|
|
[&](td::Slice filter) { runner.add_substr_filter(filter.str()); });
|
2020-06-24 13:47:36 +02:00
|
|
|
options.add_option('s', "stress", "Run tests infinitely", [&] { runner.set_stress_flag(true); });
|
2020-06-19 05:00:01 +02:00
|
|
|
auto r_non_options = options.run(argc, argv, 0);
|
|
|
|
if (r_non_options.is_error()) {
|
|
|
|
LOG(PLAIN) << argv[0] << ": " << r_non_options.error().message();
|
2020-06-17 05:21:47 +02:00
|
|
|
LOG(PLAIN) << options;
|
|
|
|
return 1;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2020-06-17 05:21:47 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#if TD_EMSCRIPTEN
|
|
|
|
emscripten_set_main_loop(
|
2019-11-17 21:42:48 +01:00
|
|
|
[] {
|
|
|
|
td::TestsRunner &default_runner = td::TestsRunner::get_default();
|
|
|
|
if (!default_runner.run_all_step()) {
|
2018-12-31 20:04:05 +01:00
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
10, 0);
|
|
|
|
#else
|
2018-12-19 15:49:13 +01:00
|
|
|
runner.run_all();
|
2018-12-31 20:04:05 +01:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|