diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/tests/test-timed-average.c | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/tests/test-timed-average.c')
-rw-r--r-- | qemu/tests/test-timed-average.c | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/qemu/tests/test-timed-average.c b/qemu/tests/test-timed-average.c deleted file mode 100644 index 1cc4ab302..000000000 --- a/qemu/tests/test-timed-average.c +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Timed average computation tests - * - * Copyright Nodalink, EURL. 2014 - * - * Authors: - * BenoƮt Canet <benoit.canet@nodalink.com> - * - * This work is licensed under the terms of the GNU LGPL, version 2 or later. - * See the COPYING.LIB file in the top-level directory. - */ - -#include "qemu/osdep.h" -#include <glib.h> - -#include "qemu/timed-average.h" - -/* This is the clock for QEMU_CLOCK_VIRTUAL */ -static int64_t my_clock_value; - -int64_t cpu_get_clock(void) -{ - return my_clock_value; -} - -static void account(TimedAverage *ta) -{ - timed_average_account(ta, 1); - timed_average_account(ta, 5); - timed_average_account(ta, 2); - timed_average_account(ta, 4); - timed_average_account(ta, 3); -} - -static void test_average(void) -{ - TimedAverage ta; - uint64_t result; - int i; - - /* we will compute some average on a period of 1 second */ - timed_average_init(&ta, QEMU_CLOCK_VIRTUAL, NANOSECONDS_PER_SECOND); - - result = timed_average_min(&ta); - g_assert(result == 0); - result = timed_average_avg(&ta); - g_assert(result == 0); - result = timed_average_max(&ta); - g_assert(result == 0); - - for (i = 0; i < 100; i++) { - account(&ta); - result = timed_average_min(&ta); - g_assert(result == 1); - result = timed_average_avg(&ta); - g_assert(result == 3); - result = timed_average_max(&ta); - g_assert(result == 5); - my_clock_value += NANOSECONDS_PER_SECOND / 10; - } - - my_clock_value += NANOSECONDS_PER_SECOND * 100; - - result = timed_average_min(&ta); - g_assert(result == 0); - result = timed_average_avg(&ta); - g_assert(result == 0); - result = timed_average_max(&ta); - g_assert(result == 0); - - for (i = 0; i < 100; i++) { - account(&ta); - result = timed_average_min(&ta); - g_assert(result == 1); - result = timed_average_avg(&ta); - g_assert(result == 3); - result = timed_average_max(&ta); - g_assert(result == 5); - my_clock_value += NANOSECONDS_PER_SECOND / 10; - } -} - -int main(int argc, char **argv) -{ - /* tests in the same order as the header function declarations */ - g_test_init(&argc, &argv, NULL); - g_test_add_func("/timed-average/average", test_average); - return g_test_run(); -} - |