2018-12-31 22:04:05 +03:00
|
|
|
//
|
2021-01-01 15:57:46 +03:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2018-12-31 22:04:05 +03: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-13 00:26:36 +03:00
|
|
|
#include "td/utils/common.h"
|
2020-06-11 01:49:20 +03:00
|
|
|
#include "td/utils/crypto.h"
|
2018-12-31 22:04:05 +03:00
|
|
|
#include "td/utils/logging.h"
|
2020-06-17 06:21:47 +03:00
|
|
|
#include "td/utils/OptionParser.h"
|
|
|
|
#include "td/utils/Slice.h"
|
2020-08-13 16:57:28 +03:00
|
|
|
#include "td/utils/tests.h"
|
2018-12-31 22:04:05 +03:00
|
|
|
|
|
|
|
#if TD_EMSCRIPTEN
|
|
|
|
#include <emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2020-06-11 01:49:20 +03:00
|
|
|
td::init_openssl_threads();
|
|
|
|
|
2018-12-19 17:49:13 +03:00
|
|
|
td::TestsRunner &runner = td::TestsRunner::get_default();
|
2018-05-19 23:45:13 +03:00
|
|
|
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
|
2020-06-17 06:21:47 +03:00
|
|
|
|
|
|
|
td::OptionParser options;
|
2020-06-24 14:47:36 +03:00
|
|
|
options.add_option('f', "filter", "Run only specified tests",
|
2020-06-19 04:44:38 +03:00
|
|
|
[&](td::Slice filter) { runner.add_substr_filter(filter.str()); });
|
2020-06-24 14:47:36 +03:00
|
|
|
options.add_option('s', "stress", "Run tests infinitely", [&] { runner.set_stress_flag(true); });
|
2020-06-19 06:00:01 +03: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 06:21:47 +03:00
|
|
|
LOG(PLAIN) << options;
|
|
|
|
return 1;
|
2018-12-31 22:04:05 +03:00
|
|
|
}
|
2020-06-17 06:21:47 +03:00
|
|
|
|
2018-12-31 22:04:05 +03:00
|
|
|
#if TD_EMSCRIPTEN
|
|
|
|
emscripten_set_main_loop(
|
2019-11-17 23:42:48 +03:00
|
|
|
[] {
|
|
|
|
td::TestsRunner &default_runner = td::TestsRunner::get_default();
|
|
|
|
if (!default_runner.run_all_step()) {
|
2018-12-31 22:04:05 +03:00
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
10, 0);
|
|
|
|
#else
|
2018-12-19 17:49:13 +03:00
|
|
|
runner.run_all();
|
2018-12-31 22:04:05 +03:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|