test: Add test programs for #1166

refs: #1166
Change-Id: I9b6dd8628e8a3dcb2281e31f4b8d116e9c7852d8
This commit is contained in:
Tomoki Shirasawa
2019-01-07 16:24:25 +09:00
parent ef9fda23a9
commit 8aaf0f8551
5 changed files with 170 additions and 0 deletions

13
test/issues/1166/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
TARGET = CT1166
all:: $(TARGET)
C1009T01: CT1166.c
$(CC) -g -Wall -o $@ $^
test:: all
sh ./CT1166.sh
clean::
rm -f $(TARGET) *.o