Skip to content

Commit 23264d2

Browse files
authored
Disable failing Test1 and Test5 lines (#78118)
1 parent 6a18333 commit 23264d2

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline1.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,7 +1611,6 @@
16111611
[UI ^ SB] Double: 0.0384615384615385
16121612
[UI ^ By] Double: 1.34714286531616E+31
16131613
[UI ^ Sh] Double: 5.68957669549386E-05
1614-
[UI ^ US] Double: 9.10668576953722E+33
16151614
[UI ^ [In]] Double: 8.41653357321576E-08
16161615
[UI ^ UI] Double: 6.15611958020716E+36
16171616
[UI ^ Lo] Double: 1.24504934515026E-10
@@ -1666,7 +1665,6 @@
16661665
[De ^ UL] Double: 5.23347633027361E+26
16671666
[De ^ De] Double: -2.5811747917132E-09
16681667
[De ^ Si] Double: 3486784401
1669-
[De ^ [Do]] Double: -3.18663554532494E-11
16701668
[De ^ St] Double: 282429536481
16711669
[De ^ Ob] Object: -3.93411795719128E-13
16721670
[De ^ Tc] Double: 22876792454961

src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline5.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,6 @@
14201420
[26UI ^ System.SByte.MinValue] Double: 7.64559800600316E-182
14211421
[26UI ^ System.Byte.MaxValue] Double: Infinity
14221422
[26UI ^ -3S] Double: 5.68957669549386E-05
1423-
[26UI ^ 24US] Double: 9.10668576953722E+33
14241423
[26UI ^ -5I] Double: 8.41653357321576E-08
14251424
[26UI ^ 26UI] Double: 6.15611958020716E+36
14261425
[26UI ^ -7L] Double: 1.24504934515026E-10
@@ -1472,7 +1471,6 @@
14721471
[-9D ^ 28UL] Double: -5.23347633027361E+26
14731472
[-9D ^ -9D] Double: -2.5811747917132E-09
14741473
[-9D ^ 10.0F] Double: -3486784401
1475-
[-9D ^ -11.0R] Double: -3.18663554532494E-11
14761474
[-9D ^ "12"] Double: -282429536481
14771475
[-9D ^ TypeCode.Double] Double: -22876792454961
14781476
[10.0F ^ False] Double: 1

src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource1.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ Module Module1
16841684
PrintResult("UI ^ SB", UI ^ SB)
16851685
PrintResult("UI ^ By", UI ^ By)
16861686
PrintResult("UI ^ Sh", UI ^ Sh)
1687-
PrintResult("UI ^ US", UI ^ US)
1687+
' PrintResult("UI ^ US", UI ^ US) ' https://github.com/dotnet/roslyn/issues/78117
16881688
PrintResult("UI ^ [In]", UI ^ [In])
16891689
PrintResult("UI ^ UI", UI ^ UI)
16901690
PrintResult("UI ^ Lo", UI ^ Lo)
@@ -1739,7 +1739,7 @@ Module Module1
17391739
PrintResult("De ^ UL", De ^ UL)
17401740
PrintResult("De ^ De", De ^ De)
17411741
PrintResult("De ^ Si", De ^ Si)
1742-
PrintResult("De ^ [Do]", De ^ [Do])
1742+
' PrintResult("De ^ [Do]", De ^ [Do]) ' https://github.com/dotnet/roslyn/issues/78117
17431743
PrintResult("De ^ St", De ^ St)
17441744
PrintResult("De ^ Ob", De ^ Ob)
17451745
PrintResult("De ^ Tc", De ^ Tc)

src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource5.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ Module Module1
14321432
PrintResult("26UI ^ System.SByte.MinValue", 26UI ^ System.SByte.MinValue)
14331433
PrintResult("26UI ^ System.Byte.MaxValue", 26UI ^ System.Byte.MaxValue)
14341434
PrintResult("26UI ^ -3S", 26UI ^ -3S)
1435-
PrintResult("26UI ^ 24US", 26UI ^ 24US)
1435+
' PrintResult("26UI ^ 24US", 26UI ^ 24US) ' https://github.com/dotnet/roslyn/issues/78117
14361436
PrintResult("26UI ^ -5I", 26UI ^ -5I)
14371437
PrintResult("26UI ^ 26UI", 26UI ^ 26UI)
14381438
PrintResult("26UI ^ -7L", 26UI ^ -7L)
@@ -1484,7 +1484,7 @@ Module Module1
14841484
PrintResult("-9D ^ 28UL", -9D ^ 28UL)
14851485
PrintResult("-9D ^ -9D", -9D ^ -9D)
14861486
PrintResult("-9D ^ 10.0F", -9D ^ 10.0F)
1487-
PrintResult("-9D ^ -11.0R", -9D ^ -11.0R)
1487+
' PrintResult("-9D ^ -11.0R", -9D ^ -11.0R) ' https://github.com/dotnet/roslyn/issues/78117
14881488
PrintResult("-9D ^ ""12""", -9D ^ "12")
14891489
PrintResult("-9D ^ TypeCode.Double", -9D ^ TypeCode.Double)
14901490
PrintResult("10.0F ^ False", 10.0F ^ False)

0 commit comments

Comments
 (0)