ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"scenario": "Duplicate declaration errors",
|
|
"description": "Tests that should trigger a duplicate declaration error",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-declaration"
|
|
}
|
|
]
|
|
},
|
|
"tests": [
|
|
{
|
|
"src": ".local $foo = {$foo} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {42} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {:unknown} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $x = {42} .local $y = {$x} .local $x = {13} {{{$x} {$y}}}"
|
|
},
|
|
{
|
|
"src": ".local $foo = {$foo} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {$bar} .local $bar = {$baz} {{bar {$foo}}}",
|
|
"params": [{ "name": "baz", "value": "foo" }]
|
|
}
|
|
]
|
|
}
|