mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
674af752a2
Moves tests from .travis.yml to bash scripts in tests directory. Adds the test scripts to tests/Makefile.am so that they are included when running make check.
11 lines
261 B
Bash
Executable file
11 lines
261 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Check for external symbols without kvz_ prefix.
|
|
|
|
set -euo pipefail
|
|
|
|
if nm -go --defined-only ../src/.libs/libkvazaar.a | grep -v ' kvz_'; then
|
|
printf '%s\n' 'Only symbols prefixed with "kvz_" should be exported from libkvazaar.'
|
|
false
|
|
fi
|