aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/set_flavor_property
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2018-06-26 18:13:35 +0100
committerEmma Foley <emma.l.foley@intel.com>2018-06-26 18:18:39 +0100
commit6b576474f57ddd42065d20ba566dfcd9ed5d2cad (patch)
tree4c0f47a29748a3ef23c124067a6515fc8a52243c /ansible/roles/set_flavor_property
parent43b447c3fc3be4947545d1e16098424bef7be171 (diff)
Resolve NameError in test_utils.py
The import of the yardstick module was removed from test_util.py, which relied on this module location for a file name in test_import_modules_from_package_no_mod and test_import_modules_from_package. JIRA: YARDSTICK-1258 Change-Id: I754dbadfb8d788236f354e9a0c1a61ad6c4abf70 Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'ansible/roles/set_flavor_property')
0 files changed, 0 insertions, 0 deletions
highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * replay.c
 *
 * Copyright (c) 2010-2015 Institute for System Programming
 *                         of the Russian Academy of Sciences.
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

#include "qemu/osdep.h"
#include "sysemu/replay.h"

bool replay_exception(void)
{
    return true;
}

bool replay_has_exception(void)
{
    return false;
}

bool replay_interrupt(void)
{
    return true;
}

bool replay_has_interrupt(void)
{
    return false;
}