From 3caf3e985e4f35ac6ac04f61b92f11d2569550c6 Mon Sep 17 00:00:00 2001 From: Frank Busse Date: Fri, 24 Nov 2017 16:58:27 +0000 Subject: Base time API upon std::chrono This should not change the behaviour of KLEE and mimics the old API. - functions moved from util into time namespace - uses time points and time spans instead of double - CLI arguments now have the form "3h5min8us" Changed command line parameters: - batch-time (double to string) - istats-write-interval (double to string) - max-instruction-time (double to string) - max-solver-time (double to string) - max-time (double to string) - min-query-time-to-log (double to string) - seed-time (double to string) - stats-write-interval (double to string) - uncovered-update-interval (double to string) - added: log-timed-out-queries (replaces negative max-solver-time) --- unittests/Time/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 unittests/Time/CMakeLists.txt (limited to 'unittests/Time/CMakeLists.txt') diff --git a/unittests/Time/CMakeLists.txt b/unittests/Time/CMakeLists.txt new file mode 100644 index 00000000..6a860582 --- /dev/null +++ b/unittests/Time/CMakeLists.txt @@ -0,0 +1,3 @@ +add_klee_unit_test(TimeTest + TimeTest.cpp) +target_link_libraries(TimeTest PRIVATE kleeSupport) -- cgit 1.4.1