Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Add a test case and revert changes in reader as it breaks the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Jun 28, 2016
1 parent fd0e5ff commit f7c92fb
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 14 deletions.
11 changes: 11 additions & 0 deletions Foxtrot/Tests/RewriterTests/RewriterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,17 @@ private static IEnumerable<Options> TestFileData
useBinDir: false,
useExe: true,
mustSucceed: true);
yield return new Options(
sourceFile: @"Foxtrot\Tests\Sources\SystemCompilerReadGenericTypeAttributes.cs",
foxtrotOptions: @"-assemblyMode standard",
useContractReferenceAssemblies: true,
compilerOptions: @"",
references: new[] { @"System.Core.dll" },
libPaths: new[] { @"Microsoft.Research\RegressionTest\ClousotTestHarness\bin\debug" },
compilerCode: "CS",
useBinDir: false,
useExe: true,
mustSucceed: true);
}
}

Expand Down
89 changes: 89 additions & 0 deletions Foxtrot/Tests/Sources/SystemCompilerReadGenericTypeAttributes.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
// CodeContracts
//
// Copyright (c) Microsoft Corporation
//
// All rights reserved.
//
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using System;
using System.Linq;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Text;
using System.Threading;

namespace Tests.Sources
{
// a dummy class, just to make the test framework happy
public class Foo
{
public void Method(params string[] strings)
{
Contract.Requires(Contract.ForAll(strings, s => s.Length > 0));
Console.WriteLine("Method");
}
}

public class C1
{
}
public class C2
{
}
public class C3
{
}

public interface I1<T1, T2, T3>
{
}

public class A1 : System.Attribute
{
public A1(Type t)
{
T = t;
}

public Type T {get;set;}
}

partial class TestMain
{
partial void Run()
{
if (behave)
{
new Foo().Method("1", "2", "3");
}
else
{
new Foo().Method("1", "");
}
}

private interface I2<T1, T2, T3>
{
}

[A1(typeof(I1<C1, C2, C3>))]
private class Inner1 : I1<C1, C2, C3>
{
}

[A1(typeof(I2<C1, C2, C3>))]
private class Inner2 : I2<C1, C2, C3>
{
}

public ContractFailureKind NegativeExpectedKind = ContractFailureKind.Precondition;
public string NegativeExpectedCondition = "Contract.ForAll(strings, s => s.Length > 0)";
}
}
14 changes: 0 additions & 14 deletions System.Compiler/Reader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4259,20 +4259,6 @@ private string GetIdentifier(TypeNameIdentifiers identifierType) {
this.currentItr++;
switch (c) {
case ',':
// A comma may separate a type name from its assembly name or a type argument from
// another type argument.
// If processing non-type argument or a type argument with assembly name,
// process the characters after the comma as an assembly name.
//
// Only continue parsing the string if the next chunk of the string is the name of a type argument.
// If the next character is not a literal, it is not a type argument, so
// end the current identifier by going to done label.
if (this.currentItr < this.typeNameString.Length) {
var next = this.typeNameString[this.currentItr];
if (char.IsWhiteSpace(next) || IsTypeNameReservedChar(next))
goto done;
}
break;
case '[':
case ']':
case '&':
Expand Down

0 comments on commit f7c92fb

Please sign in to comment.