tests: Rework test suite
[babeltrace.git] / tests / plugins / src.ctf.fs / succeed / test_succeed.in
diff --git a/tests/plugins/src.ctf.fs/succeed/test_succeed.in b/tests/plugins/src.ctf.fs/succeed/test_succeed.in
deleted file mode 100644 (file)
index a84b80b..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2019 Philippe Proulx <pproulx@efficios.com>
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; only version 2
-# of the License.
-#
-# 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-# This test validates that a `src.ctf.fs` component successfully reads
-# specific CTF traces and creates the expected messages.
-#
-# Such CTF traces to open either exist (in `tests/ctf-traces/succeed`)
-# or are generated by this test using local trace generators.
-
-. "@abs_top_builddir@/tests/utils/diff.sh"
-
-this_dir_relative="tests/plugins/src.ctf.fs/succeed"
-this_dir_src="$BT_SRC_PATH/tests/data/plugins/src.ctf.fs/succeed"
-this_dir_build="$BT_BUILD_PATH/$this_dir_relative"
-succeed_trace_dir="$BT_CTF_TRACES_PATH/succeed"
-
-test_ctf_common_details_args="-p with-trace-name=no,with-stream-name=no"
-
-test_ctf_gen_single() {
-       name="$1"
-
-       diag "Generating trace '$name'"
-       bt_diff_details_ctf_gen_single "$this_dir_build/gen-trace-$name" \
-               "$this_dir_src/trace-$name.expect" \
-               "$test_ctf_common_details_args -p with-uuid=no"
-       ok $? "Generated trace '$name' gives the expected output"
-}
-
-test_ctf_single() {
-       name="$1"
-
-       bt_diff_details_ctf_single "$succeed_trace_dir/$name" \
-               "$this_dir_src/trace-$name.expect" "$test_ctf_common_details_args"
-       ok $? "Trace '$name' gives the expected output"
-}
-
-plan_tests 2
-
-test_ctf_gen_single simple
-test_ctf_single smalltrace
This page took 0.023142 seconds and 4 git commands to generate.