diff options
author | EuAndreh <eu@euandre.org> | 2021-08-06 16:35:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-06 16:35:39 -0300 |
commit | a8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02 (patch) | |
tree | 4a55025dde769d3198a4ab155c5d33514ef9e4db /tests/dev-integration.sh | |
parent | mv aux/workflow/manpages.sh doc/manpages.sh (diff) | |
download | gistatic-a8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02.tar.gz gistatic-a8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02.tar.xz |
tests/dev-integration.sh: Address ShellCheck offenses
Diffstat (limited to '')
-rwxr-xr-x | tests/dev-integration.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/dev-integration.sh b/tests/dev-integration.sh index a82ce14..5f50d31 100755 --- a/tests/dev-integration.sh +++ b/tests/dev-integration.sh @@ -11,6 +11,13 @@ VALGRIND_FLAGS=' --error-exitcode=1 ' +# shellcheck disable=2086 valgrind $VALGRIND_FLAGS ./src/gistatic.t -valgrind $VALGRIND_FLAGS ./src/gistatic -o `mkdtemp` -u 'https://example.com' tests/resources/repositories/repo-1 -valgrind $VALGRIND_FLAGS ./src/gistatic -o `mkdtemp` -i tests/resources/repositories/* + +# shellcheck disable=2086 +valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \ + -u 'https://example.com' tests/resources/repositories/repo-1 + +# shellcheck disable=2086 +valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \ + -i tests/resources/repositories/* |