Moved #1098 bug tests from test/misc to test/err as they are fixed now.
This commit is contained in:
@@ -87,24 +87,6 @@ $(WORKDIR)/bug264.$1.$2.prg: bug264.c | $(WORKDIR)
|
||||
$(if $(QUIET),echo misc/bug264.$1.$2.prg)
|
||||
$(CL65) -t sim$2 -$1 -o $$@ $$< $(NULLERR)
|
||||
|
||||
# this should fail to compile, because there are errors in the code
|
||||
$(WORKDIR)/bug1098.$1.$2.prg: bug1098.c | $(WORKDIR)
|
||||
@echo "FIXME: " $$@ "compiles but should give an error."
|
||||
$(if $(QUIET),echo misc/bug1098.$1.$2.prg)
|
||||
$(CL65) -t sim$2 -$1 -o $$@ $$< $(NULLERR)
|
||||
|
||||
# this should fail to compile, because there are errors in the code
|
||||
$(WORKDIR)/bug1098a.$1.$2.prg: bug1098a.c | $(WORKDIR)
|
||||
@echo "FIXME: " $$@ "compiles but should give an error."
|
||||
$(if $(QUIET),echo misc/bug1098a.$1.$2.prg)
|
||||
$(CL65) -t sim$2 -$1 -o $$@ $$< $(NULLERR)
|
||||
|
||||
# this should fail to compile, because there are errors in the code
|
||||
$(WORKDIR)/bug1098b.$1.$2.prg: bug1098b.c | $(WORKDIR)
|
||||
@echo "FIXME: " $$@ "compiles but should give an error."
|
||||
$(if $(QUIET),echo misc/bug1098b.$1.$2.prg)
|
||||
$(CL65) -t sim$2 -$1 -o $$@ $$< $(NULLERR)
|
||||
|
||||
# this should fail to compile, because there are errors in the code
|
||||
# instead, the compiler crashes
|
||||
$(WORKDIR)/bug1113.$1.$2.prg: bug1113.c | $(WORKDIR)
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
|
||||
/* bug #1098 Empty enumerator-list */
|
||||
|
||||
/* The C Standard requires that something exists between the braces for
|
||||
* enum, struct, and union. */
|
||||
|
||||
enum {
|
||||
};
|
||||
|
||||
int main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
|
||||
/* bug #1098 Empty enumerator-list */
|
||||
|
||||
/* The C Standard requires that something exists between the braces for
|
||||
* enum, struct, and union. */
|
||||
|
||||
struct {
|
||||
};
|
||||
|
||||
int main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
|
||||
/* bug #1098 Empty enumerator-list */
|
||||
|
||||
/* The C Standard requires that something exists between the braces for
|
||||
* enum, struct, and union. */
|
||||
|
||||
union {
|
||||
};
|
||||
|
||||
int main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user