diff options
author | Rob Austein <sra@hactrn.net> | 2015-12-23 01:59:40 -0500 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-12-23 01:59:40 -0500 |
commit | 8c427a7b537a35d6685fb8a95e9b64732d6b4c49 (patch) | |
tree | 1306377c7a9a0b4feecc3a04c32a0c5462b662fe /tests/GNUmakefile | |
parent | c4c6c5e349916c3592fa361c8bda045d67f182d7 (diff) |
First round of fixes for new ASN.1 and test code.
Diffstat (limited to 'tests/GNUmakefile')
-rw-r--r-- | tests/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/GNUmakefile b/tests/GNUmakefile index 50b33a1..ba515f7 100644 --- a/tests/GNUmakefile +++ b/tests/GNUmakefile @@ -36,7 +36,7 @@ CFLAGS = -g3 -Wall -fPIC -std=c99 -I.. all: ${BIN} test: all - for i in ${BIN}; do ./$$i; done + for i in ${BIN}; do (set -x; ./$$i); done clean: rm -f *.o ${BIN} |