added examples for tests that compare the compiler output with a reference

This commit is contained in:
mrdudz
2022-11-03 17:40:13 +01:00
parent 0eba33ee74
commit 44b2e4f331
7 changed files with 140 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
/*
this is an example (not actually a regression test) that shows how to
make a check that compares the compiler (error-) output with a provided
reference.
to produce a reference file, first make sure your program "works" as intended,
then "make" in this directory once and copy the produced compiler output to
the reference:
$ cp ../../testwrk/ref/custom-reference.g.6502.out custom-reference.cref
and then "make" again to confirm
*/
#include <stdint.h>
#include <stdio.h>
int main(int argc, char* argv[])
{
printf("%02x", 0x42);
/* produce a warning */
return 0;
}