test: Add testcase for #1112
Refs: #1112 Change-Id: I0041366d8dcf035a09fbb59a5dbd5c94cae0d65e
This commit is contained in:
committed by
Masamichi Takagi
parent
c6cc0bf07a
commit
e1f204de4a
29
test/issues/1112/Makefile
Normal file
29
test/issues/1112/Makefile
Normal file
@@ -0,0 +1,29 @@
|
||||
CC = gcc
|
||||
TARGET=CT_001 CT_002 CT_003 CT_004 CT_005
|
||||
|
||||
CPPFLAGS =
|
||||
LDFLAGS =
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
CT_001: CT_001.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
CT_002: CT_002.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
CT_003: CT_003.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
CT_004: CT_004.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
CT_005: CT_005.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test: all
|
||||
@sh ./C1112.sh
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) *.o
|
||||
|
||||
Reference in New Issue
Block a user