[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:
Bill Currie 2024-10-07 09:29:14 +09:00
parent 0cf8e7cb41
commit 0bc58246b1
2 changed files with 15 additions and 1 deletions

View file

@ -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 $<

View file

@ -0,0 +1,10 @@
float func (int x)
{
float x = 0;
return x;
}
int main ()
{
return 1; // test fails if compile succeeds
}