Files
RedBear-OS/tests/Makefile
T
jD91mZM2 d3e4fa71a5 Implement sys/select.h
I really really wish I could actually test this on redox. All I know is: it compiles
2018-07-29 17:26:54 +02:00

137 lines
2.5 KiB
Makefile

# Binaries that should generate the same output every time
EXPECT_BINS=\
args \
arpainet \
assert \
ctype \
error \
fcntl/create \
fcntl/fcntl \
locale \
math \
select \
setjmp \
signal \
stdio/all \
stdio/freopen \
stdio/fwrite \
stdio/getc_unget \
stdio/printf \
stdio/rename \
stdio/scanf \
stdio/sprintf \
stdlib/a64l \
stdlib/atof \
stdlib/atoi \
stdlib/env \
stdlib/mkostemps \
stdlib/rand \
stdlib/strtol \
stdlib/strtoul \
stdlib/system \
string/mem \
string/strchr \
string/strcspn \
string/strncmp \
string/strpbrk \
string/strrchr \
string/strspn \
string/strstr \
string/strtok \
string/strtok_r \
strings \
time/asctime \
time/gmtime \
time/localtime \
time/mktime \
time/strftime \
time/time \
unistd/brk \
unistd/dup \
unistd/exec \
unistd/fchdir \
unistd/fsync \
unistd/ftruncate \
unistd/getopt \
unistd/isatty \
unistd/pipe \
unistd/rmdir \
unistd/sleep \
unistd/write \
waitpid \
wchar/mbrtowc \
wchar/mbsrtowcs \
wchar/putwchar \
wchar/wcrtomb
# Binaries that may generate varied output
BINS=\
$(EXPECT_BINS) \
dirent \
pwd \
resource/getrusage \
stdlib/alloc \
stdlib/bsearch \
stdlib/mktemp \
time/gettimeofday \
time/times \
unistd/chdir \
unistd/gethostname \
unistd/getid \
unistd/link \
unistd/setid \
unistd/stat
all: $(BINS)
clean:
rm -f $(BINS) *.out
run: $(BINS)
for bin in $^; \
do \
echo "# $${bin} #"; \
"bins/$${bin}" test args || exit $$?; \
done
expected: $(EXPECT_BINS)
rm -rf expected
mkdir -p expected
for bin in $^; \
do \
echo "# $${bin} #"; \
mkdir -p expected/`dirname $${bin}`; \
"bins/$${bin}" test args > "expected/$${bin}.stdout" 2> "expected/$${bin}.stderr" || exit $$?; \
done
verify: $(EXPECT_BINS)
rm -rf gen
mkdir -p gen
for bin in $^; \
do \
echo "# $${bin} #"; \
mkdir -p gen/`dirname $${bin}`; \
"bins/$${bin}" test args > "gen/$${bin}.stdout" 2> "gen/$${bin}.stderr" || exit $$?; \
diff -u "gen/$${bin}.stdout" "expected/$${bin}.stdout" || exit $$?; \
diff -u "gen/$${bin}.stderr" "expected/$${bin}.stderr" || exit $$?; \
done
CFLAGS=\
-nostdinc \
-nostdlib \
-I ../include \
-I ../target/include \
-I ../target/openlibm/include \
-I ../target/openlibm/src \
HEADLIBS=\
../target/debug/crt0.o
TAILLIBS=\
../target/debug/libc.a \
../target/openlibm/libopenlibm.a
%: %.c $(HEADLIBS) $(TAILLIBS)
mkdir -p "bins/$$(dirname "$@")"
gcc -fno-builtin -fno-stack-protector -Wall -g $(CFLAGS) $(HEADLIBS) "$<" $(TAILLIBS) -o "bins/$@"