summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am.inc6
-rwxr-xr-xtests/test-basic.sh3
2 files changed, 8 insertions, 1 deletions
diff --git a/tests/Makefile.am.inc b/tests/Makefile.am.inc
index 5c9b48f..4a89138 100644
--- a/tests/Makefile.am.inc
+++ b/tests/Makefile.am.inc
@@ -41,8 +41,14 @@ install-data-hook:
check_PROGRAMS += $(TEST_PROGS)
+tests/package_version.txt: Makefile
+ echo $(PACKAGE_VERSION) > tests/package_version.txt
+
+tests/test-basic.sh: tests/package_version.txt
+
installed_test_SCRIPTS += \
buildutil/tap-driver.sh \
+ tests/package_version.txt \
tests/make-test-app.sh \
tests/make-test-runtime.sh \
tests/make-test-bundles.sh \
diff --git a/tests/test-basic.sh b/tests/test-basic.sh
index f2add78..f649dff 100755
--- a/tests/test-basic.sh
+++ b/tests/test-basic.sh
@@ -25,7 +25,8 @@ echo "1..2"
${XDG_APP} --version > version_out
-assert_file_has_content version_out '^xdg-app '
+VERSION=`cat $(dirname $0)/package_version.txt`
+assert_file_has_content version_out "^xdg-app $VERSION$"
echo "ok version"