7012b69184
Test for invalid, integer overflow, and inexact. Test for proper result, modulo 2**64. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230527141910.1885950-3-richard.henderson@linaro.org>
19 lines
408 B
Makefile
19 lines
408 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# Alpha specific tweaks
|
|
|
|
ALPHA_SRC=$(SRC_PATH)/tests/tcg/alpha
|
|
VPATH+=$(ALPHA_SRC)
|
|
|
|
ALPHA_TESTS=hello-alpha test-cond test-cmov test-ovf test-cvttq
|
|
TESTS+=$(ALPHA_TESTS)
|
|
|
|
test-cmov: EXTRA_CFLAGS=-DTEST_CMOV
|
|
test-cmov: test-cond.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
run-test-cmov: test-cmov
|
|
|
|
# On Alpha Linux only supports 8k pages
|
|
EXTRA_RUNS+=run-test-mmap-8192
|