-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
44 lines (40 loc) · 1.12 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Copyright Aliaksei Levin ([email protected]), Arseny Smirnov ([email protected]) 2014-2020
//
// 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)
//
#include "td/utils/tests.h"
#include "td/utils/common.h"
#include "td/utils/logging.h"
#include <cstring>
#if TD_EMSCRIPTEN
#include <emscripten.h>
#endif
int main(int argc, char **argv) {
// TODO port OptionsParser to Windows
td::TestsRunner &runner = td::TestsRunner::get_default();
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
for (int i = 1; i < argc; i++) {
if (!std::strcmp(argv[i], "--filter")) {
CHECK(i + 1 < argc);
runner.add_substr_filter(argv[++i]);
}
if (!std::strcmp(argv[i], "--stress")) {
runner.set_stress_flag(true);
}
}
#if TD_EMSCRIPTEN
emscripten_set_main_loop(
[] {
td::TestsRunner &default_runner = td::TestsRunner::get_default();
if (!default_runner.run_all_step()) {
emscripten_cancel_main_loop();
}
},
10, 0);
#else
runner.run_all();
#endif
return 0;
}