Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
zilf
zilf
Commits
aade0f02f77a
Commit
c4e2feda
authored
Oct 11, 2020
by
Jesse McGrew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ZLR.VM 0.9.0 prerelease from NuGet.
parent
38a32a6b0f04
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
test/Zilf.Tests.Integration/TestCaseIO.cs
test/Zilf.Tests.Integration/TestCaseIO.cs
+2
-2
test/Zilf.Tests.Integration/ZLR.VM.dll
test/Zilf.Tests.Integration/ZLR.VM.dll
+0
-0
test/Zilf.Tests.Integration/Zilf.Tests.Integration.csproj
test/Zilf.Tests.Integration/Zilf.Tests.Integration.csproj
+1
-0
test/Zilf.Tests.Integration/ZlrHelper.cs
test/Zilf.Tests.Integration/ZlrHelper.cs
+1
-1
No files found.
test/Zilf.Tests.Integration/TestCaseIO.cs
View file @
aade0f02
...
...
@@ -42,6 +42,7 @@ namespace Zilf.Tests.Integration
{
[
JetBrains
.
Annotations
.
NotNull
]
readonly
Stream
inputStream
;
readonly
bool
wantStatusLine
;
[
CanBeNull
]
...
...
@@ -55,8 +56,7 @@ namespace Zilf.Tests.Integration
#
region
Z
-
machine
I
/
O
implementation
string
IZMachineIO
.
ReadLine
(
string
initial
,
int
time
,
TimedInputCallback
callback
,
byte
[]
terminatingKeys
,
out
byte
terminator
)
ReadLineResult
IZMachineIO
.
ReadLine
(
string
initial
,
int
time
,
TimedInputCallback
callback
,
byte
[]
terminatingKeys
,
bool
allowDebuggerBreak
)
{
throw
new
AssertFailedException
(
"Unexpected line input request"
);
}
...
...
test/Zilf.Tests.Integration/ZLR.VM.dll
deleted
100644 → 0
View file @
38a32a6b
File deleted
test/Zilf.Tests.Integration/Zilf.Tests.Integration.csproj
View file @
aade0f02
...
...
@@ -10,6 +10,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="ZLR.VM" Version="0.9.0-*" />
</ItemGroup>
<ItemGroup>
<Reference Include="ZLR.VM">
...
...
test/Zilf.Tests.Integration/ZlrHelper.cs
View file @
aade0f02
...
...
@@ -60,7 +60,7 @@ namespace Zilf.Tests.Integration
IEnumerable
<(
Predicate
<
ZlrHelperRunResult
>,
string
message
)>
warningChecks
=
null
,
bool
wantCompileOutput
=
false
)
{
var
helper
=
new
ZlrHelper
(
code
,
input
);
using
var
helper
=
new
ZlrHelper
(
code
,
input
);
bool
compiled
;
string
compileOutput
;
if
(
wantCompileOutput
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment