Fixing a comment in memsrch test and adding a dummy test for memrand. Heap tests...
[vvhitespace] / stdlib_tests / vv_test.py
CommitLineData
a805b721
AT
1#!/usr/local/bin/python3.6
2
3# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
4# All rights reserved.
5
6# Quick and dirty tests for the VVhitespace stdlib.
7
8import os, subprocess
9
10preprocessor = 'cpp'
11include_path = '-I../stdlib'
12cpp_temp_file = 'test.pvvs'
13compiler_path = '../vvc'
14interpreter_path = '../vvi'
15temp_file = './test.vvs'
16path_to_tests = './'
17src_extension = '.pvvs'
18
19tests = [
20 # Format: ['filename_without_extension', 'string for stdin', 'string for expected stdout']
63a60fe0 21 ['0001_dumpstack', '', 'TOS:\n2:\t+42\n1:\t+255\n'],
c6e2791f 22 ['0002_dumpheap', '', '32:\t+255\n33:\t+42\n'],
63a60fe0
AT
23 ['1001_stackrotate', '', 'TOS:\n14:\t+1\n13:\t+244\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+243\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+242\n'],
24 ['1002_stackrotatereverse', '', 'TOS:\n14:\t+1\n13:\t+244\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+1\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+1\n'],
25 ['1003_deepdup', '', 'TOS:\n15:\t+1\n14:\t+244\n13:\t+1\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+1\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+244\n'],
ec58aa1c
AT
26 ['2001_spew', '', '32:\t+242\n33:\t+243\n34:\t+244\n'],
27 ['2002_slurp', '', 'TOS:\n3:\t+242\n2:\t+243\n1:\t+244\n'],
24a242ac
AT
28 ['2003_memset', '', '32:\t+42\n33:\t+42\n'],
29 ['2004_memcpy', '', '34:\t+42\n35:\t+42\n'],
eabd8f3e 30 ['2005_memcmp', '', '+1'],
096fa8e2 31 ['2006_memsrch', '', '+32'],
60d04456 32 ['2007_memrand', '', ''],
a805b721
AT
33 ]
34
35for test in tests:
36 subprocess.run([preprocessor, include_path, "-o", cpp_temp_file, path_to_tests + test[0] + src_extension])
37 subprocess.run([compiler_path, '-i', cpp_temp_file, '-o', temp_file])
38 result = subprocess.run([interpreter_path, '-i', temp_file], stdout=subprocess.PIPE, input=test[1].encode('utf-8'))
39 if result.stdout.decode('utf-8') != test[2]:
40 print('\n' + test[0])
41 else:
42 print('.', end='', flush=True)
9f7f68e5 43 os.remove(cpp_temp_file)
a805b721
AT
44 os.remove(temp_file)
45
46print("")