hoa: diagnose unsupported Headers
* src/hoaparse/hoaparse.yy: Here. * src/tgbatest/hoaparse.test: Test it.
This commit is contained in:
parent
8004dca157
commit
4043ad2ccf
2 changed files with 45 additions and 0 deletions
|
|
@ -287,6 +287,14 @@ header-item: "States:" INT
|
|||
}
|
||||
| "properties:" properties
|
||||
| HEADERNAME header-spec
|
||||
{
|
||||
char c = (*$1)[0];
|
||||
if (c >= 'A' && c <= 'Z')
|
||||
error(@$, "ignoring unsupported header \"" + *$1 + ":\"\n\t"
|
||||
"(but the capital indicates information that should not"
|
||||
" be ignored)");
|
||||
delete $1;
|
||||
}
|
||||
|
||||
ap-names: | ap-names ap-name
|
||||
ap-name: STRING
|
||||
|
|
|
|||
|
|
@ -523,3 +523,40 @@ State: 1
|
|||
[0] 0
|
||||
--END--
|
||||
EOF
|
||||
|
||||
|
||||
cat >input <<EOF
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
Important: 4 very important "!"
|
||||
AP: 0
|
||||
Acceptance: 1 Inf(0)
|
||||
--BODY--
|
||||
State: 0 {0} 1
|
||||
State: 1 0
|
||||
--END--
|
||||
EOF
|
||||
|
||||
expecterr input <<EOF
|
||||
input:4.1-31: ignoring unsupported header "Important:"
|
||||
(but the capital indicates information that should not be ignored)
|
||||
EOF
|
||||
|
||||
cat >expected <<EOF
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 0
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc complete deterministic
|
||||
--BODY--
|
||||
State: 0 {0}
|
||||
[t] 1
|
||||
State: 1
|
||||
[t] 0
|
||||
--END--
|
||||
EOF
|
||||
|
||||
diff expected input.out
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue