mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[qfcc] Add a passing test for shadowed params
It's currently passing for Ruamoko, but glsl doesn't catch shadowed params. There's a bit of a conflict and I want to make sure I don't lose the checking.
This commit is contained in:
parent
0cf8e7cb41
commit
0bc58246b1
2 changed files with 15 additions and 1 deletions
|
@ -110,7 +110,8 @@ test_build_errors=\
|
|||
tools/qfcc/test/double-demote-int-ginit.r \
|
||||
tools/qfcc/test/double-demote-int-linit.r \
|
||||
tools/qfcc/test/double-int-compare.r \
|
||||
tools/qfcc/test/double-float-compare.r
|
||||
tools/qfcc/test/double-float-compare.r \
|
||||
tools/qfcc/test/shadow-param.r
|
||||
|
||||
fail_build_errors=
|
||||
|
||||
|
@ -385,6 +386,9 @@ tools/qfcc/test/double-int-compare.run$(EXEEXT): tools/qfcc/test/double-int-comp
|
|||
tools/qfcc/test/double-float-compare.run$(EXEEXT): tools/qfcc/test/double-float-compare.r $(qfcc_fail_run_deps)
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-fail-run $@ $(QFCC) $(QCFLAGS) $<
|
||||
|
||||
tools/qfcc/test/shadow-param.run$(EXEEXT): tools/qfcc/test/shadow-param.r $(qfcc_fail_run_deps)
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-fail-run $@ $(QFCC) $(QCFLAGS) $<
|
||||
|
||||
tools/qfcc/test/motor.run$(EXEEXT): tools/qfcc/test/motor.r $(qfcc_comp_run_deps)
|
||||
@$(top_srcdir)/tools/qfcc/test/build-compile-pass-run $@ $(QFCC) $(QCFLAGS) -c $<
|
||||
|
||||
|
|
10
tools/qfcc/test/shadow-param.r
Normal file
10
tools/qfcc/test/shadow-param.r
Normal file
|
@ -0,0 +1,10 @@
|
|||
float func (int x)
|
||||
{
|
||||
float x = 0;
|
||||
return x;
|
||||
}
|
||||
|
||||
int main ()
|
||||
{
|
||||
return 1; // test fails if compile succeeds
|
||||
}
|
Loading…
Reference in a new issue