added an x86 test for the ringbuffer

This commit is contained in:
2019-04-10 11:48:04 +02:00
parent d806f057f9
commit 65eb4d6ce2
2 changed files with 51 additions and 0 deletions

18
test/Makefile Normal file
View File

@@ -0,0 +1,18 @@
CC=gcc
CFLAG= -g -O
tests= test_ringbuffer.test
objects= ../ringbuffer.o
all: clean $(tests)
clean:
-rm $(objects)
-rm $(tests)
%.test: %.c $(objects)
$(CC) $(CFLAG) $(objects) -o $@ $<
./$@
%.o: %.c
$(CC) $(CFLAG) -c -o $@ $<