pkg/cfgparser: Require a new line after }

Makes the following configuration invalid:
aaa {
    bbb
} ccc

Previously it would have been parsed as:
aaa {
    bbb
}
ccc
This commit is contained in:
fox.cpp 2020-03-04 01:34:04 +03:00
parent 296d67488c
commit 18fc48c6e6
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
2 changed files with 49 additions and 20 deletions

View file

@ -276,27 +276,11 @@ var cases = []struct {
true,
},
{
// TODO: Should we make it fail?
"closing brace in next block header",
`a {
} b b1`,
[]Node{
{
Name: "a",
Args: []string{},
Children: []Node{},
File: "test",
Line: 1,
},
{
Name: "b",
Args: []string{"b1"},
Children: nil,
File: "test",
Line: 2,
},
},
false,
nil,
true,
},
{
"environment variable expansion",