Line 25... |
Line 25... |
|
|
|
|
# Tests of the instruction set. Broken out into separate tests, to avoid them
|
# Tests of the instruction set. Broken out into separate tests, to avoid them
|
# getting too large. The original instruction set test is still here, but not
|
# getting too large. The original instruction set test is still here, but not
|
# built by default.
|
# built by default.
|
EXTRA_DIST = inst-set.ld
|
EXTRA_DIST = inst-set-test.ld
|
|
|
if BUILD_ALL_TESTS
|
if BUILD_ALL_TESTS
|
INST_SET_TEST_OLD = inst-set-test-old
|
INST_SET_TEST_OLD = inst-set-test-old
|
else
|
else
|
INST_SET_TEST_OLD =
|
INST_SET_TEST_OLD =
|
Line 39... |
Line 39... |
check_LTLIBRARIES = libinst-set-test.la
|
check_LTLIBRARIES = libinst-set-test.la
|
|
|
libinst_set_test_la_SOURCES = inst-set-test.S
|
libinst_set_test_la_SOURCES = inst-set-test.S
|
|
|
# The test programs
|
# The test programs
|
check_PROGRAMS = is-div-test \
|
check_PROGRAMS = is-add-test \
|
|
is-div-test \
|
is-lws-test \
|
is-lws-test \
|
$(INST_SET_TEST_OLD)
|
$(INST_SET_TEST_OLD)
|
|
|
# The new instruction set tests.
|
# The new instruction set tests.
|
is_div_test_SOURCES = is-div-test.S
|
is_add_test_SOURCES = inst-set-test.h \
|
|
is-add-test.S
|
|
is_add_test_LDFLAGS = -T$(srcdir)/inst-set-test.ld
|
|
is_add_test_LDADD = inst-set-test.lo
|
|
|
|
is_div_test_SOURCES = inst-set-test.h \
|
|
is-div-test.S
|
is_div_test_LDFLAGS = -T$(srcdir)/inst-set-test.ld
|
is_div_test_LDFLAGS = -T$(srcdir)/inst-set-test.ld
|
is_div_test_LDADD = inst-set-test.lo
|
is_div_test_LDADD = inst-set-test.lo
|
|
|
is_lws_test_SOURCES = is-lws-test.S
|
is_lws_test_SOURCES = inst-set-test.h \
|
|
is-lws-test.S
|
is_lws_test_LDFLAGS = -T$(srcdir)/inst-set-test.ld
|
is_lws_test_LDFLAGS = -T$(srcdir)/inst-set-test.ld
|
is_lws_test_LDADD = inst-set-test.lo
|
is_lws_test_LDADD = inst-set-test.lo
|
|
|
# The old test which builds with warnings and runs with errors
|
# The old test which builds with warnings and runs with errors
|
inst_set_test_old_SOURCES = inst-set-test-old.c
|
inst_set_test_old_SOURCES = inst-set-test-old.c
|