Add test cases for #765
Refs: #765 Change-Id: I50d70a15d5d5ce31227cacbed4eccd49b218713b
This commit is contained in:
committed by
Masamichi Takagi
parent
ec99adde4a
commit
1387c9687b
13
test/issues/765/Makefile
Normal file
13
test/issues/765/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
CC=gcc
|
||||
TARGET=C765
|
||||
|
||||
all:: $(TARGET)
|
||||
|
||||
C765: C765.c
|
||||
$(CC) -o C765 C765.c -Wall -g
|
||||
|
||||
test:: $(TARGET)
|
||||
sh ./C765.sh
|
||||
|
||||
clean::
|
||||
rm -f *.o $(TARGET)
|
||||
Reference in New Issue
Block a user