Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
From: nathan_lynch@mentor.com (Nathan Lynch)
Subject: [lttng-dev] [PATCH] babeltrace: add test for babeltrace --list
Date: Thu, 18 Aug 2016 12:10:28 -0500	[thread overview]
Message-ID: <1471540228-24555-1-git-send-email-nathan_lynch@mentor.com> (raw)

This test simply checks the converter's list of supported formats.

Signed-off-by: Nathan Lynch <nathan_lynch at mentor.com>
---

Currently I expect this to fail for babeltrace configured with
--disable-shared; see https://bugs.lttng.org/issues/1055

 .gitignore                |  1 +
 configure.ac              |  1 +
 tests/Makefile.am         |  1 +
 tests/bin/Makefile.am     |  2 +-
 tests/bin/test_formats.in | 21 +++++++++++++++++++++
 5 files changed, 25 insertions(+), 1 deletion(-)
 create mode 100644 tests/bin/test_formats.in

diff --git a/.gitignore b/.gitignore
index c290479b1d88..d20c38e30238 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
 /tests/bin/intersection/test_intersection
 /tests/bin/intersection/bt_python_helper.py
 /tests/bin/test_packet_seq_num
+/tests/bin/test_formats
 /tests/lib/test_bitfield
 /tests/lib/test_seek
 /tests/lib/test_ctf_writer
diff --git a/configure.ac b/configure.ac
index 39973296ba1d..a3c20d67a244 100644
--- a/configure.ac
+++ b/configure.ac
@@ -381,6 +381,7 @@ AC_CONFIG_FILES([tests/bin/test_trace_read], [chmod +x tests/bin/test_trace_read
 AC_CONFIG_FILES([tests/bin/intersection/test_intersection], [chmod +x tests/bin/intersection/test_intersection])
 AC_CONFIG_FILES([tests/bin/intersection/bt_python_helper.py])
 AC_CONFIG_FILES([tests/bin/test_packet_seq_num], [chmod +x tests/bin/test_packet_seq_num])
+AC_CONFIG_FILES([tests/bin/test_formats], [chmod +x tests/bin/test_formats])
 
 AC_OUTPUT
 
diff --git a/tests/Makefile.am b/tests/Makefile.am
index a51531821dc0..eda9f2351310 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -7,6 +7,7 @@ LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
 TESTS = bin/test_trace_read \
 	bin/test_trace_read \
 	bin/test_packet_seq_num \
+	bin/test_formats \
 	bin/intersection/test_intersection \
 	lib/test_bitfield \
 	lib/test_seek_empty_packet \
diff --git a/tests/bin/Makefile.am b/tests/bin/Makefile.am
index 2d008ed460ec..57b90ea72d80 100644
--- a/tests/bin/Makefile.am
+++ b/tests/bin/Makefile.am
@@ -1,2 +1,2 @@
 SUBDIRS = intersection
-check_SCRIPTS = test_trace_read test_packet_seq_num
+check_SCRIPTS = test_trace_read test_packet_seq_num test_formats
diff --git a/tests/bin/test_formats.in b/tests/bin/test_formats.in
new file mode 100644
index 000000000000..5be96ba039f4
--- /dev/null
+++ b/tests/bin/test_formats.in
@@ -0,0 +1,21 @@
+#!/bin/bash
+#
+# 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.
+
+CURDIR=$(dirname $0)
+TESTDIR=$CURDIR/..
+
+BABELTRACE_BIN=$CURDIR/../../converter/babeltrace
+
+source $TESTDIR/utils/tap/tap.sh
+
+expected_formats=(text lttng-live dummy ctf-metadata ctf)
+
+plan_tests ${#expected_formats[*]}
+
+for format in "${expected_formats[@]}"; do
+    "$BABELTRACE_BIN" --list | grep -qw "$format"
+    ok $? "Detect support for format \"$format\""
+done
-- 
2.5.5



                 reply	other threads:[~2016-08-18 17:10 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1471540228-24555-1-git-send-email-nathan_lynch@mentor.com \
    --to=nathan_lynch@mentor.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox