Fix tests Makefiles on Windows

Compiled tcc.exe location is under $(top_srcdir)/win32
This commit is contained in:
Vlad Vissoultchev
2016-03-14 18:11:49 +02:00
parent 5175b1ad87
commit fa2472c172
3 changed files with 14 additions and 2 deletions

View File

@ -19,6 +19,10 @@ endif
TCC = $(TOP)/tcc $(TCCFLAGS)
ifdef CONFIG_WIN32
TCC = $(top_srcdir)/win32/tcc $(TCCFLAGS)
endif
TESTS = $(patsubst %.c,%.test,$(wildcard *.c))
# 34_array_assignment.test -- array assignment is not in C standard