mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Rework naming of test suite files
This commit is contained in:
parent
a20146777d
commit
ae1394831c
40 changed files with 3 additions and 40 deletions
39
.gitignore
vendored
39
.gitignore
vendored
|
@ -1,41 +1,4 @@
|
|||
*.o
|
||||
+*
|
||||
/lightning.info
|
||||
/tests/test-addr
|
||||
/tests/test-addi
|
||||
/tests/test-addr_d
|
||||
/tests/test-addr_f
|
||||
/tests/test-addx
|
||||
/tests/test-mulr
|
||||
/tests/test-mulr_d
|
||||
/tests/test-mulr_f
|
||||
/tests/test-subr
|
||||
/tests/test-subr_d
|
||||
/tests/test-subr_f
|
||||
/tests/test-subx
|
||||
/tests/test-qmulr
|
||||
/tests/test-qmulr_u
|
||||
/tests/test-divr
|
||||
/tests/test-divr_u
|
||||
/tests/test-divr_d
|
||||
/tests/test-divr_f
|
||||
/tests/test-qdivr
|
||||
/tests/test-qdivr_u
|
||||
/tests/test-remr
|
||||
/tests/test-remr_u
|
||||
/tests/test-andi
|
||||
/tests/test-andr
|
||||
/tests/test-ori
|
||||
/tests/test-orr
|
||||
/tests/test-xori
|
||||
/tests/test-xorr
|
||||
/tests/test-lshi
|
||||
/tests/test-lshr
|
||||
/tests/test-rshi
|
||||
/tests/test-rshr
|
||||
/tests/test-rshr_u
|
||||
/tests/test-rshi_u
|
||||
/tests/test-comr
|
||||
/tests/test-negr
|
||||
/tests/test-negr_d
|
||||
/tests/test-negr_f
|
||||
/tests/test-*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
TESTS=$(sort $(patsubst test-%.c,%,$(wildcard test-*.c)))
|
||||
TESTS=$(sort $(basename $(wildcard *.c)))
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -O0 -g
|
||||
|
@ -16,7 +16,7 @@ check: all
|
|||
jit.o: ../jit.h ../jit/*.c
|
||||
$(CC) $(CFLAGS) $(CPPFLAGS) -flto -I.. -o jit.o -c ../jit/jit.c
|
||||
|
||||
test-%: test-%.c jit.o test.h
|
||||
test-%: %.c jit.o test.h
|
||||
$(CC) $(CFLAGS) $(CPPFLAGS) -flto -I.. -o $@ jit.o $<
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue