From patchwork Mon Aug 10 11:20:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 11707325 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 18F5A109A for ; Mon, 10 Aug 2020 11:22:51 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id F32D0206E9 for ; Mon, 10 Aug 2020 11:22:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org F32D0206E9 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=eu.citrix.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k55rg-0008Ih-8U; Mon, 10 Aug 2020 11:21:16 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k55re-0008Fj-VB for xen-devel@lists.xenproject.org; Mon, 10 Aug 2020 11:21:14 +0000 X-Inumbo-ID: d25bf53b-c4b2-46da-8e49-dcfd55ead790 Received: from chiark.greenend.org.uk (unknown [2001:ba8:1e3::]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id d25bf53b-c4b2-46da-8e49-dcfd55ead790; Mon, 10 Aug 2020 11:20:54 +0000 (UTC) Received: from [172.18.45.5] (helo=zealot.relativity.greenend.org.uk) by chiark.greenend.org.uk (Debian Exim 4.84_2 #1) with esmtp (return-path ijackson@chiark.greenend.org.uk) id 1k55rK-0003aJ-2L; Mon, 10 Aug 2020 12:20:54 +0100 From: Ian Jackson To: xen-devel@lists.xenproject.org Subject: [OSSTEST PATCH 5/6] timing traces: Executive: Provide processing timestamp facilities Date: Mon, 10 Aug 2020 12:20:46 +0100 Message-Id: <20200810112047.30285-5-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200810112047.30285-1-ian.jackson@eu.citrix.com> References: <20200810112047.30285-1-ian.jackson@eu.citrix.com> MIME-Version: 1.0 X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Ian Jackson Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Nothing uses these yet. Signed-off-by: Ian Jackson --- Osstest/Executive.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index c46a979d..1e94b282 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -51,6 +51,7 @@ BEGIN { report_run_getinfo report_altcolour report_altchangecolour opendb_tests report_blessingscond report_find_push_age_info + log_stderr_timestamped tcpconnect_queuedaemon plan_search manual_allocation_base_jobinfo alloc_resources alloc_resources_rollback_begin_work @@ -293,11 +294,23 @@ sub restrictflight_arg ($) { $restrictflight_cond .= " AND flights.flight != $_" foreach split /,/, $1; return 1; + } elsif ($arg =~ m/^--report-processing-start-time$/) { + # This functionality is wanted by all the callers of + # restrictflight_arg and is here for convenience, rather than + # out of principle. + log_stderr_timestamped("starting..."); + return 1; } else { return 0; } } +sub log_stderr_timestamped ($) { + my $us = $0; + $us =~ s{.*/}{}; + print STDERR (show_abs_time time)." $us: @_\n"; +} + sub restrictflight_cond () { return "($restrictflight_cond)"; }