[qfcc] Abandon v6 and v6p inout tests

Getting them to work properly with automake proved to be a lot of
trouble, though the bug the v6 inout test was for actually had nothing
to do with inout.
This commit is contained in:
Bill Currie 2024-09-03 21:38:16 +09:00
parent 87f62d1d7c
commit ebb558bef1
2 changed files with 0 additions and 26 deletions

View file

@ -111,10 +111,6 @@ qfcc_compile=\
am__mv = mv -f
SUFFIXES=.o .r .pas
%_v6p.o: %.r
$(call qfcc_compile,-Ctarget=v6p)
%_v6.o: %.r
$(call qfcc_compile,-Ctarget=v6)
.r.o:
$(qfcc_compile)
.pas.o:

View file

@ -38,8 +38,6 @@ test_progs_dat=\
tools/qfcc/test/ifsuper.dat \
tools/qfcc/test/infloop.dat \
tools/qfcc/test/inout.dat \
tools/qfcc/test/inout_v6.dat \
tools/qfcc/test/inout_v6p.dat \
tools/qfcc/test/iterfunc.dat \
tools/qfcc/test/ivar-struct-return.dat \
tools/qfcc/test/link_order.dat \
@ -506,26 +504,6 @@ tools/qfcc/test/inout.run: $(qfcc_test_run_deps)
include $(inout_dep) # am--include-marker
r_depfiles_remade += $(inout_dep)
tools_qfcc_test_inout_v6_dat_SOURCES=tools/qfcc/test/inout.r
inout_v6_obj=$(tools_qfcc_test_inout_v6_dat_SOURCES:.r=_v6.o)
inout_v6_dep=$(call qcautodep,$(tools_qfcc_test_inout_v6_dat_SOURCES,_v6))
tools/qfcc/test/inout_v6.dat$(EXEEXT): $(inout_v6_obj) $(QFCC_DEP)
$(V_QFCCLD)$(QLINK) -Ctarget=v6 -o $@ $(inout_v6_obj)
tools/qfcc/test/inout_v6.run: $(qfcc_test_run_deps)
@TEST_HARNESS_OPTS=--float $(top_srcdir)/tools/qfcc/test/build-run $@
include $(inout_v6_dep) # am--include-marker
r_depfiles_remade += $(inout_v6_dep)
tools_qfcc_test_inout_v6p_dat_SOURCES=tools/qfcc/test/inout.r
inout_v6p_obj=$(tools_qfcc_test_inout_v6p_dat_SOURCES:.r=_v6p.o)
inout_v6p_dep=$(call qcautodep,$(tools_qfcc_test_inout_v6p_dat_SOURCES,_v6p))
tools/qfcc/test/inout_v6p.dat$(EXEEXT): $(inout_v6p_obj) $(QFCC_DEP)
$(V_QFCCLD)$(QLINK) -Ctarget=v6p -o $@ $(inout_v6p_obj)
tools/qfcc/test/inout_v6p.run: $(qfcc_test_run_deps)
@TEST_HARNESS_OPTS=--float $(top_srcdir)/tools/qfcc/test/build-run $@
include $(inout_v6p_dep) # am--include-marker
r_depfiles_remade += $(inout_v6p_dep)
tools_qfcc_test_iterfunc_dat_SOURCES=tools/qfcc/test/iterfunc.r
iterfunc_obj=$(tools_qfcc_test_iterfunc_dat_SOURCES:.r=.o)
iterfunc_dep=$(call qcautodep,$(tools_qfcc_test_iterfunc_dat_SOURCES))