-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'm planning to add multiple testing targets for mx-rust that differ only in the initial contents of the K cell (the better way of doing this would be to run tests with a pyk-based script, but that's more work).
- Loading branch information
1 parent
2571d71
commit 50d04af
Showing
8 changed files
with
84 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
```k | ||
requires "configuration.md" | ||
requires "mx-semantics/main/mx-common.md" | ||
requires "mx-semantics/main/syntax.md" | ||
requires "rust-semantics/rust-common.md" | ||
requires "rust-semantics/rust-common-syntax.md" | ||
requires "../../main/mx-rust-common.md" | ||
requires "../common/mx-rust.md" | ||
module MX-RUST-SYNTAX | ||
imports RUST-COMMON-SYNTAX | ||
imports MX-RUST-COMMON-TARGET-SYNTAX | ||
endmodule | ||
module MX-RUST | ||
imports private MX-COMMON | ||
imports private MX-RUST-COMMON | ||
imports private MX-RUST-CONFIGURATION | ||
imports private RUST-COMMON | ||
imports private COMMON-K-CELL | ||
imports private MX-RUST-COMMON-TARGET | ||
endmodule | ||
``` |
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,19 @@ | ||
```k | ||
requires "../../main/configuration.md" | ||
requires "../../test/configuration.md" | ||
module MX-RUST-CONFIGURATION | ||
imports COMMON-K-CELL | ||
imports MX-RUST-COMMON-CONFIGURATION | ||
imports MX-RUST-EXECUTION-TEST-CONFIGURATION | ||
configuration | ||
<mx-rust-cfg> | ||
<mx-rust-test/> | ||
<mx-rust/> | ||
<k/> | ||
</mx-rust-cfg> | ||
endmodule | ||
``` |
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,33 @@ | ||
```k | ||
requires "configuration-testing.md" | ||
requires "mx-rust.md" | ||
requires "mx-semantics/main/mx-common.md" | ||
requires "mx-semantics/main/syntax.md" | ||
requires "mx-semantics/setup/setup.md" | ||
requires "mx-semantics/test/configuration.md" | ||
requires "mx-semantics/test/execution.md" | ||
requires "rust-semantics/rust-common.md" | ||
requires "rust-semantics/rust-common-syntax.md" | ||
requires "rust-semantics/test/configuration.md" | ||
requires "rust-semantics/test/execution.md" | ||
requires "../../main/mx-rust-common.md" | ||
requires "../../main/representation.md" | ||
requires "../../setup/mx.md" | ||
requires "../../test/execution.md" | ||
module MX-RUST-COMMON-TEST-SYNTAX | ||
imports RUST-COMMON-SYNTAX | ||
imports MX-RUST-TESTING-PARSING-SYNTAX | ||
endmodule | ||
module MX-RUST-COMMON-TEST | ||
imports private MX-RUST-COMMON-TARGET | ||
imports private MX-RUST-TEST | ||
imports private MX-RUST-SETUP-MX | ||
imports private MX-SETUP | ||
imports private MX-TEST-EXECUTION | ||
imports private RUST-EXECUTION-TEST | ||
endmodule | ||
``` |
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,20 @@ | ||
```k | ||
requires "mx-semantics/main/mx-common.md" | ||
requires "mx-semantics/main/syntax.md" | ||
requires "rust-semantics/rust-common.md" | ||
requires "rust-semantics/rust-common-syntax.md" | ||
requires "../../main/mx-rust-common.md" | ||
module MX-RUST-COMMON-TARGET-SYNTAX | ||
imports RUST-COMMON-SYNTAX | ||
endmodule | ||
module MX-RUST-COMMON-TARGET | ||
imports private MX-COMMON | ||
imports private MX-RUST-COMMON | ||
imports private MX-RUST-CONFIGURATION | ||
imports private RUST-COMMON | ||
endmodule | ||
``` |
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
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 |
---|---|---|
@@ -1,35 +1,15 @@ | ||
```k | ||
requires "configuration.md" | ||
requires "mx-semantics/main/mx-common.md" | ||
requires "mx-semantics/main/syntax.md" | ||
requires "mx-semantics/setup/setup.md" | ||
requires "mx-semantics/test/configuration.md" | ||
requires "mx-semantics/test/execution.md" | ||
requires "rust-semantics/rust-common.md" | ||
requires "rust-semantics/rust-common-syntax.md" | ||
requires "rust-semantics/test/configuration.md" | ||
requires "rust-semantics/test/execution.md" | ||
requires "../../main/mx-rust-common.md" | ||
requires "../../main/representation.md" | ||
requires "../../setup/mx.md" | ||
requires "../../test/execution.md" | ||
requires "../common/mx-rust-testing.md" | ||
module MX-RUST-SYNTAX | ||
imports RUST-COMMON-SYNTAX | ||
imports MX-RUST-TESTING-PARSING-SYNTAX | ||
imports MX-RUST-COMMON-TEST-SYNTAX | ||
endmodule | ||
module MX-RUST | ||
imports private MX-COMMON | ||
imports private MX-RUST-TEST | ||
imports private MX-RUST-CONFIGURATION | ||
imports private MX-RUST-COMMON | ||
imports private MX-RUST-SETUP-MX | ||
imports private MX-SETUP | ||
imports private MX-TEST-EXECUTION | ||
imports private RUST-COMMON | ||
imports private RUST-EXECUTION-TEST | ||
imports private COMMON-K-CELL | ||
imports private MX-RUST-COMMON-TEST | ||
endmodule | ||
``` |
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
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 |
---|---|---|
@@ -1,33 +1,15 @@ | ||
```k | ||
requires "configuration.md" | ||
requires "mx-semantics/main/mx-common.md" | ||
requires "mx-semantics/main/syntax.md" | ||
requires "mx-semantics/setup/setup.md" | ||
requires "mx-semantics/test/configuration.md" | ||
requires "mx-semantics/test/execution.md" | ||
requires "rust-semantics/rust-common.md" | ||
requires "rust-semantics/rust-common-syntax.md" | ||
requires "rust-semantics/test/configuration.md" | ||
requires "rust-semantics/test/execution.md" | ||
requires "../../main/mx-rust-common.md" | ||
requires "../../main/representation.md" | ||
requires "../../test/execution.md" | ||
requires "../common/mx-rust-testing.md" | ||
module MX-RUST-SYNTAX | ||
imports RUST-COMMON-SYNTAX | ||
imports MX-RUST-TESTING-PARSING-SYNTAX | ||
imports MX-RUST-COMMON-TEST-SYNTAX | ||
endmodule | ||
module MX-RUST | ||
imports private MX-COMMON | ||
imports private MX-SETUP | ||
imports private MX-RUST-TEST | ||
imports private MX-RUST-CONFIGURATION | ||
imports private MX-RUST-COMMON | ||
imports private MX-TEST-EXECUTION | ||
imports private RUST-COMMON | ||
imports private RUST-EXECUTION-TEST | ||
imports private COMMON-K-CELL | ||
imports private MX-RUST-COMMON-TEST | ||
endmodule | ||
``` |