mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Wasm test attribute fix
This commit is contained in:
parent
e263f3a37f
commit
0e2f49fd12
1 changed files with 6 additions and 9 deletions
|
@ -135,15 +135,12 @@ namespace System
|
||||||
List<StringView> attributes = scope .(attribs.Split('\a'));
|
List<StringView> attributes = scope .(attribs.Split('\a'));
|
||||||
for(var i in attributes)
|
for(var i in attributes)
|
||||||
{
|
{
|
||||||
if(i.StartsWith('\v'))
|
if (i == "Sf")
|
||||||
{
|
testEntry.mShouldFail = true;
|
||||||
if(i == "Sf")
|
else if (i == "Pr")
|
||||||
testEntry.mShouldFail = true;
|
testEntry.mProfile = true;
|
||||||
else if(i == "Pr")
|
else if (i == "Ig")
|
||||||
testEntry.mProfile = true;
|
testEntry.mIgnore = true;
|
||||||
else if(i == "Ig")
|
|
||||||
testEntry.mIgnore = true;
|
|
||||||
}
|
|
||||||
else if(i.StartsWith("Name"))
|
else if(i.StartsWith("Name"))
|
||||||
{
|
{
|
||||||
testEntry.mName.Clear();
|
testEntry.mName.Clear();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue