]> ocean-lang.org Git - ocean/commitdiff
oceani-tests: add tests with lots of blank lines.
authorNeilBrown <neil@brown.name>
Sun, 16 Jun 2019 02:34:40 +0000 (12:34 +1000)
committerNeilBrown <neil@brown.name>
Sun, 16 Jun 2019 02:34:40 +0000 (12:34 +1000)
This found some problems with the grammer, which I fixed.

Signed-off-by: NeilBrown <neil@brown.name>
csrc/oceani-tests.mdc
csrc/oceani.mdc

index 8a5e74708e9385f77fbec661823233a824dd246a..8e4ddadd7e9bb07b387929dd05a1434f7692b62f 100644 (file)
@@ -57,6 +57,13 @@ arguments separated from the name by commas.  For each test, there is a section
                    ./oceani --noexec --print .tmp.code1 >> .tmp.code2 ;\
                    if ! cmp -s .tmp.code1 .tmp.code2; then \
                       echo " Failed"; diff -u .tmp.code1 .tmp.code2; exit 1 ; fi ; \
+                   echo -n "extra-newlines.. "; \
+                   sed -e 'i\
+                   ' .tmp.code1 > .tmp.code1a; \
+                   echo '``````' > .tmp.code2a ;\
+                   ./oceani --noexec --print .tmp.code1a >> .tmp.code2a;\
+                   if ! cmp -s .tmp.code1 .tmp.code2a; then \
+                      echo " Failed"; diff -u .tmp.code1 .tmp.code2a; exit 1; fi ; \
                    echo -n "exec-after-print.. "; \
                    ./oceani .tmp.code1 $${1+"$$@"} > .tmp.have ; \
                    if ! cmp -s .tmp.want .tmp.have; then \
index d3a4caf519c4f62a38a2b59123ebab5b52556487..d234968144dc1b245dbd95cc12a0e60a283e40e5 100644 (file)
@@ -2031,14 +2031,17 @@ function will be needed.
                | Open SimpleFieldList } ${ $0 = $<2; }$
                | : FieldList $$NEWLINE ${ $0 = $<2; }$
 
-       FieldList -> SimpleFieldListLine ${ $0 = $<1; }$
-               | FieldList SimpleFieldListLine ${
+       FieldList -> FieldLines ${ $0 = $<1; }$
+               | NEWLINE FieldLines ${ $0 = $<2; }$
+       FieldLines -> SimpleFieldListLine ${ $0 = $<1; }$
+               | FieldLines SimpleFieldListLine ${
                        $2->prev = $<1;
                        $0 = $<2;
                }$
 
        SimpleFieldListLine -> SimpleFieldList NEWLINE ${ $0 = $<1; }$
                | SimpleFieldListLine NEWLINE ${ $0 = $<1; }$
+               | ERROR NEWLINE ${ tok_err(c, "Syntax error in struct field", &$1); }$
 
        SimpleFieldList -> Field ${ $0 = $<1; }$
                | SimpleFieldList ; Field ${
@@ -2071,7 +2074,6 @@ function will be needed.
                        $0->f.type = $<3;
                        $0->f.init = val_init($3);
                }$
-               | ERROR ${ tok_err(c, "Syntax error in struct field", &$1); }$
 
 ###### forward decls
        static void structure_print_type(struct type *t, FILE *f);