Skip to content

Commit f12b074

Browse files
committed
disable-test-for-517 (3)
1 parent fd0f248 commit f12b074

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

tests/fsharp/core/quotes/test.fsx

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,10 +1156,13 @@ module MoreTests =
11561156
test "test3932e" (isMeth <@ ClassOneArg(3).TestInstanceMethodTwoArgs(3,4) @>)
11571157

11581158
test "test3932q1" (isPropSet <@ ClassOneArg(3).Setter <- 3 @>)
1159-
test "test3932q2" (isPropGet <@ ClassOneArg(3).GetterIndexer(3) @>)
1159+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1160+
// test "test3932q2" (isPropGet <@ ClassOneArg(3).GetterIndexer(3) @>)
11601161
test "test3932q3" (isPropGet <@ ClassOneArg(3).[3] @>)
1161-
test "test3932q4" (isPropGet <@ ClassOneArg(3).TupleGetterIndexer((3,4)) @>)
1162-
test "test3932q5" (isPropSet <@ ClassOneArg(3).SetterIndexer(3) <- 3 @>)
1162+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1163+
//test "test3932q4" (isPropGet <@ ClassOneArg(3).TupleGetterIndexer((3,4)) @>)
1164+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1165+
// test "test3932q5" (isPropSet <@ ClassOneArg(3).SetterIndexer(3) <- 3 @>)
11631166
test "test3932q61" (isPropSet <@ ClassOneArg(3).[3] <- 3 @>)
11641167
test "test3932q62" (match <@ ClassOneArg(3).[4] <- 5 @> with PropertySet(Some _,_, [Int32(4)], Int32(5)) -> true | _ -> false)
11651168
test "test3932q7" (isPropSet <@ ClassOneArg(3).TupleSetter <- (3,4) @>)
@@ -1398,17 +1401,22 @@ module CheckRlectedMembers =
13981401
test "testReflect3932o" (isMeth <@ ClassNoArg().TestInstanceMethodTwoArgs(3,4) @>)
13991402

14001403
test "testReflect3932q1" (isPropSet <@ ClassOneArg(3).Setter <- 3 @>)
1401-
test "testReflect3932q2" (isPropGet <@ ClassOneArg(3).GetterIndexer(3) @>)
1404+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1405+
//test "testReflect3932q2" (isPropGet <@ ClassOneArg(3).GetterIndexer(3) @>)
14021406
test "testReflect3932q3" (isPropGet <@ ClassOneArg(3).[3] @>)
1403-
test "testReflect3932q4" (isPropGet <@ ClassOneArg(3).TupleGetterIndexer((3,4)) @>)
1404-
test "testReflect3932q5" (isPropSet <@ ClassOneArg(3).SetterIndexer(3) <- 3 @>)
1407+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1408+
//test "testReflect3932q4" (isPropGet <@ ClassOneArg(3).TupleGetterIndexer((3,4)) @>)
1409+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1410+
//test "testReflect3932q5" (isPropSet <@ ClassOneArg(3).SetterIndexer(3) <- 3 @>)
14051411
test "testReflect3932q6" (isPropSet <@ ClassOneArg(3).[3] <- 3 @>)
14061412
test "testReflect3932q7" (isPropSet <@ ClassOneArg(3).TupleSetter <- (3,4) @>)
14071413

14081414
test "testReflect3932q1x" (isPropSet <@ ClassOneArgOuterAttribute(3).Setter <- 3 @>)
1409-
test "testReflect3932q2x" (isPropGet <@ ClassOneArgOuterAttribute(3).GetterIndexer(3) @>)
1415+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1416+
//test "testReflect3932q2x" (isPropGet <@ ClassOneArgOuterAttribute(3).GetterIndexer(3) @>)
14101417
test "testReflect3932q3x" (isPropGet <@ ClassOneArgOuterAttribute(3).[3] @>)
1411-
test "testReflect3932q4x" (isPropGet <@ ClassOneArgOuterAttribute(3).TupleGetterIndexer((3,4)) @>)
1418+
// Disabled, see https://github.com/fsharp/fsharp/issues/517
1419+
//test "testReflect3932q4x" (isPropGet <@ ClassOneArgOuterAttribute(3).TupleGetterIndexer((3,4)) @>)
14121420
test "testReflect3932q5x" (isPropSet <@ ClassOneArgOuterAttribute(3).SetterIndexer(3) <- 3 @>)
14131421
test "testReflect3932q6x" (isPropSet <@ ClassOneArgOuterAttribute(3).[3] <- 3 @>)
14141422
test "testReflect3932q7x" (isPropSet <@ ClassOneArgOuterAttribute(3).TupleSetter <- (3,4) @>)

0 commit comments

Comments
 (0)