summaryrefslogtreecommitdiff
path: root/tests/test-symbols.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2017-05-19 11:00:34 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2017-05-19 15:02:00 +0000
commit84d6267b613b2c71dd21563e62c39797aa498699 (patch)
tree61d7b7a2b9d610db77791f3c9e5381f749b8739e /tests/test-symbols.sh
parent1feda846efe1b4848ebfb00a2a3a9d625b4d7edc (diff)
downloadostree-84d6267b613b2c71dd21563e62c39797aa498699.tar.gz
tests/test-symbols.sh: Fix with --enable-experimental-api
We missed a `--no-filename` for grep with the documentation. Closes: #875 Approved by: cgwalters
Diffstat (limited to 'tests/test-symbols.sh')
-rwxr-xr-xtests/test-symbols.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-symbols.sh b/tests/test-symbols.sh
index 3ee018b0..54f469fb 100755
--- a/tests/test-symbols.sh
+++ b/tests/test-symbols.sh
@@ -39,7 +39,7 @@ echo "ok exports"
grep -E -v '(ostree_cmd__private__)|(ostree_fetcher_config_flags_get_type)' found-symbols.txt > expected-documented.txt
echo "Verifying all public symbols are documented:"
-grep '^ostree_' ${G_TEST_SRCDIR}/apidoc/ostree-sections.txt $experimental_sections |sort -u > found-documented.txt
+grep --no-filename '^ostree_' ${G_TEST_SRCDIR}/apidoc/ostree-sections.txt $experimental_sections |sort -u > found-documented.txt
diff -u expected-documented.txt found-documented.txt
echo 'ok documented symbols'