mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-18 22:21:50 +03:00
28 lines
462 B
Plaintext
28 lines
462 B
Plaintext
|
interface tester {
|
||
|
variant request {
|
||
|
run(run-request),
|
||
|
}
|
||
|
|
||
|
variant response {
|
||
|
run(result<_, fail-response>)
|
||
|
}
|
||
|
|
||
|
record run-request {
|
||
|
input-node-names: list<string>,
|
||
|
test-names: list<string>,
|
||
|
test-timeout: u64,
|
||
|
}
|
||
|
|
||
|
record fail-response {
|
||
|
test: string,
|
||
|
file: string,
|
||
|
line: u32,
|
||
|
column: u32,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
world tester-sys-v0 {
|
||
|
import tester;
|
||
|
include process-v0;
|
||
|
}
|