diff options
Diffstat (limited to 'mbld/types.myr')
-rw-r--r-- | mbld/types.myr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mbld/types.myr b/mbld/types.myr index 307712d..7731cb4 100644 --- a/mbld/types.myr +++ b/mbld/types.myr @@ -45,6 +45,7 @@ pkg bld = islib : bool istest : bool + isbench : bool install : bool ;; @@ -57,6 +58,7 @@ pkg bld = tags : byte[:][:] durable : bool istest : bool + isbench : bool ;; type mantarg = struct @@ -82,6 +84,12 @@ pkg bld = genar : byte[:] ;; + type testresult = union + `Pass + `Fail byte[:] + `Timing (int, flt64, flt64) + ;; + type depgraph = struct /* the edges of the graph from both ends */ targs : std.htab(byte[:], node#[:])# |