From 2b5db0c092f273268582e01fd726c54bf5a74ecf Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Thu, 20 Aug 2015 16:35:15 +0200 Subject: [PATCH] validate: Put the GstValidate testsuite version in the launcher config This way testsuite implementation can have the information --- validate/configure.ac | 8 ++++++++ validate/launcher/config.py.in | 1 + 2 files changed, 9 insertions(+) diff --git a/validate/configure.ac b/validate/configure.ac index 2db82baa8c..1659ac1c1c 100644 --- a/validate/configure.ac +++ b/validate/configure.ac @@ -5,6 +5,14 @@ dnl releases only do Wall, cvs and prerelease does Werror too AC_INIT(Gst-Validate, 1.5.2.1, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gst-validate) + +dnl This is the version of the testsuite to use with the current version +dnl of gst-validate. During development it should be "master" +dnl during release cycle it should be the release version (1.6 in the 1.6 +dnl branch) +GST_VALIDATE_TESTSUITE_VERSION="master" +AS_AC_EXPAND(GST_VALIDATE_TESTSUITE_VERSION, $GST_VALIDATE_TESTSUITE_VERSION) + AG_GST_INIT dnl initialize automake diff --git a/validate/launcher/config.py.in b/validate/launcher/config.py.in index 5773522328..5739c6e387 100644 --- a/validate/launcher/config.py.in +++ b/validate/launcher/config.py.in @@ -19,3 +19,4 @@ LIBDIR = '@LIBDIR@' DATADIR = '@DATADIR@' +GST_VALIDATE_TESTSUITE_VERSION = '@GST_VALIDATE_TESTSUITE_VERSION@'