(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Microsoft.VisualBasic / Test / standalone / 6987.vb
blobf7bc4441384efc0c2d1387db2c477f33fdcfa38a
2 ' Copyright (c) 2002-2003 Mainsoft Corporation.
4 ' Permission is hereby granted, free of charge, to any person obtaining a
5 ' copy of this software and associated documentation files (the "Software"),
6 ' to deal in the Software without restriction, including without limitation
7 ' the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 ' and/or sell copies of the Software, and to permit persons to whom the
9 ' Software is furnished to do so, subject to the following conditions:
11 ' The above copyright notice and this permission notice shall be included in
12 ' all copies or substantial portions of the Software.
14 ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 ' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 ' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 ' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 ' FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 ' DEALINGS IN THE SOFTWARE.
24 Imports Microsoft.VisualBasic
26 Public Class TestClass
27 Public Function Test() As String
28 Dim fput As Integer
29 Dim fget As Integer
31 '// make sure all files are closed
32 Microsoft.VisualBasic.FileSystem.Reset()
35 Dim oDT2_1 As Boolean = True
36 Dim oDT2_2 As Boolean
37 Dim oDT3_1 As Byte = 1
38 Dim oDT3_2 As Byte
39 Dim oDT4_1 As Short = 100
40 Dim oDT4_2 As Short
41 Dim oDT5_1 As Integer = 1000
42 Dim oDT5_2 As Integer
43 Dim oDT6_1 As Long = 100000
44 Dim oDT6_2 As Long
45 Dim oDT7_1 As Char = "c"c
46 Dim oDT7_2 As Char
47 Dim oDT8_1 As Single = 2.2
48 Dim oDT8_2 As Single
49 Dim oDT9_1 As Double = 8.8
50 Dim oDT9_2 As Double
51 Dim oDT10_1 As Decimal = 10000000
52 Dim oDT10_2 As Decimal
53 Dim oDT11_1 As String = "zzz"
54 Dim oDT11_2 As String
55 Dim oDT12_1 As Date = #5/31/1993#
56 Dim oDT12_2 As Date
58 fput = FreeFile()
59 FileOpen(fput, System.IO.Directory.GetCurrentDirectory() + "\data\6987.txt", OpenMode.Output)
60 Write(fput, oDT2_1, oDT3_1, oDT4_1, oDT5_1, oDT6_1, oDT7_1, oDT8_1, oDT9_1, oDT10_1, oDT11_1, oDT12_1)
61 FileClose(fput)
63 fget = FreeFile()
64 FileOpen(fget, System.IO.Directory.GetCurrentDirectory() + "\data\6987.txt", OpenMode.Input)
65 Input(fget, oDT2_2)
66 Input(fget, oDT3_2)
67 Input(fget, oDT4_2)
68 Input(fget, oDT5_2)
69 Input(fget, oDT6_2)
70 Input(fget, oDT7_2)
71 Input(fget, oDT8_2)
72 Input(fget, oDT9_2)
73 Input(fget, oDT10_2)
74 Input(fget, oDT11_2)
75 Input(fget, oDT12_2)
76 FileClose(fget)
78 If oDT2_1 <> oDT2_2 Then Return "failed"
79 If oDT3_1 <> oDT3_2 Then Return "failed"
80 If oDT4_1 <> oDT4_2 Then Return "failed"
81 If oDT5_1 <> oDT5_2 Then Return "failed"
82 If oDT6_1 <> oDT6_2 Then Return "failed"
83 If oDT7_1 <> oDT7_2 Then Return "failed"
84 If oDT8_1 <> oDT8_2 Then Return "failed"
85 If oDT9_1 <> oDT9_2 Then Return "failed"
86 If oDT10_1 <> oDT10_2 Then Return "failed"
87 If oDT11_1 <> oDT11_2 Then Return "failed"
88 If oDT12_1 <> oDT12_2 Then Return "failed"
90 Return "success"
91 End Function
92 End Class