#!/bin/bash # # Copyright (C) - 2017 Julien Desfossez # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License, version 2 only, as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . "@abs_top_builddir@/tests/utils/common.sh" TRACE_PATH="${BT_CTF_TRACES}/succeed/wk-heartbeat-u/" NUM_TESTS=44 plan_tests $NUM_TESTS tmp_out=$(mktemp) "${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \ "${TRACE_PATH}" >/dev/null 2>&1 ok $? "Read a trace with the trimmer enabled (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin (GMT relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 18 ok $? "Received ${cnt}/18 events (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --end 17:48:17.588680018 "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end (GMT relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 9 ok $? "Received ${cnt}/9 events (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \ "${TRACE_PATH}" 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin and --end (GMT relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 7 ok $? "Received ${cnt}/7 events (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --begin 18:48:17.587029529 "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin out of range (GMT relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when begin is out of range (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --end 16:48:17.588680018 "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end out of range (GMT relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when end is out of range (GMT relative timestamps)" "${BT_BIN}" --clock-gmt --begin "2012-10-29 17:48:17.587029529" --end "2012-10-29 17:48:17.588680018" \ "${TRACE_PATH}" >/dev/null 2>&1 ok $? "Read a trace with the trimmer enabled (GMT absolute timestamps)" "${BT_BIN}" --clock-gmt --begin "2012-10-29 17:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin (GMT absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 18 ok $? "Received ${cnt}/18 events (GMT absolute timestamps)" "${BT_BIN}" --clock-gmt --end "2012-10-29 17:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end (GMT absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 9 ok $? "Received ${cnt}/9 events (GMT absolute timestamps)" "${BT_BIN}" --clock-gmt --begin "2012-10-29 17:48:17.587029529" --end "2012-10-29 17:48:17.588680018" \ "${TRACE_PATH}" 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin and --end (GMT absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 7 ok $? "Received ${cnt}/7 events (GMT absolute timestamps)" "${BT_BIN}" --clock-gmt --begin "2012-10-29 18:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin out of range (GMT absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when begin is out of range (GMT absolute timestamps)" "${BT_BIN}" --clock-gmt --end "2012-10-29 16:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end out of range (GMT absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when end is out of range (GMT absolute timestamps)" export TZ=EST "${BT_BIN}" --begin "12:48:17.587029529" --end "12:48:17.588680018" \ "${TRACE_PATH}" >/dev/null 2>&1 ok $? "Read a trace with the trimmer enabled (EST relative timestamps)" "${BT_BIN}" --begin "12:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin (EST relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 18 ok $? "Received ${cnt}/18 events (EST relative timestamps)" "${BT_BIN}" --end "12:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end (EST relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 9 ok $? "Received ${cnt}/9 events (EST relative timestamps)" "${BT_BIN}" --begin "12:48:17.587029529" --end "12:48:17.588680018" \ "${TRACE_PATH}" 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin and --end (EST relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 7 ok $? "Received ${cnt}/7 events (EST relative timestamps)" "${BT_BIN}" --begin "13:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin out of range (EST relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when begin is out of range (EST relative timestamps)" "${BT_BIN}" --end "11:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end out of range (EST relative timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when end is out of range (EST relative timestamps)" "${BT_BIN}" --begin "2012-10-29 12:48:17.587029529" --end "2012-10-29 12:48:17.588680018" \ "${TRACE_PATH}" >/dev/null 2>&1 ok $? "Read a trace with the trimmer enabled (EST absolute timestamps)" "${BT_BIN}" --begin "2012-10-29 12:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin (EST absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 18 ok $? "Received ${cnt}/18 events (EST absolute timestamps)" "${BT_BIN}" --end "2012-10-29 12:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end (EST absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 9 ok $? "Received ${cnt}/9 events (EST absolute timestamps)" "${BT_BIN}" --begin "2012-10-29 12:48:17.587029529" --end "2012-10-29 12:48:17.588680018" \ "${TRACE_PATH}" 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin and --end (EST absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 7 ok $? "Received ${cnt}/7 events (EST absolute timestamps)" "${BT_BIN}" --begin "2012-10-29 13:48:17.587029529" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --begin out of range (EST absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when begin is out of range (EST absolute timestamps)" "${BT_BIN}" --end "2012-10-29 11:48:17.588680018" "${TRACE_PATH}" \ 2>/dev/null >"${tmp_out}" ok $? "Ran successfully with --end out of range (EST absolute timestamps)" cnt=$(wc -l < "${tmp_out}") test $cnt == 0 ok $? "No events when end is out of range (EST absolute timestamps)" rm "${tmp_out}"