the compiler interface

Signed-off-by: xermicus <bigcyrill@hotmail.com>
This commit is contained in:
xermicus
2025-03-20 23:26:39 +01:00
parent d6c2535853
commit 6a0d705371
11 changed files with 251 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
//! The compiler driver builds the test case contracts for selected compilers.
+1
View File
@@ -0,0 +1 @@
//! The input driver executes the test cases differentially against selected nodes.
+4
View File
@@ -0,0 +1,4 @@
//! The test driver handles the compilation and execution of the test cases.
pub mod compiler;
pub mod input;
+1
View File
@@ -4,3 +4,4 @@
//! provides a helper utilty to execute tests.
pub mod arguments;
pub mod driver;