Skip to content

Commit 90c4e66

Browse files
committed
Fix diamondassembly TP test
1 parent 6424eb8 commit 90c4e66

4 files changed

Lines changed: 7 additions & 1 deletion

File tree

tests/fsharp/typeProviders/diamondAssembly/run.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test3.exe
2222

2323

2424
if exist test.ok (del /f /q test.ok)
25-
%CLIX% "%FSI%" %fsi_flags% test1.fsx test2a.fsx test2b.fsx test3.fsx && (
25+
%CLIX% "%FSI%" %fsi_flags% test3.fsx && (
2626
dir test.ok > NUL 2>&1 ) || (
2727
@echo :FSI load failed
2828
set ERRORMSG=%ERRORMSG% FSI load failed;

tests/fsharp/typeProviders/diamondAssembly/test2a.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
#r "provider.dll"
33
#r "test1.dll"
4+
#load "./test1.fsx"
45

56
module ErasedTypes =
67
let f() : FSharp.HelloWorld.HelloWorldType = Unchecked.defaultof<_>

tests/fsharp/typeProviders/diamondAssembly/test2b.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
#r "provider.dll"
33
#r "test1.dll"
4+
#load "./test1.fsx"
5+
#load "./test2a.fsx"
46

57
module ErasedTypes =
68
let f() : FSharp.HelloWorld.HelloWorldType = Unchecked.defaultof<_>

tests/fsharp/typeProviders/diamondAssembly/test3.fsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
#r "test1.dll"
44
#r "test2a.dll"
55
#r "test2b.dll"
6+
#load "./test1.fsx"
7+
#load "./test2a.fsx"
8+
#load "./test2b.fsx"
69

710

811
let mutable failures = []

0 commit comments

Comments
 (0)