mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
add stub for testing updates to scoped_timer
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0405a597d4
commit
96e871c826
4 changed files with 13 additions and 1 deletions
|
@ -101,6 +101,7 @@ add_executable(test-z3
|
|||
sat_local_search.cpp
|
||||
sat_lookahead.cpp
|
||||
sat_user_scope.cpp
|
||||
scoped_timer.cpp
|
||||
simple_parser.cpp
|
||||
simplex.cpp
|
||||
simplifier.cpp
|
||||
|
|
|
@ -259,6 +259,7 @@ int main(int argc, char ** argv) {
|
|||
TST(bdd);
|
||||
TST(pdd);
|
||||
TST(pdd_solver);
|
||||
TST(scoped_timer);
|
||||
TST(solver_pool);
|
||||
//TST_ARGV(hs);
|
||||
TST(finder);
|
||||
|
|
9
src/test/scoped_timer.cpp
Normal file
9
src/test/scoped_timer.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
// test driver for scoped timer.
|
||||
// fixes are required to be fuzzed
|
||||
// with single and multi-threaded mode and short timeouts.
|
||||
|
||||
#include "util/scoped_timer.h"
|
||||
|
||||
void tst_scoped_timer() {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue