port: Use sig_t instead of sighandler_t
[babeltrace.git] / tests / cli / test_trace_copy.in
CommitLineData
5177c351
JD
1#!/bin/bash
2#
3# Copyright (C) - 2017 Julien Desfossez <jdesfossez@efficios.com>
4#
5# This program is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License, version 2 only, as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12# more details.
13#
14# You should have received a copy of the GNU General Public License along with
15# this program; if not, write to the Free Software Foundation, Inc., 51
16# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
3389bd41 18. "@abs_top_builddir@/tests/utils/common.sh"
5177c351 19
95a4b348
MJ
20clean_tmp() {
21 rm -rf "${out_path}" "${text_output1}" "${text_output2}"
22}
23
bbff0ab4 24SUCCESS_TRACES=(${BT_CTF_TRACES_PATH}/succeed/*)
5177c351 25
c22ffa09
JD
26# -2 because there is an empty trace that we skip
27NUM_TESTS=$((${#SUCCESS_TRACES[@]} * 3 - 2))
5177c351
JD
28
29plan_tests $NUM_TESTS
30
03f007c8
MJ
31for path in "${SUCCESS_TRACES[@]}"; do
32 out_path="$(mktemp -d)"
33 text_output1="$(mktemp)"
34 text_output2="$(mktemp)"
35 trace="$(basename "${path}")"
95a4b348 36 sort_cmd="cat" # by default do not sort the trace
03f007c8 37
95a4b348 38 "${BT_BIN}" --no-delta "${path}" 2>/dev/null >"${text_output1}"
03f007c8
MJ
39 ret=$?
40 cnt="$(wc -l < "${text_output1}")"
0ae93e87 41 if test "$ret" == 0 && test $cnt == 0; then
95a4b348
MJ
42 pass "Empty trace ${trace}, nothing to copy"
43 clean_tmp
c22ffa09
JD
44 continue
45 fi
5177c351 46
95a4b348
MJ
47 # If the trace has a timestamp (starts with [), check if there are
48 # duplicate timestamps in the output.
49 # If there are, we have to sort the text output to make sure it is
50 # always the same.
51 head -1 "${text_output1}" | @GREP@ "^\[" >/dev/null
52 if test $? = 0; then
53 uniq_ts_cnt="$(@AWK@ '{ print $1 }' < "${text_output1}" | sort | uniq | wc -l)"
54 # Extract only the timestamp columns and compare the number of
55 # unique lines with the total number of lines to see if there
56 # are duplicate timestamps.
0ae93e87 57 if test $cnt != $uniq_ts_cnt; then
95a4b348
MJ
58 diag "Trace with non unique timestamps, sorting the output"
59 sort_cmd="sort"
60 tmp="$(mktemp)"
61 sort "${text_output1}" > "$tmp"
62 rm "${text_output1}"
63 text_output1="$tmp"
64 fi
65 fi
66
03f007c8 67 "${BT_BIN}" "${path}" --component sink.ctf.fs --path "${out_path}" >/dev/null 2>&1
5177c351
JD
68 ok $? "Copy trace ${trace} with ctf-fs sink"
69
03f007c8 70 "${BT_BIN}" "${out_path}" >/dev/null 2>&1
95a4b348 71 ok $? "Read the new trace in ${out_path}"
5177c351 72
95a4b348 73 "${BT_BIN}" --no-delta "${out_path}" 2>/dev/null | $sort_cmd >"${text_output2}"
03f007c8 74 cnt=$(diff "${text_output1}" "${text_output2}" | wc -l)
0ae93e87 75 test $cnt == 0
c22ffa09 76 ok $? "Exact same content between the two traces"
5177c351 77
95a4b348 78 clean_tmp
5177c351 79done
This page took 0.036534 seconds and 4 git commands to generate.