Skip to content

Commit fd0f248

Browse files
committed
disable-test-for-517 (2)
1 parent 659eb19 commit fd0f248

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/fsharp/core/quotes/test.fsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1141,12 +1141,15 @@ module MoreTests =
11411141
test "test3932g" (isMeth <@ ClassOneArg.TestStaticMethodTwoArgs(3,4) @>)
11421142

11431143
test "test3932qA" (isPropGet <@ ClassOneArg(3).TestInstanceProp @>)
1144+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1145+
(*
11441146
test "test3932qB" (isPropGet <@ ClassOneArg(3).TestInstanceIndexProp(4) @>)
11451147
test "test3932qC" (isPropSet <@ ClassOneArg(3).TestInstanceSettableIndexProp(4) <- 5 @>)
11461148
test "test3932qD" (isPropSet <@ ClassOneArg(3).TestInstanceSettableIndexProp2(4,5) <- 6 @>)
11471149
test "test3932q77" (match <@ ClassOneArg(3).TestInstanceSettableIndexProp2(4,5) <- 6 @> with
11481150
| PropertySet(Some _, _, [Int32(4); Int32(5)], Int32(6)) -> true
11491151
| _ -> false)
1152+
*)
11501153

11511154
test "test3932wA" (isMeth <@ ClassOneArg(3).TestInstanceMethodNoArgs() @>)
11521155
test "test3932wB" (isMeth <@ ClassOneArg(3).TestInstanceMethodOneArg(3) @>)
@@ -1167,18 +1170,22 @@ module MoreTests =
11671170

11681171
printfn "res = %A" <@ ClassNoArg.TestStaticSettableProp <- 5 @>
11691172
test "test3932q63" (match <@ ClassNoArg.TestStaticSettableProp <- 5 @> with PropertySet(None, _, [], Int32(5)) -> true | _ -> false)
1170-
test "test3932q64" (match <@ ClassNoArg.TestStaticSettableIndexProp(4) <- 5 @> with PropertySet(None, _, [Int32(4)], Int32(5)) -> true | _ -> false)
1173+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1174+
// test "test3932q64" (match <@ ClassNoArg.TestStaticSettableIndexProp(4) <- 5 @> with PropertySet(None, _, [Int32(4)], Int32(5)) -> true | _ -> false)
11711175
test "test3932r" (isMeth <@ ClassNoArg.TestStaticMethodOneArg(3) @>)
11721176
test "test3932r" (isMeth <@ ClassNoArg.TestStaticMethodOneTupledArg((3,2)) @>)
11731177
test "test3932r" (isMeth <@ ClassNoArg.TestStaticMethodOneTupledArg(p) @>)
11741178
test "test3932t" (isMeth <@ ClassNoArg.TestStaticMethodNoArgs() @>)
11751179
test "test3932y" (isMeth <@ ClassNoArg.TestStaticMethodTwoArgs(3,4) @>)
11761180

11771181
test "test3932u" (isPropGet <@ ClassNoArg().TestInstanceProp @>)
1182+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1183+
(*
11781184
test "test3932u" (isPropGet <@ ClassNoArg().TestInstanceIndexProp(4) @>)
11791185
test "test3932q65" (match <@ ClassNoArg().TestInstanceIndexProp(4) @> with PropertyGet(Some _, _, [(Int32(4))]) -> true | _ -> false)
11801186
test "test3932u" (isPropSet <@ ClassNoArg().TestInstanceSettableIndexProp(4) <- 5 @>)
11811187
test "test3932q66" (match <@ ClassNoArg().TestInstanceSettableIndexProp(4) <- 5 @> with PropertySet(Some _, _, [(Int32(4))], Int32(5)) -> true | _ -> false)
1188+
*)
11821189
test "test3932i" (isMeth <@ ClassNoArg().TestInstanceMethodNoArgs() @>)
11831190
test "test3932i" (isMeth <@ ClassNoArg().TestInstanceMethodOneArg(3) @>)
11841191
test "test3932i" (isMeth <@ ClassNoArg().TestInstanceMethodOneTupledArg((3,4)) @>)
@@ -1193,8 +1200,11 @@ module MoreTests =
11931200
test "test3932yg" (isMeth <@ GenericClassNoArg<int>.TestStaticMethodTwoArgs(3,4) @>)
11941201

11951202
test "test3932ug" (isPropGet <@ (GenericClassNoArg<int>()).TestInstanceProp @>)
1203+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1204+
(*
11961205
test "test3932ug" (isPropGet <@ (GenericClassNoArg<int>()).TestInstanceIndexProp(4) @>)
11971206
test "test3932ug" (match <@ (GenericClassNoArg<int>()).TestInstanceIndexProp(4) @> with PropertyGet(Some _, _, [Int32(4)]) -> true | _ -> false)
1207+
*)
11981208

11991209
test "test3932ig" (isMeth <@ (GenericClassNoArg<int>()).TestInstanceMethodNoArgs() @>)
12001210
test "test3932ig" (isMeth <@ (GenericClassNoArg<int>()).TestInstanceMethodOneArg(3) @>)

0 commit comments

Comments
 (0)