-
Notifications
You must be signed in to change notification settings - Fork 414
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lucas Pluvinage <[email protected]>
- Loading branch information
Showing
11 changed files
with
99 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
9 changes: 9 additions & 0 deletions
9
...blackbox-tests/test-cases/variants-external-declaration-conflict/not-a-vlib-redirect/dune
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(library | ||
(name libfoo) | ||
(public_name another-name) | ||
) | ||
|
||
(external_variant | ||
(virtual_library libfoo) | ||
(variant somevariant) | ||
(implementation impl1)) |
2 changes: 2 additions & 0 deletions
2
...-tests/test-cases/variants-external-declaration-conflict/not-a-vlib-redirect/dune-project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.10) | ||
(using library_variants 0.2) |
1 change: 1 addition & 0 deletions
1
...box-tests/test-cases/variants-external-declaration-conflict/not-a-vlib-redirect/libfoo.ml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
let implme () = () |
8 changes: 8 additions & 0 deletions
8
test/blackbox-tests/test-cases/variants-external-declaration-conflict/not-a-vlib/dune
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
(library | ||
(name libfoo) | ||
) | ||
|
||
(external_variant | ||
(virtual_library libfoo) | ||
(variant somevariant) | ||
(implementation impl1)) |
2 changes: 2 additions & 0 deletions
2
.../blackbox-tests/test-cases/variants-external-declaration-conflict/not-a-vlib/dune-project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.10) | ||
(using library_variants 0.2) |
1 change: 1 addition & 0 deletions
1
test/blackbox-tests/test-cases/variants-external-declaration-conflict/not-a-vlib/libfoo.ml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
let implme () = () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
test/blackbox-tests/test-cases/variants-external-declaration-conflict/vlib-dont-exist/dune
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(external_variant | ||
(virtual_library i-dont-exist) | ||
(variant somevariant) | ||
(implementation impl1)) |
2 changes: 2 additions & 0 deletions
2
...kbox-tests/test-cases/variants-external-declaration-conflict/vlib-dont-exist/dune-project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.10) | ||
(using library_variants 0.2) |