genode/repos/os/src/test/trace_logger/main.cc
Johannes Schlatow 48aa50b97c test/trace_logger: fully automate test
Issue #2735

Co-authored-by: Martin Stein <martin.stein@genode-labs.com>
2018-05-03 15:31:55 +02:00

31 lines
662 B
C++

/*
* \brief Test functionality of the trace logger
* \author Martin Stein
* \date 2017-01-23
*/
/*
* Copyright (C) 2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
/* Genode includes */
#include <base/component.h>
#include <timer_session/connection.h>
#include <trace/timestamp.h>
using namespace Genode;
void Component::construct(Genode::Env &env)
{
Timer::Connection timer(env);
for (unsigned i = 0; ; i++) {
timer.msleep(100);
Thread::trace(String<32>(i, " ", Trace::timestamp()).string());
}
env.parent().exit(0);
}