diff options
author | EuAndreh <eu@euandre.org> | 2021-08-22 13:04:38 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-22 13:04:38 -0300 |
commit | 0df344b03a877d7ae9c171e54168175738ad51a1 (patch) | |
tree | 7d11dd759e8d963dba9ba356fcf3b470432c7bf9 | |
parent | src/tar.c: tarzify(): Return 0 by default for now (diff) | |
download | gistatic-0df344b03a877d7ae9c171e54168175738ad51a1.tar.gz gistatic-0df344b03a877d7ae9c171e54168175738ad51a1.tar.xz |
tests/dev-integration.sh: Fix calls to executable and test
Diffstat (limited to '')
-rwxr-xr-x | tests/dev-integration.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/dev-integration.sh b/tests/dev-integration.sh index b77e579..c920a2d 100755 --- a/tests/dev-integration.sh +++ b/tests/dev-integration.sh @@ -12,9 +12,8 @@ VALGRIND_FLAGS=' --error-exitcode=1 ' -valgrind $VALGRIND_FLAGS ./src/tar.t -valgrind $VALGRIND_FLAGS ./src/gistatic.t -valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \ +valgrind $VALGRIND_FLAGS ./gistatic-tests +valgrind $VALGRIND_FLAGS ./gistatic -o "$(mkdtemp)" \ -u 'https://example.com' tests/resources/repositories/repo-1 -valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \ +valgrind $VALGRIND_FLAGS ./gistatic -o "$(mkdtemp)" \ -i tests/resources/repositories/* |