2016-03-15 15:30:20 +01:00
|
|
|
/*
|
|
|
|
* logging unit-tests
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Linaro Ltd.
|
|
|
|
*
|
|
|
|
* Author: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2016-06-15 19:27:15 +02:00
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "qemu/log.h"
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
static void test_parse_range(void)
|
|
|
|
{
|
2016-06-15 19:27:15 +02:00
|
|
|
Error *err = NULL;
|
|
|
|
|
|
|
|
qemu_set_dfilter_ranges("0x1000+0x100", &error_abort);
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0xfff));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1000));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1001));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x10ff));
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0x1100));
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
qemu_set_dfilter_ranges("0x1000-0x100", &error_abort);
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0x1001));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1000));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x0f01));
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0x0f00));
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
qemu_set_dfilter_ranges("0x1000..0x1100", &error_abort);
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0xfff));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1000));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1100));
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0x1101));
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
qemu_set_dfilter_ranges("0x1000..0x1000", &error_abort);
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0xfff));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x1000));
|
|
|
|
g_assert_false(qemu_log_in_addr_range(0x1001));
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
qemu_set_dfilter_ranges("0x1000+0x100,0x2100-0x100,0x3000..0x3100",
|
|
|
|
&error_abort);
|
2016-03-15 15:30:20 +01:00
|
|
|
g_assert(qemu_log_in_addr_range(0x1050));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x2050));
|
|
|
|
g_assert(qemu_log_in_addr_range(0x3050));
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
qemu_set_dfilter_ranges("0x1000+onehundred", &err);
|
|
|
|
error_free_or_abort(&err);
|
|
|
|
|
|
|
|
qemu_set_dfilter_ranges("0x1000+0", &err);
|
|
|
|
error_free_or_abort(&err);
|
2016-03-15 15:30:20 +01:00
|
|
|
}
|
2016-03-15 15:30:23 +01:00
|
|
|
|
|
|
|
static void test_parse_path(void)
|
|
|
|
{
|
2016-06-15 19:27:16 +02:00
|
|
|
Error *err = NULL;
|
|
|
|
|
|
|
|
qemu_set_log_filename("/tmp/qemu.log", &error_abort);
|
|
|
|
qemu_set_log_filename("/tmp/qemu-%d.log", &error_abort);
|
|
|
|
qemu_set_log_filename("/tmp/qemu.log.%d", &error_abort);
|
|
|
|
|
|
|
|
qemu_set_log_filename("/tmp/qemu-%d%d.log", &err);
|
|
|
|
error_free_or_abort(&err);
|
2016-03-15 15:30:23 +01:00
|
|
|
}
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
|
|
|
|
g_test_add_func("/logging/parse_range", test_parse_range);
|
2016-03-15 15:30:23 +01:00
|
|
|
g_test_add_func("/logging/parse_path", test_parse_path);
|
2016-03-15 15:30:20 +01:00
|
|
|
|
|
|
|
return g_test_run();
|
|
|
|
}
|