aboutsummaryrefslogtreecommitdiffstats
path: root/hexencodetest.json
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-02-22 02:33:39 +0800
committerGav Wood <i@gavwood.com>2014-02-22 02:33:39 +0800
commit6ad14c1a157e707fd15c87816e8ad872f69790db (patch)
tree301c570686e8367bfcaae2277919a65df0f520f3 /hexencodetest.json
parentf91ad7b3857ec9157e7df7f315d942afb7594da0 (diff)
downloadtangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.gz
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.bz2
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.lz
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.xz
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.zst
tangerine-tests-6ad14c1a157e707fd15c87816e8ad872f69790db.zip
Added VM test suite.
Added TODO. Renamed old files.
Diffstat (limited to 'hexencodetest.json')
-rw-r--r--hexencodetest.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/hexencodetest.json b/hexencodetest.json
new file mode 100644
index 000000000..a6d18834c
--- /dev/null
+++ b/hexencodetest.json
@@ -0,0 +1,34 @@
+[
+ [
+ [ 1, 2, 3, 4, 5 ],
+ "112345"
+ ],
+ [
+ [ 0, 1, 2, 3, 4, 5 ],
+ "00012345"
+ ],
+ [
+ [ 6, 4, 6, 15, 6, 7, 6, 5, 16 ],
+ "20646f6765"
+ ],
+ [
+ [ 7, 6, 5, 16 ],
+ "3765"
+ ],
+ [
+ [ 16 ],
+ "20"
+ ],
+ [
+ [ 0, 16 ],
+ "30"
+ ],
+ [
+ [ 15, 1, 12, 11, 8, 16 ],
+ "3f1cb8"
+ ],
+ [
+ [ 0, 15, 1, 12, 11, 8, 16 ],
+ "200f1cb8"
+ ]
+]