Added tests for debug.pvvs.
[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']
9f7f68e5
AT
21 ['0001_dumpstack', '', 'TOS:\n1\t:+42\n0\t:+255\n'],
22 ['0002_dumpheap', '', '32\t:+255\n33\t:+42\n'],
a805b721
AT
23 ]
24
25for test in tests:
26 subprocess.run([preprocessor, include_path, "-o", cpp_temp_file, path_to_tests + test[0] + src_extension])
27 subprocess.run([compiler_path, '-i', cpp_temp_file, '-o', temp_file])
28 result = subprocess.run([interpreter_path, '-i', temp_file], stdout=subprocess.PIPE, input=test[1].encode('utf-8'))
29 if result.stdout.decode('utf-8') != test[2]:
30 print('\n' + test[0])
31 else:
32 print('.', end='', flush=True)
9f7f68e5 33 os.remove(cpp_temp_file)
a805b721
AT
34 os.remove(temp_file)
35
36print("")