From 2e51c3f9ab3189f0bb61862492e1536b0e5ebd97 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Fri, 17 May 2019 20:15:07 -0400 Subject: [PATCH] Add missing tests to the Makefile. * Makefile.am (FULL_TESTS): Add tests/05-assignment-backtick.sh, tests/10-if-line.sh, tests/10-if-redirect.sh, and tests/20-pipe-sed-cat.sh. --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.am b/Makefile.am index 0f6381b..9e7f63e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -108,6 +108,7 @@ FULL_TESTS = \ tests/04-echo-word-at.sh \ tests/04-echo-word-at-word.sh \ tests/05-assignment.sh \ + tests/05-assignment-backtick.sh \ tests/05-assignment-echo.sh \ tests/05-assignment-empty.sh \ tests/05-assignment-singlequote.sh \ @@ -128,10 +129,12 @@ FULL_TESTS = \ tests/10-if.sh \ tests/10-if-false.sh \ tests/10-if-word-variable.sh \ + tests/10-if-line.sh \ tests/10-if-multiple.sh \ tests/10-if-else.sh \ tests/10-else-multiple.sh \ tests/10-if-elif.sh \ + tests/10-if-redirect.sh \ tests/10-if-test.sh \ tests/10-if-test-false.sh \ tests/10-if-bracket.sh \ @@ -145,6 +148,7 @@ FULL_TESTS = \ tests/20-pipe-exit-0.sh \ tests/20-pipe-exit-1.sh \ tests/20-pipe-sed.sh \ + tests/20-pipe-sed-cat.sh \ tests/20-exec.sh \ tests/30-substitution.sh \ tests/30-substitution-word.sh \