mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 17:01:11 +00:00
[qfcc] Only compile in the compile-only tests
The source tree is made read-only by `make distcheck`, so writing temporary files to the source directory is a no-no (really, it's a bit of a bug in qfcc, as per #51).
This commit is contained in:
parent
ac625830c8
commit
55705dac83
2 changed files with 4 additions and 3 deletions
|
@ -346,10 +346,10 @@ tools/qfcc/test/double-float-compare.run$(EXEEXT): tools/qfcc/test/double-float-
|
|||
@$(top_srcdir)/tools/qfcc/test/build-compile-fail-run $@ $(QFCC) $(QCFLAGS) $<
|
||||
|
||||
tools/qfcc/test/typeredef1.run$(EXEEXT): tools/qfcc/test/typeredef1.r $(qfcc_comp_run_deps)
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-pass-run $@ $(QFCC) $(QCFLAGS) $<
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-pass-run $@ $(QFCC) $(QCFLAGS) -c $<
|
||||
|
||||
tools/qfcc/test/typeredef2.run$(EXEEXT): tools/qfcc/test/typeredef2.r $(qfcc_comp_run_deps)
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-pass-run $@ $(QFCC) $(QCFLAGS) $<
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-pass-run $@ $(QFCC) $(QCFLAGS) -c $<
|
||||
|
||||
tools_qfcc_test_enum_dat_SOURCES=tools/qfcc/test/enum.r
|
||||
enum_obj=$(tools_qfcc_test_enum_dat_SOURCES:.r=.o)
|
||||
|
|
|
@ -6,10 +6,11 @@ shift
|
|||
cat > $script <<EOF
|
||||
#! /bin/sh
|
||||
# compile must pass
|
||||
$@
|
||||
$@ -o $script.qfo
|
||||
if test \$? != 0; then
|
||||
exit 1
|
||||
fi
|
||||
rm -f $script.qfo
|
||||
exit 0
|
||||
EOF
|
||||
chmod +x $script
|
||||
|
|
Loading…
Reference in a new issue