diff options
author | John Snow <jsnow@redhat.com> | 2015-04-28 15:27:51 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2015-04-28 15:27:51 -0400 |
commit | 72c85e949fd162b039614d588d94393ff3e2dae3 (patch) | |
tree | c858b329c3c75849924a3a5ff9ae1de5d0432b44 /tests/libqos/libqos.c | |
parent | ba4ed39346c1bdbfefd1d781b39009f90822b956 (diff) | |
download | qemu-72c85e949fd162b039614d588d94393ff3e2dae3.tar.gz qemu-72c85e949fd162b039614d588d94393ff3e2dae3.tar.bz2 qemu-72c85e949fd162b039614d588d94393ff3e2dae3.zip |
libqos: add blkdebug_prepare_script
Pull this helper out of ide-test and into libqos,
to be shared with ahci-test.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1426018503-821-6-git-send-email-jsnow@redhat.com
Diffstat (limited to 'tests/libqos/libqos.c')
-rw-r--r-- | tests/libqos/libqos.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/libqos/libqos.c b/tests/libqos/libqos.c index 097091c61e..7e7207856e 100644 --- a/tests/libqos/libqos.c +++ b/tests/libqos/libqos.c @@ -105,3 +105,25 @@ void mkqcow2(const char *file, unsigned size_mb) { return mkimg(file, "qcow2", size_mb); } + +void prepare_blkdebug_script(const char *debug_fn, const char *event) +{ + FILE *debug_file = fopen(debug_fn, "w"); + int ret; + + fprintf(debug_file, "[inject-error]\n"); + fprintf(debug_file, "event = \"%s\"\n", event); + fprintf(debug_file, "errno = \"5\"\n"); + fprintf(debug_file, "state = \"1\"\n"); + fprintf(debug_file, "immediately = \"off\"\n"); + fprintf(debug_file, "once = \"on\"\n"); + + fprintf(debug_file, "[set-state]\n"); + fprintf(debug_file, "event = \"%s\"\n", event); + fprintf(debug_file, "new_state = \"2\"\n"); + fflush(debug_file); + g_assert(!ferror(debug_file)); + + ret = fclose(debug_file); + g_assert(ret == 0); +} |