diff options
-rwxr-xr-x | test.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test.py b/test.py new file mode 100755 index 000000000..703dcf327 --- /dev/null +++ b/test.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 + +# Eventual goals: +# +# - Check validity of tests fillers. +# - Filter test fillers based on properties. +# - Convert between various test filler formats. + +# Non-goals: +# +# - Test filling. +# - Test post-state checking. + +# Current goals: +# +# - Generate GeneralStateTests from VMTests. + +# Input: +# +# - VMTest filler directory/name, without suffix Filler.json +# eg. vmArithmeticTest/add0 + +# Output: +# +# - GeneralStateTest filler +# eg. stVMTests/vmArithmeticTest/add0Filler.json + |